Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Windows/Microsoft.NET/Framework/v2.0.50727/en/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <doc> <assembly> <name>mscorlib</name> </assembly> <members> <member name="T:Microsoft.Win32.Registry"> <summary> Provides <see cref="T:Microsoft.Win32.RegistryKey" /> objects that represent the root keys in the Windows registry, and static methods to access key/value pairs. </summary> </member> <member name="F:Microsoft.Win32.Registry.ClassesRoot"> <summary> Defines the types (or classes) of documents and the properties associated with those types. This field reads the Windows registry base key HKEY_CLASSES_ROOT. </summary> </member> <member name="F:Microsoft.Win32.Registry.CurrentConfig"> <summary> Contains configuration information pertaining to the hardware that is not specific to the user. This field reads the Windows registry base key HKEY_CURRENT_CONFIG. </summary> </member> <member name="F:Microsoft.Win32.Registry.CurrentUser"> <summary> Contains information about the current user preferences. This field reads the Windows registry base key HKEY_CURRENT_USER </summary> </member> <member name="F:Microsoft.Win32.Registry.DynData"> <summary> Contains dynamic registry data. This field reads the Windows registry base key HKEY_DYN_DATA. </summary> <exception cref="T:System.ObjectDisposedException"> The operating system is not Windows 98, Windows 98 Second Edition, or Windows Millennium Edition. </exception> </member> <member name="M:Microsoft.Win32.Registry.GetValue(System.String,System.String,System.Object)"> <summary> Retrieves the value associated with the specified name, in the specified registry key. If the name is not found in the specified key, returns a default value that you provide, or null if the specified key does not exist. </summary> <returns>null if the subkey specified by <paramref name="keyName" /> does not exist; otherwise, the value associated with <paramref name="valueName" />, or <paramref name="defaultValue" /> if <paramref name="valueName" /> is not found. </returns> <param name="keyName"> The full registry path of the key, beginning with a valid registry root, such as "HKEY_CURRENT_USER". </param> <param name="valueName"> The name of the name/value pair. </param> <param name="defaultValue"> The value to return if <paramref name="name" /> does not exist. </param> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to read from the registry key. </exception> <exception cref="T:System.IO.IOException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> that contains the specified value has been marked for deletion. </exception> <exception cref="T:System.ArgumentException"> <paramref name="keyName" /> does not begin with a valid registry root. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="F:Microsoft.Win32.Registry.LocalMachine"> <summary> Contains the configuration data for the local machine. This field reads the Windows registry base key HKEY_LOCAL_MACHINE. </summary> </member> <member name="F:Microsoft.Win32.Registry.PerformanceData"> <summary> Contains performance information for software components. This field reads the Windows registry base key HKEY_PERFORMANCE_DATA. </summary> </member> <member name="M:Microsoft.Win32.Registry.SetValue(System.String,System.String,System.Object)"> <summary> Sets the specified name/value pair on the specified registry key. If the specified key does not exist, it is created. </summary> <param name="keyName"> The full registry path of the key, beginning with a valid registry root, such as "HKEY_CURRENT_USER". </param> <param name="valueName"> The name of the name/value pair. </param> <param name="value"> The value to be stored. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="keyName" /> does not begin with a valid registry root. -or- <paramref name="valueName" /> is longer than the maximum length allowed (255 characters). </exception> <exception cref="T:System.UnauthorizedAccessException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> is read-only, and thus cannot be written to; for example, it is a root-level node. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to create or modify registry keys. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.Registry.SetValue(System.String,System.String,System.Object,Microsoft.Win32.RegistryValueKind)"> <summary> Sets the name/value pair on the specified registry key, using the specified registry data type. If the specified key does not exist, it is created. </summary> <param name="keyName"> The full registry path of the key, beginning with a valid registry root, such as "HKEY_CURRENT_USER". </param> <param name="valueName"> The name of the name/value pair. </param> <param name="value"> The value to be stored. </param> <param name="valueKind"> The registry data type to use when storing the data. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="keyName" /> does not begin with a valid registry root. -or- <paramref name="keyName" /> is longer than the maximum length allowed (255 characters). -or- The type of <paramref name="value" /> did not match the registry data type specified by <paramref name="valueKind" />, therefore the data could not be converted properly. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> is read-only, and thus cannot be written to; for example, it is a root-level node, or the key has not been opened with write access. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to create or modify registry keys. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="F:Microsoft.Win32.Registry.Users"> <summary> Contains information about the default user configuration. This field reads the Windows registry base key HKEY_USERS. </summary> </member> <member name="T:Microsoft.Win32.RegistryHive"> <summary> Represents the possible values for a top-level node on a foreign machine. </summary> </member> <member name="F:Microsoft.Win32.RegistryHive.ClassesRoot"> <summary> Represents the HKEY_CLASSES_ROOT base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely. </summary> </member> <member name="F:Microsoft.Win32.RegistryHive.CurrentUser"> <summary> Represents the HKEY_CURRENT_USER base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely. </summary> </member> <member name="F:Microsoft.Win32.RegistryHive.LocalMachine"> <summary> Represents the HKEY_LOCAL_MACHINE base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely. </summary> </member> <member name="F:Microsoft.Win32.RegistryHive.Users"> <summary> Represents the HKEY_USERS base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely. </summary> </member> <member name="F:Microsoft.Win32.RegistryHive.PerformanceData"> <summary> Represents the HKEY_PERFORMANCE_DATA base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely. </summary> </member> <member name="F:Microsoft.Win32.RegistryHive.CurrentConfig"> <summary> Represents the HKEY_CURRENT_CONFIG base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely. </summary> </member> <member name="F:Microsoft.Win32.RegistryHive.DynData"> <summary> Represents the HKEY_DYN_DATA base key on another computer. This value can be passed to the <see cref="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)" /> method, to open this node remotely. </summary> </member> <member name="T:Microsoft.Win32.RegistryKey"> <summary> Represents a key-level node in the Windows registry. This class is a registry encapsulation. </summary> </member> <member name="M:Microsoft.Win32.RegistryKey.Close"> <summary> Closes the key and flushes it to disk if its contents have been modified. </summary> </member> <member name="M:Microsoft.Win32.RegistryKey.CreateSubKey(System.String)"> <summary> Creates a new subkey or opens an existing subkey for write access. The string <paramref name="subkey" /> is not case-sensitive. </summary> <returns> A <see cref="T:Microsoft.Win32.RegistryKey" /> object that represents the newly created subkey, or null if the operation failed. If a zero-length string is specified for <paramref name="subkey" />, the current <see cref="T:Microsoft.Win32.RegistryKey" /> object is returned. </returns> <param name="subkey"> The name or path of the subkey to create or open. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="subkey" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to create or open the registry key. </exception> <exception cref="T:System.ArgumentException"> <paramref name="subkey" /> is longer than the maximum length allowed (255 characters). </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> on which this method is being invoked is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> cannot be written to; for example, it was not opened as a writable key , or the user does not have the necessary access rights. </exception> <exception cref="T:System.IO.IOException"> The nesting level exceeds 510. -or- A system error occurred, such as deletion of the key, or an attempt to create a key in the <see cref="F:Microsoft.Win32.Registry.LocalMachine" /> root. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.CreateSubKey(System.String,Microsoft.Win32.RegistryKeyPermissionCheck)"> <summary> Creates a new subkey or opens an existing subkey for write access, using the specified permission check option. The string <paramref name="subkey" /> is not case-sensitive. </summary> <returns> A <see cref="T:Microsoft.Win32.RegistryKey" /> object that represents the newly created subkey, or null if the operation failed. If a zero-length string is specified for <paramref name="subkey" />, the current <see cref="T:Microsoft.Win32.RegistryKey" /> object is returned. </returns> <param name="subkey"> The name or path of the subkey to create or open. </param> <param name="permissionCheck"> One of the <see cref="T:Microsoft.Win32.RegistryKeyPermissionCheck" /> values that specifies whether the key is opened for read or read/write access. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="subkey" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to create or open the registry key. </exception> <exception cref="T:System.ArgumentException"> <paramref name="subkey" /> is longer than the maximum length allowed (255 characters). -or- <paramref name="permissionCheck" /> contains an invalid value. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> on which this method is being invoked is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> cannot be written to; for example, it was not opened as a writable key, or the user does not have the necessary access rights. </exception> <exception cref="T:System.IO.IOException"> The nesting level exceeds 510. -or- A system error occurred, such as deletion of the key, or an attempt to create a key in the <see cref="F:Microsoft.Win32.Registry.LocalMachine" /> root. </exception> </member> <member name="M:Microsoft.Win32.RegistryKey.CreateSubKey(System.String,Microsoft.Win32.RegistryKeyPermissionCheck,System.Security.AccessControl.RegistrySecurity)"> <summary> Creates a new subkey or opens an existing subkey for write access, using the specified permission check option and registry security. The string <paramref name="subkey" /> is not case-sensitive. </summary> <returns> A <see cref="T:Microsoft.Win32.RegistryKey" /> object that represents the newly created subkey, or null if the operation failed. If a zero-length string is specified for <paramref name="subkey" />, the current <see cref="T:Microsoft.Win32.RegistryKey" /> object is returned. </returns> <param name="subkey"> The name or path of the subkey to create or open. </param> <param name="permissionCheck"> One of the <see cref="T:Microsoft.Win32.RegistryKeyPermissionCheck" /> values that specifies whether the key is opened for read or read/write access. </param> <param name="registrySecurity"> A <see cref="T:System.Security.AccessControl.RegistrySecurity" /> object that specifies the access control security for the new key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="subkey" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to create or open the registry key. </exception> <exception cref="T:System.ArgumentException"> <paramref name="subkey" /> is longer than the maximum length allowed (255 characters). -or- <paramref name="permissionCheck" /> contains an invalid value. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> on which this method is being invoked is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The current <see cref="T:Microsoft.Win32.RegistryKey" /> cannot be written to; for example, it was not opened as a writable key, or the user does not have the necessary access rights. </exception> <exception cref="T:System.IO.IOException"> The nesting level exceeds 510. -or- A system error occurred, such as deletion of the key, or an attempt to create a key in the <see cref="F:Microsoft.Win32.Registry.LocalMachine" /> root. </exception> </member> <member name="M:Microsoft.Win32.RegistryKey.DeleteSubKey(System.String)"> <summary> Deletes the specified subkey. The string <paramref name="subkey" /> is not case-sensitive. </summary> <param name="subkey"> The name of the subkey to delete. </param> <exception cref="T:System.InvalidOperationException"> The <paramref name="subkey" /> has child subkeys </exception> <exception cref="T:System.ArgumentException"> The <paramref name="subkey" /> parameter does not specify a valid registry key </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="subkey" /> is null</exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to delete the key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.DeleteSubKey(System.String,System.Boolean)"> <summary> Deletes the specified subkey. The string subkey is not case-sensitive. </summary> <param name="subkey"> The name of the subkey to delete. </param> <param name="throwOnMissingSubKey"> Indicates whether an exception should be raised if the specified subkey cannot be found. If this argument is true and the specified subkey does not exist, then an exception is raised. If this argument is false and the specified subkey does not exist, then no action is taken </param> <exception cref="T:System.InvalidOperationException"> <paramref name="subkey" /> has child subkeys. </exception> <exception cref="T:System.ArgumentException"> <paramref name="subkey" /> does not specify a valid registry key and <paramref name="throwOnMissingSubKey" /> is true. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="subkey" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to delete the key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.DeleteSubKeyTree(System.String)"> <summary> Deletes a subkey and any child subkeys recursively. The string <paramref name="subkey" /> is not case-sensitive. </summary> <param name="subkey"> The subkey to delete. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="subkey" /> is null. </exception> <exception cref="T:System.ArgumentException"> Deletion of a root hive is attempted. -or- <paramref name="subkey" /> does not specify a valid registry subkey. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to delete the key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.DeleteValue(System.String)"> <summary> Deletes the specified value from this key. </summary> <param name="name"> The name of the value to delete. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is not a valid reference to a value. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to delete the value. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is read-only. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.DeleteValue(System.String,System.Boolean)"> <summary> Deletes the specified value from this key. </summary> <param name="name"> The name of the value to delete. </param> <param name="throwOnMissingValue"> Indicates whether an exception should be raised if the specified value cannot be found. If this argument is true and the specified value does not exist, then an exception is raised. If this argument is false and the specified value does not exist, then no action is taken </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is not a valid reference to a value and <paramref name="throwOnMissingValue" /> is true. -or- <paramref name="name" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to delete the value. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is read-only. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.Flush"> <summary> Writes all the attributes of the specified open registry key into the registry. </summary> </member> <member name="M:Microsoft.Win32.RegistryKey.GetAccessControl"> <summary> Returns the access control security for the current registry key. </summary> <returns> A <see cref="T:System.Security.AccessControl.RegistrySecurity" /> object that describes the access control permissions on the registry key represented by the current <see cref="T:Microsoft.Win32.RegistryKey" />. </returns> <exception cref="T:System.Security.SecurityException"> The user does not have the necessary permissions. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.InvalidOperationException"> The current key has been deleted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.GetAccessControl(System.Security.AccessControl.AccessControlSections)"> <summary> Returns the specified sections of the access control security for the current registry key. </summary> <returns> A <see cref="T:System.Security.AccessControl.RegistrySecurity" /> object that describes the access control permissions on the registry key represented by the current <see cref="T:Microsoft.Win32.RegistryKey" />. </returns> <param name="includeSections"> A bitwise combination of <see cref="T:System.Security.AccessControl.AccessControlSections" /> values that specifies the type of security information to get. </param> <exception cref="T:System.Security.SecurityException"> The user does not have the necessary permissions. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.InvalidOperationException"> The current key has been deleted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.GetSubKeyNames"> <summary> Retrieves an array of strings that contains all the subkey names. </summary> <returns> An array of strings that contains the names of the subkeys for the current key. </returns> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to read from the key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <exception cref="T:System.IO.IOException"> A system error occurred, for example the current key has been deleted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.GetValue(System.String)"> <summary> Retrieves the value associated with the specified name. Returns null if the name/value pair does not exist in the registry. </summary> <returns> The value associated with <paramref name="name" />, or null if <paramref name="name" /> is not found. </returns> <param name="name"> The name of the value to retrieve. </param> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to read from the registry key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> that contains the specified value is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.IO.IOException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> that contains the specified value has been marked for deletion. </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.GetValue(System.String,System.Object)"> <summary> Retrieves the value associated with the specified name. If the name is not found, returns the default value that you provide. </summary> <returns> The value associated with <paramref name="name" />, with any embedded environment variables left unexpanded, or <paramref name="defaultValue" /> if <paramref name="name" /> is not found. </returns> <param name="name"> The name of the value to retrieve. </param> <param name="defaultValue"> The value to return if <paramref name="name" /> does not exist. </param> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to read from the registry key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> that contains the specified value is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.IO.IOException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> that contains the specified value has been marked for deletion. </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.GetValue(System.String,System.Object,Microsoft.Win32.RegistryValueOptions)"> <summary> Retrieves the value associated with the specified name and retrieval options. If the name is not found, returns the default value that you provide. </summary> <returns> The value associated with <paramref name="name" />, processed according to the specified <paramref name="options" />, or <paramref name="defaultValue" /> if <paramref name="name" /> is not found. </returns> <param name="name"> The name of the value to retrieve. </param> <param name="defaultValue"> The value to return if <paramref name="name" /> does not exist. </param> <param name="options"> One of the <see cref="T:Microsoft.Win32.RegistryValueOptions" /> values that specifies optional processing of the retrieved value. </param> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to read from the registry key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> that contains the specified value is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.IO.IOException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> that contains the specified value has been marked for deletion. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> is not a valid <see cref="T:Microsoft.Win32.RegistryValueOptions" /> value; for example, an invalid value is cast to <see cref="T:Microsoft.Win32.RegistryValueOptions" />. </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.GetValueKind(System.String)"> <summary> Retrieves the registry data type of the value associated with the specified name. </summary> <returns> A <see cref="T:Microsoft.Win32.RegistryValueKind" /> value representing the registry data type of the value associated with <paramref name="name" />. </returns> <param name="name"> The name of the value whose registry data type is to be retrieved. </param> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to read from the registry key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> that contains the specified value is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.IO.IOException"> The subkey that contains the specified value does not exist. -or- The name/value pair specified by <paramref name="name" /> does not exist. This exception is not thrown on Windows 95, Windows 98, or Windows Millennium Edition. </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.GetValueNames"> <summary> Retrieves an array of strings that contains all the value names associated with this key. </summary> <returns> An array of strings that contains the value names for the current key. </returns> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to read from the registry key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <exception cref="T:System.IO.IOException"> A system error occurred; for example, the current key has been deleted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:Microsoft.Win32.RegistryKey.Name"> <summary> Retrieves the name of the key. </summary> <returns> The absolute (qualified) name of the key. </returns> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> is closed (closed keys cannot be accessed). </exception> </member> <member name="M:Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(Microsoft.Win32.RegistryHive,System.String)"> <summary> Opens a new <see cref="T:Microsoft.Win32.RegistryKey" /> that represents the requested key on a remote machine. </summary> <returns> The requested <see cref="T:Microsoft.Win32.RegistryKey" />. </returns> <param name="hKey"> The HKEY to open, from the <see cref="T:Microsoft.Win32.RegistryHive" /> enumeration. </param> <param name="machineName"> The remote machine. </param> <exception cref="T:System.ArgumentException"> <paramref name="hKey" /> is invalid. </exception> <exception cref="T:System.IO.IOException"> <paramref name="machineName" /> is not found. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="machineName" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the proper permissions to perform this operation. </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.OpenSubKey(System.String)"> <summary> Retrieves a subkey as read-only. </summary> <returns> The subkey requested, or null if the operation failed. </returns> <param name="name"> The name or path of the subkey to open read-only. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null</exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than the maximum length allowed (255 characters). </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to read the registry key. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.OpenSubKey(System.String,Microsoft.Win32.RegistryKeyPermissionCheck)"> <summary> Retrieves the specified subkey for read or read/write access. </summary> <returns> A <see cref="T:Microsoft.Win32.RegistryKey" /> object representing the subkey requested, or null if the operation failed. </returns> <param name="name"> The name or path of the subkey to create or open. </param> <param name="permissionCheck"> One of the <see cref="T:Microsoft.Win32.RegistryKeyPermissionCheck" /> values that specifies whether the key is opened for read or read/write access. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null</exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than the maximum length allowed (255 characters). -or- <paramref name="permissionCheck" /> contains an invalid value. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to read the registry key. </exception> </member> <member name="M:Microsoft.Win32.RegistryKey.OpenSubKey(System.String,Microsoft.Win32.RegistryKeyPermissionCheck,System.Security.AccessControl.RegistryRights)"> <summary> Retrieves the specified subkey for read or read/write access, requesting the specified access rights. </summary> <returns> A <see cref="T:Microsoft.Win32.RegistryKey" /> object representing the subkey requested, or null if the operation failed. </returns> <param name="name"> The name or path of the subkey to create or open. </param> <param name="permissionCheck"> One of the <see cref="T:Microsoft.Win32.RegistryKeyPermissionCheck" /> values that specifies whether the key is opened for read or read/write access. </param> <param name="rights"> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values that specifies the desired security access. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null</exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than the maximum length allowed (255 characters). -or- <paramref name="permissionCheck" /> contains an invalid value. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.Security.SecurityException"> <paramref name="rights" /> includes invalid registry rights values. -or- The user does not have the requested permissions. </exception> </member> <member name="M:Microsoft.Win32.RegistryKey.OpenSubKey(System.String,System.Boolean)"> <summary> Retrieves a specified subkey. </summary> <returns> The subkey requested, or null if the operation failed. </returns> <param name="name"> Name or path of the subkey to open. </param> <param name="writable"> Set to true if you need write access to the key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than the maximum length allowed (255 characters). </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to access the registry key in the specified mode. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.SetAccessControl(System.Security.AccessControl.RegistrySecurity)"> <summary> Applies Windows access control security to an existing registry key. </summary> <param name="registrySecurity"> A <see cref="T:System.Security.AccessControl.RegistrySecurity" /> object that specifies the access control security to apply to the current subkey. </param> <exception cref="T:System.UnauthorizedAccessException"> The current <see cref="T:Microsoft.Win32.RegistryKey" /> object represents a key with access control security, and the caller does not have <see cref="F:System.Security.AccessControl.RegistryRights.ChangePermissions" /> rights. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="registrySecurity" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.SetValue(System.String,System.Object)"> <summary> Sets the specified name/value pair. </summary> <param name="name"> The name of the value to store. </param> <param name="value"> The data to be stored. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is an unsupported data type. -or- <paramref name="name" /> is longer than the maximum length allowed (255 characters). </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> that contains the specified value is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> is read-only, and cannot be written to; for example, the key has not been opened with write access. -or- The <see cref="T:Microsoft.Win32.RegistryKey" /> object represents a root-level node, and the operating system is Windows Millennium Edition or Windows 98. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to create or modify registry keys. </exception> <exception cref="T:System.IO.IOException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> object represents a root-level node, and the operating system is Windows 2000, Windows XP, or Windows Server 2003. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.SetValue(System.String,System.Object,Microsoft.Win32.RegistryValueKind)"> <summary> Sets the value of a name/value pair in the registry key, using the specified registry data type. </summary> <param name="name"> The name of the value to be stored. </param> <param name="value"> The data to be stored. </param> <param name="valueKind"> The registry data type to use when storing the data. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than the maximum length allowed (255 characters). -or- The type of <paramref name="value" /> did not match the registry data type specified by <paramref name="valueKind" />, therefore the data could not be converted properly. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> that contains the specified value is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> is read-only, and cannot be written to; for example, the key has not been opened with write access. -or- The <see cref="T:Microsoft.Win32.RegistryKey" /> object represents a root-level node, and the operating system is Windows Millennium Edition or Windows 98. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have the permissions required to create or modify registry keys. </exception> <exception cref="T:System.IO.IOException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> object represents a root-level node, and the operating system is Windows 2000, Windows XP, or Windows Server 2003. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:Microsoft.Win32.RegistryKey.SubKeyCount"> <summary> Retrieves the count of subkeys of the current key. </summary> <returns> The number of subkeys of the current key. </returns> <exception cref="T:System.Security.SecurityException"> The user does not have read permission for the key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <exception cref="T:System.IO.IOException"> A system error occurred, for example the current key has been deleted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:Microsoft.Win32.RegistryKey.System#IDisposable#Dispose"> <summary> Performs a <see cref="M:Microsoft.Win32.RegistryKey.Close" /> on the current key. </summary> </member> <member name="M:Microsoft.Win32.RegistryKey.ToString"> <summary> Retrieves a string representation of this key. </summary> <returns> A string representing the key. If the specified key is invalid (cannot be found) then null is returned. </returns> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being accessed is closed (closed keys cannot be accessed). </exception> </member> <member name="P:Microsoft.Win32.RegistryKey.ValueCount"> <summary> Retrieves the count of values in the key. </summary> <returns> The number of name/value pairs in the key. </returns> <exception cref="T:System.Security.SecurityException"> The user does not have read permission for the key. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:Microsoft.Win32.RegistryKey" /> being manipulated is closed (closed keys cannot be accessed). </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have the necessary registry rights. </exception> <exception cref="T:System.IO.IOException"> A system error occurred, for example the current key has been deleted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:Microsoft.Win32.RegistryKeyPermissionCheck"> <summary> Specifies whether security checks are performed when opening registry keys and accessing their name/value pairs. </summary> </member> <member name="F:Microsoft.Win32.RegistryKeyPermissionCheck.Default"> <summary> The registry key inherits the mode of its parent. Security checks are performed when trying to access subkeys or values, unless the parent was opened with <see cref="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadSubTree" /> or <see cref="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadWriteSubTree" /> mode. </summary> </member> <member name="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadSubTree"> <summary> Security checks are not performed when accessing subkeys or values. A security check is performed when trying to open the current key, unless the parent was opened with <see cref="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadSubTree" /> or <see cref="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadWriteSubTree" />. </summary> </member> <member name="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadWriteSubTree"> <summary> Security checks are not performed when accessing subkeys or values. A security check is performed when trying to open the current key, unless the parent was opened with <see cref="F:Microsoft.Win32.RegistryKeyPermissionCheck.ReadWriteSubTree" />. </summary> </member> <member name="T:Microsoft.Win32.RegistryValueKind"> <summary> Specifies the data types to use when storing values in the registry, or identifies the data type of a value in the registry. </summary> </member> <member name="F:Microsoft.Win32.RegistryValueKind.String"> <summary> Specifies a null-terminated string. This value is equivalent to the Win32 API registry data type REG_SZ. </summary> </member> <member name="F:Microsoft.Win32.RegistryValueKind.ExpandString"> <summary> Specifies a null-terminated string that contains unexpanded references to environment variables, such as %PATH%, that are expanded when the value is retrieved. This value is equivalent to the Win32 API registry data type REG_EXPAND_SZ. </summary> </member> <member name="F:Microsoft.Win32.RegistryValueKind.Binary"> <summary> Specifies binary data in any form. This value is equivalent to the Win32 API registry data type REG_BINARY. </summary> </member> <member name="F:Microsoft.Win32.RegistryValueKind.DWord"> <summary> Specifies a 32-bit binary number. This value is equivalent to the Win32 API registry data type REG_DWORD. </summary> </member> <member name="F:Microsoft.Win32.RegistryValueKind.MultiString"> <summary> Specifies an array of null-terminated strings, terminated by two null characters. This value is equivalent to the Win32 API registry data type REG_MULTI_SZ. </summary> </member> <member name="F:Microsoft.Win32.RegistryValueKind.QWord"> <summary> Specifies a 64-bit binary number. This value is equivalent to the Win32 API registry data type REG_QWORD. </summary> </member> <member name="F:Microsoft.Win32.RegistryValueKind.Unknown"> <summary> Indicates an unsupported registry data type. For example, the Microsoft Win32 API registry data type REG_RESOURCE_LIST is unsupported. Use this value to specify that the <see cref="M:Microsoft.Win32.RegistryKey.SetValue(System.String,System.Object)" /> method should determine the appropriate registry data type when storing a name/value pair. </summary> </member> <member name="T:Microsoft.Win32.RegistryValueOptions"> <summary> Specifies optional behavior when retrieving name/value pairs from a registry key. </summary> </member> <member name="F:Microsoft.Win32.RegistryValueOptions.None"> <summary> No optional behavior is specified. </summary> </member> <member name="F:Microsoft.Win32.RegistryValueOptions.DoNotExpandEnvironmentNames"> <summary> A value of type <see cref="F:Microsoft.Win32.RegistryValueKind.ExpandString" /> is retrieved without expanding its embedded environment variables. </summary> </member> <member name="T:Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid"> <summary> Provides a base class for Win32 critical handle implementations in which the value of -1 indicates an invalid handle. </summary> </member> <member name="M:Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid" /> class. </summary> </member> <member name="P:Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid.IsInvalid"> <summary> Gets a value that indicates whether the handle is invalid. </summary> <returns>true if the handle is not valid; otherwise, false. </returns> </member> <member name="T:Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid"> <summary> Provides a base class for Win32 critical handle implementations in which the value of either 0 or -1 indicates an invalid handle. </summary> </member> <member name="M:Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid" /> class. </summary> </member> <member name="P:Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid.IsInvalid"> <summary> Gets a value that indicates whether the handle is invalid. </summary> <returns>true if the handle is not valid; otherwise, false. </returns> </member> <member name="T:Microsoft.Win32.SafeHandles.SafeFileHandle"> <summary> Represents a wrapper class for a file handle. </summary> </member> <member name="M:Microsoft.Win32.SafeHandles.SafeFileHandle.#ctor(System.IntPtr,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle" /> class. </summary> <param name="preexistingHandle"> An <see cref="T:System.IntPtr" /> object that represents the pre-existing handle to use. </param> <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent reliable release (not recommended). </param> </member> <member name="T:Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid"> <summary> Provides a base class for Win32 safe handle implementations in which the value of -1 indicates an invalid handle. </summary> </member> <member name="M:Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid" /> class, specifying whether the handle is to be reliably released. </summary> <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent reliable release (not recommended). </param> </member> <member name="P:Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid.IsInvalid"> <summary> Gets a value that indicates whether the handle is invalid. </summary> <returns>true if the handle is not valid; otherwise, false. </returns> </member> <member name="T:Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid"> <summary> Provides a base class for Win32 safe handle implementations in which the value of either 0 or -1 indicates an invalid handle. </summary> </member> <member name="M:Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid" /> class, specifying whether the handle is to be reliably released. </summary> <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent reliable release (not recommended). </param> </member> <member name="P:Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid.IsInvalid"> <summary> Gets a value that indicates whether the handle is invalid. </summary> <returns>true if the handle is not valid; otherwise, false. </returns> </member> <member name="T:Microsoft.Win32.SafeHandles.SafeWaitHandle"> <summary> Represents a wrapper class for a wait handle. </summary> </member> <member name="M:Microsoft.Win32.SafeHandles.SafeWaitHandle.#ctor(System.IntPtr,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeWaitHandle" /> class. </summary> <param name="existingHandle"> An <see cref="T:System.IntPtr" /> object that represents the pre-existing handle to use. </param> <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent reliable release (not recommended). </param> </member> <member name="T:System._AppDomain"> <summary> Exposes the public members of the <see cref="T:System.AppDomain" /> class to unmanaged code. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.AppendPrivatePath(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.AppendPrivatePath(System.String)" /> method. </summary> <param name="path"> The name of the directory to be appended to the private path. </param> <filterpriority>2</filterpriority> </member> <member name="E:System._AppDomain.AssemblyLoad"> <summary> Provides COM objects with version-independent access to the <see cref="E:System.AppDomain.AssemblyLoad" /> event. </summary> <filterpriority>2</filterpriority> </member> <member name="E:System._AppDomain.AssemblyResolve"> <summary> Provides COM objects with version-independent access to the <see cref="E:System.AppDomain.AssemblyResolve" /> event. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System._AppDomain.BaseDirectory"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.AppDomain.BaseDirectory" /> property. </summary> <returns> The base directory that the assembly resolver uses to probe for assemblies. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.ClearPrivatePath"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.ClearPrivatePath" /> method. </summary> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="M:System._AppDomain.ClearShadowCopyPath"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.ClearShadowCopyPath" /> method. </summary> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="M:System._AppDomain.CreateInstance(System.String,System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.CreateInstance(System.String,System.String)" /> method. </summary> <returns> An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.CreateInstance(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.CreateInstance(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)" /> method overload. </summary> <returns> An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="ignoreCase"> A Boolean value specifying whether to perform a case-sensitive search or not. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects using reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> The arguments to pass to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to invoke. If the default constructor is preferred, <paramref name="args" /> must be an empty array or null. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <param name="securityAttributes"> Information used to authorize creation of <paramref name="typeName" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.CreateInstance(System.String,System.String,System.Object[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.CreateInstance(System.String,System.String,System.Object[])" /> method overload. </summary> <returns> An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.CreateInstanceFrom(System.String,System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.CreateInstanceFrom(System.String,System.String)" /> method overload. </summary> <returns> An object that is a wrapper for the new instance, or null if <paramref name="typeName" /> is not found. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyFile"> The name, including the path, of a file that contains an assembly that defines the requested type. The assembly is loaded using the <see cref="M:System.Reflection.Assembly.LoadFrom(System.String)" /> method. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.CreateInstanceFrom(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.CreateInstanceFrom(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)" /> method overload. </summary> <returns> An object that is a wrapper for the new instance, or null if <paramref name="typeName" /> is not found. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyFile"> The name, including the path, of a file that contains an assembly that defines the requested type. The assembly is loaded using the <see cref="M:System.Reflection.Assembly.LoadFrom(System.String)" /> method. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="ignoreCase"> A Boolean value specifying whether to perform a case-sensitive search or not. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects through reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> The arguments to pass to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to invoke. If the default constructor is preferred, <paramref name="args" /> must be an empty array or null. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <param name="securityAttributes"> Information used to authorize creation of <paramref name="typeName" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.CreateInstanceFrom(System.String,System.String,System.Object[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.CreateInstanceFrom(System.String,System.String,System.Object[])" /> method overload. </summary> <returns> An object that is a wrapper for the new instance, or null if <paramref name="typeName" /> is not found. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyFile"> The name, including the path, of a file that contains an assembly that defines the requested type. The assembly is loaded using the <see cref="M:System.Reflection.Assembly.LoadFrom(System.String)" /> method. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess)" /> method overload. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The access mode for the dynamic assembly. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)" /> method overload. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Security.Policy.Evidence)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Security.Policy.Evidence)" /> method overload. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="evidence"> The evidence supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)" /> method overload. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="evidence"> The evidence supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String)" /> method overload. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the assembly will be saved. If <paramref name="dir" /> is null, the directory defaults to the current directory. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)" /> method overload. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the assembly will be saved. If <paramref name="dir" /> is null, the directory defaults to the current directory. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.Policy.Evidence)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.Policy.Evidence)" /> method overload. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the assembly will be saved. If <paramref name="dir" /> is null, the directory defaults to the current directory. </param> <param name="evidence"> The evidence supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)" /> method overload. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the assembly will be saved. If <paramref name="dir" /> is null, the directory defaults to the current directory. </param> <param name="evidence"> The evidence supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet,System.Boolean)" /> method overload. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the dynamic assembly will be saved. If <paramref name="dir" /> is null, the directory defaults to the current directory. </param> <param name="evidence"> The evidence supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <param name="isSynchronized">true to synchronize the creation of modules, types, and members in the dynamic assembly; otherwise, false. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.DoCallBack(System.CrossAppDomainDelegate)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.DoCallBack(System.CrossAppDomainDelegate)" /> method. </summary> <param name="theDelegate"> A delegate that specifies a method to call. </param> <filterpriority>2</filterpriority> </member> <member name="E:System._AppDomain.DomainUnload"> <summary> Provides COM objects with version-independent access to the <see cref="E:System.AppDomain.DomainUnload" /> event. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System._AppDomain.DynamicDirectory"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.AppDomain.DynamicDirectory" /> property. </summary> <returns> Get the directory that the assembly resolver uses to probe for dynamically-created assemblies. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the inherited <see cref="M:System.Object.Equals(System.Object)" /> method. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="other"> The <see cref="T:System.Object" /> to compare to the current <see cref="T:System.Object" />. </param> <filterpriority>2</filterpriority> </member> <member name="P:System._AppDomain.Evidence"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.AppDomain.Evidence" /> property. </summary> <returns> Gets the <see cref="T:System.Security.Policy.Evidence" /> associated with this application domain that is used as input to the security policy. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.ExecuteAssembly(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.ExecuteAssembly(System.String)" /> method overload. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyFile"> The name of the file that contains the assembly to execute. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.ExecuteAssembly(System.String,System.Security.Policy.Evidence)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.ExecuteAssembly(System.String,System.Security.Policy.Evidence)" /> method overload. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyFile"> The name of the file that contains the assembly to execute. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.ExecuteAssembly(System.String,System.Security.Policy.Evidence,System.String[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.ExecuteAssembly(System.String,System.Security.Policy.Evidence,System.String[])" /> method overload. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyFile"> The name of the file that contains the assembly to execute. </param> <param name="assemblySecurity"> The supplied evidence for the assembly. </param> <param name="args"> The arguments to the entry point of the assembly. </param> <filterpriority>2</filterpriority> </member> <member name="P:System._AppDomain.FriendlyName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.AppDomain.FriendlyName" /> property. </summary> <returns> The friendly name of this application domain. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.GetAssemblies"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.GetAssemblies" /> method. </summary> <returns> An array of assemblies in this application domain. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.GetData(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.GetData(System.String)" /> method. </summary> <returns> The value of the <paramref name="name" /> property. </returns> <param name="name"> The name of a predefined application domain property, or the name of an application domain property you have defined. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.GetHashCode"> <summary> Provides COM objects with version-independent access to the inherited <see cref="M:System.Object.GetHashCode" /> method. </summary> <returns> A hash code for the current <see cref="T:System.Object" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System._AppDomain.GetLifetimeService"> <summary> Provides COM objects with version-independent access to the inherited <see cref="M:System.MarshalByRefObject.GetLifetimeService" /> method. </summary> <returns> An object of type <see cref="T:System.Runtime.Remoting.Lifetime.ILease" /> used to control the lifetime policy for this instance. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System._AppDomain.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.GetType" /> method. </summary> <returns> A <see cref="T:System.Type" /> representing the type of the current instance. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System._AppDomain.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System._AppDomain.InitializeLifetimeService"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.InitializeLifetimeService" /> method. </summary> <returns> Always null. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System._AppDomain.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System._AppDomain.Load(System.Byte[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.Load(System.Byte[])" /> method overload. </summary> <returns> The loaded assembly. </returns> <param name="rawAssembly"> An array of type byte that is a COFF-based image containing an emitted assembly. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.Load(System.Byte[],System.Byte[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.Load(System.Byte[],System.Byte[])" /> method overload. </summary> <returns> The loaded assembly. </returns> <param name="rawAssembly"> An array of type byte that is a COFF-based image containing an emitted assembly. </param> <param name="rawSymbolStore"> An array of type byte containing the raw bytes representing the symbols for the assembly. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.Load(System.Byte[],System.Byte[],System.Security.Policy.Evidence)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.Load(System.Byte[],System.Byte[],System.Security.Policy.Evidence)" /> method overload. </summary> <returns> The loaded assembly. </returns> <param name="rawAssembly"> An array of type byte that is a COFF-based image containing an emitted assembly. </param> <param name="rawSymbolStore"> An array of type byte containing the raw bytes representing the symbols for the assembly. </param> <param name="securityEvidence"> Evidence for loading the assembly. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.Load(System.Reflection.AssemblyName)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.Load(System.Reflection.AssemblyName)" /> method overload. </summary> <returns> The loaded assembly. </returns> <param name="assemblyRef"> An object that describes the assembly to load. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence)" /> method overload. </summary> <returns> The loaded assembly. </returns> <param name="assemblyRef"> An object that describes the assembly to load. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.Load(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.Load(System.String)" /> method overload. </summary> <returns> The loaded assembly. </returns> <param name="assemblyString"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.Load(System.String,System.Security.Policy.Evidence)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.Load(System.String,System.Security.Policy.Evidence)" /> method overload. </summary> <returns> The loaded assembly. </returns> <param name="assemblyString"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <filterpriority>2</filterpriority> </member> <member name="E:System._AppDomain.ProcessExit"> <summary> Provides COM objects with version-independent access to the <see cref="E:System.AppDomain.ProcessExit" /> event. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System._AppDomain.RelativeSearchPath"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.AppDomain.RelativeSearchPath" /> property. </summary> <returns> The path under the base directory where the assembly resolver should probe for private assemblies. </returns> <filterpriority>2</filterpriority> </member> <member name="E:System._AppDomain.ResourceResolve"> <summary> Provides COM objects with version-independent access to the <see cref="E:System.AppDomain.ResourceResolve" /> event. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.SetAppDomainPolicy(System.Security.Policy.PolicyLevel)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.SetAppDomainPolicy(System.Security.Policy.PolicyLevel)" /> method. </summary> <param name="domainPolicy"> The security policy level. </param> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlDomainPolicy" /> </PermissionSet> </member> <member name="M:System._AppDomain.SetCachePath(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.SetCachePath(System.String)" /> method. </summary> <param name="s"> The fully qualified path to the shadow copy location. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.SetData(System.String,System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.SetData(System.String,System.Object)" /> method. </summary> <param name="name"> The name of a user-defined application domain property to create or change. </param> <param name="data"> The value of the property. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.SetPrincipalPolicy(System.Security.Principal.PrincipalPolicy)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.SetPrincipalPolicy(System.Security.Principal.PrincipalPolicy)" /> method. </summary> <param name="policy"> One of the <see cref="T:System.Security.Principal.PrincipalPolicy" /> values that specifies the type of the principal object to attach to threads. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.SetShadowCopyPath(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.SetShadowCopyPath(System.String)" /> method. </summary> <param name="s"> A list of directory names, where each name is separated by a semicolon. </param> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.SetThreadPrincipal(System.Security.Principal.IPrincipal)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.SetThreadPrincipal(System.Security.Principal.IPrincipal)" /> method. </summary> <param name="principal"> The principal object to attach to threads. </param> <filterpriority>2</filterpriority> </member> <member name="P:System._AppDomain.ShadowCopyFiles"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.AppDomain.ShadowCopyFiles" /> property. </summary> <returns>true if the application domain is configured to shadow copy files; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System._AppDomain.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.AppDomain.ToString" /> method. </summary> <returns> A string formed by concatenating the literal string "Name:", the friendly name of the application domain, and either string representations of the context policies or the string "There are no context policies." </returns> <filterpriority>2</filterpriority> </member> <member name="E:System._AppDomain.TypeResolve"> <summary> Provides COM objects with version-independent access to the <see cref="E:System.AppDomain.TypeResolve" /> event. </summary> <filterpriority>2</filterpriority> </member> <member name="E:System._AppDomain.UnhandledException"> <summary> Provides COM objects with version-independent access to the <see cref="E:System.AppDomain.UnhandledException" /> event. </summary> <filterpriority>2</filterpriority> </member> <member name="T:System.AccessViolationException"> <summary> The exception that is thrown when there is an attempt to read or write protected memory. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.AccessViolationException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.AccessViolationException" /> class with a system-supplied message that describes the error. </summary> </member> <member name="M:System.AccessViolationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.AccessViolationException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.AccessViolationException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.AccessViolationException" /> class with a specified message that describes the error. </summary> <param name="message"> The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.AccessViolationException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.AccessViolationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Action`1"> <summary> Encapsulates a method that takes a single parameter and does not return a value. </summary> <param name="obj"> The parameter of the method that this delegate encapsulates. </param> <typeparam name="T"> The type of the parameter of the method that this delegate encapsulates. </typeparam> <filterpriority>1</filterpriority> </member> <member name="T:System.ActivationContext"> <summary> Identifies the activation context for the current application. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.ActivationContext.CreatePartialActivationContext(System.ApplicationIdentity)"> <summary> Initializes a new instance of the <see cref="T:System.ActivationContext" /> class using the specified application identity. </summary> <returns> An <see cref="T:System.ActivationContext" /> object. </returns> <param name="identity"> An <see cref="T:System.ApplicationIdentity" /> object that identifies an application. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="identity" /> is null. </exception> <exception cref="T:System.ArgumentException"> No deployment or application identity is specified in <paramref name="identity" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.ActivationContext.CreatePartialActivationContext(System.ApplicationIdentity,System.String[])"> <summary> Initializes a new instance of the <see cref="T:System.ActivationContext" /> class using the specified application identity and array of manifest paths. </summary> <returns> An <see cref="T:System.ActivationContext" /> object. </returns> <param name="identity"> An <see cref="T:System.ApplicationIdentity" /> object that identifies an application. </param> <param name="manifestPaths"> A string array of manifest paths for the application. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="identity" /> is null. -or- <paramref name="manifestPaths" /> is null. </exception> <exception cref="T:System.ArgumentException"> No deployment or application identity is specified in <paramref name="identity" />. -or- <paramref name="identity" /> does not match the identity in the manifests. -or- <paramref name="identity" /> does not have the same number of components as the manifest paths. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.ActivationContext.Dispose"> <summary> Releases all resources used by the <see cref="T:System.ActivationContext" />. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.ActivationContext.Form"> <summary> Gets the form, or store context, for the current application. </summary> <returns> One of the <see cref="T:System.ActivationContext.ContextForm" /> values. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.ActivationContext.Identity"> <summary> Gets the application identity for the current application. </summary> <returns> An <see cref="T:System.ApplicationIdentity" /> object that identifies the current application. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.ActivationContext.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure for this serialization. </param> </member> <member name="T:System.ActivationContext.ContextForm"> <summary> Indicates the context for a manifest-activated application. </summary> </member> <member name="F:System.ActivationContext.ContextForm.Loose"> <summary> The application is not in the ClickOnce store. </summary> </member> <member name="F:System.ActivationContext.ContextForm.StoreBounded"> <summary> The application is contained in the ClickOnce store. </summary> </member> <member name="T:System.Activator"> <summary> Contains methods to create types of objects locally or remotely, or obtain references to existing remote objects. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Activator.CreateComInstanceFrom(System.String,System.String)"> <summary> Creates an instance of the COM object whose name is specified, using the named assembly file and the constructor that best matches the specified parameters. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="assemblyName"> The name of a file that contains an assembly where the type named <paramref name="typeName" /> is sought. </param> <param name="typeName"> The name of the preferred type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> or <paramref name="assemblyName" /> is null. </exception> <exception cref="T:System.TypeLoadException"> An instance cannot be created through COM. -or- <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> is not found, or the module you are trying to load does not specify a file name extension. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class. -or- This member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assemblyName" /> is the empty string (""). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Activator.CreateComInstanceFrom(System.String,System.String,System.Byte[],System.Configuration.Assemblies.AssemblyHashAlgorithm)"> <summary> Creates an instance of the COM object whose name is specified, using the named assembly file and the default constructor. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="assemblyName"> The name of a file that contains an assembly where the type named <paramref name="typeName" /> is sought. </param> <param name="typeName"> The name of the preferred type. </param> <param name="hashValue"> The value of the computed hash code. </param> <param name="hashAlgorithm"> The hash algorithm used for hashing files and generating the strong name. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> or <paramref name="assemblyName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assemblyName" /> is the empty string (""). </exception> <exception cref="T:System.IO.PathTooLongException"> An assembly or module was loaded twice with two different evidences, or the assembly name is longer than MAX_PATH characters. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> is not found, or the module you are trying to load does not specify a file name extension. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="assemblyName" /> is found but cannot be loaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. </exception> <exception cref="T:System.Security.SecurityException"> A code base that does not start with "file://" was specified without the required WebPermission. </exception> <exception cref="T:System.TypeLoadException"> An instance cannot be created through COM. -or- <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.MemberAccessException"> An instance of an abstract class cannot be created. -or- This member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstance``1"> <summary> Creates an instance of the type designated by the specified generic type parameter. </summary> <returns> A reference to the newly created object. </returns> <typeparam name="T"> The type to create. </typeparam> </member> <member name="M:System.Activator.CreateInstance(System.ActivationContext)"> <summary> Creates an instance of the type designated by the specified <see cref="T:System.ActivationContext" /> object. </summary> <returns> A handle that must be unwrapped to access the newly created object. </returns> <param name="activationContext"> An activation context object that specifies the object to create. </param> </member> <member name="M:System.Activator.CreateInstance(System.ActivationContext,System.String[])"> <summary> Creates an instance of the type that is designated by the specified <see cref="T:System.ActivationContext" /> object and activated with the specified custom activation data. </summary> <returns> A handle that must be unwrapped to access the newly created object. </returns> <param name="activationContext"> An activation context object that specifies the object to create. </param> <param name="activationCustomData"> An array of Unicode strings that contain custom activation data. </param> </member> <member name="M:System.Activator.CreateInstance(System.AppDomain,System.String,System.String)"> <summary> Creates an instance of the type whose name is specified in the specified remote domain, using the named assembly and default constructor. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="domain"> The remote domain where the type named <paramref name="typeName" /> is created. </param> <param name="assemblyName"> The name of the assembly where the type named <paramref name="typeName" /> is sought. If <paramref name="assemblyName" /> is null, the executing assembly is searched. </param> <param name="typeName"> The name of the preferred type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> or <paramref name="domain" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract type. -or- This member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor, which was invoked through reflection, threw an exception. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.NotSupportedException"> Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and <paramref name="assemblyName" /> was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> </member> <member name="M:System.Activator.CreateInstance(System.AppDomain,System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)"> <summary> Creates an instance of the type whose name is specified in the specified remote domain, using the named assembly and the constructor that best matches the specified parameters. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="domain"> The domain where the type named <paramref name="typeName" /> is created. </param> <param name="assemblyName"> The name of the assembly where the type named <paramref name="typeName" /> is sought. If <paramref name="assemblyName" /> is null, the executing assembly is searched. </param> <param name="typeName"> The name of the preferred type. </param> <param name="ignoreCase">true to specify that the search for <paramref name="typeName" /> is not case-sensitive; false to specify that the search is case-sensitive. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that uses <paramref name="bindingAttr" /> and <paramref name="args" /> to seek and identify the <paramref name="typeName" /> constructor. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> An array of arguments that match in number, order, and type the parameters of the constructor to invoke. If <paramref name="args" /> is an empty array or null, the constructor that takes no parameters (the default constructor) is invoked. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. This is typically an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <param name="securityAttributes"> Information used to make security policy decisions and grant code permissions. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="domain" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor, which was invoked through reflection, threw an exception. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.NotSupportedException"> Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. -or- <paramref name="activationAttributes" /> is not an empty array, and the type being created does not derive from <see cref="T:System.MarshalByRefObject" />. -or- The constructor that best matches <paramref name="args" /> has varargs arguments. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and <paramref name="assemblyName" /> was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> </member> <member name="M:System.Activator.CreateInstance(System.String,System.String)"> <summary> Creates an instance of the type whose name is specified, using the named assembly and default constructor. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="assemblyName"> The name of the assembly where the type named <paramref name="typeName" /> is sought. If <paramref name="assemblyName" /> is null, the executing assembly is searched. </param> <param name="typeName"> The name of the preferred type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> You cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor, which was invoked through reflection, threw an exception. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.NotSupportedException"> Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and <paramref name="assemblyName" /> was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstance(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)"> <summary> Creates an instance of the type whose name is specified, using the named assembly and the constructor that best matches the specified parameters. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="assemblyName"> The name of the assembly where the type named <paramref name="typeName" /> is sought. If <paramref name="assemblyName" /> is null, the executing assembly is searched. </param> <param name="typeName"> The name of the preferred type. </param> <param name="ignoreCase">true to specify that the search for <paramref name="typeName" /> is not case-sensitive; false to specify that the search is case-sensitive. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that uses <paramref name="bindingAttr" /> and <paramref name="args" /> to seek and identify the <paramref name="typeName" /> constructor. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> An array of arguments that match in number, order, and type the parameters of the constructor to invoke. If <paramref name="args" /> is an empty array or null, the constructor that takes no parameters (the default constructor) is invoked. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. This is typically an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <param name="securityInfo"> Information used to make security policy decisions and grant code permissions. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor, which was invoked through reflection, threw an exception. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.NotSupportedException"> Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. -or- <paramref name="activationAttributes" /> is not an empty array, and the type being created does not derive from <see cref="T:System.MarshalByRefObject" />. -or- The constructor that best matches <paramref name="args" /> has varargs arguments. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and <paramref name="assemblyName" /> was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstance(System.String,System.String,System.Object[])"> <summary> Creates an instance of the type whose name is specified, using the named assembly and default constructor. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="assemblyName"> The name of the assembly where the type named <paramref name="typeName" /> is sought. If <paramref name="assemblyName" /> is null, the executing assembly is searched. </param> <param name="typeName"> The name of the preferred type. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. This is typically an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.NotSupportedException"> Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. -or- <paramref name="activationAttributes" /> is not an empty array, and the type being created does not derive from <see cref="T:System.MarshalByRefObject" />. -or- <paramref name="activationAttributes" /> is not a <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> array. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and <paramref name="assemblyName" /> was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> An error occurred when attempting remote activation in a target specified in <paramref name="activationAttributes" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstance(System.Type)"> <summary> Creates an instance of the specified type using that type's default constructor. </summary> <returns> A reference to the newly created object. </returns> <param name="type"> The type of object to create. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> is not a RuntimeType. -or- <paramref name="type" /> is an open generic type (that is, the <see cref="P:System.Type.ContainsGenericParameters" /> property returns true). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="type" /> cannot be a <see cref="T:System.Reflection.Emit.TypeBuilder" />. -or- Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor being called throws an exception. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.Runtime.InteropServices.COMException"> <paramref name="type" /> is a COM object but the class identifier used to obtain the type is invalid, or the identified class is not registered. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="type" /> is not a valid type. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstance(System.Type,System.Boolean)"> <summary> Creates an instance of the specified type using that type's default constructor. </summary> <returns> A reference to the newly created object. </returns> <param name="type"> The type of object to create. </param> <param name="nonPublic">true if a public or nonpublic default constructor can match; false if only a public default constructor can match. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> is not a RuntimeType. -or- <paramref name="type" /> is an open generic type (that is, the <see cref="P:System.Type.ContainsGenericParameters" /> property returns true). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="type" /> cannot be a <see cref="T:System.Reflection.Emit.TypeBuilder" />. -or- Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor being called throws an exception. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.Runtime.InteropServices.COMException"> <paramref name="type" /> is a COM object but the class identifier used to obtain the type is invalid, or the identified class is not registered. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="type" /> is not a valid type. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstance(System.Type,System.Object[])"> <summary> Creates an instance of the specified type using the constructor that best matches the specified parameters. </summary> <returns> A reference to the newly created object. </returns> <param name="type"> The type of object to create. </param> <param name="args"> An array of arguments that match in number, order, and type the parameters of the constructor to invoke. If <paramref name="args" /> is an empty array or null, the constructor that takes no parameters (the default constructor) is invoked. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> is not a RuntimeType. -or- <paramref name="type" /> is an open generic type (that is, the <see cref="P:System.Type.ContainsGenericParameters" /> property returns true). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="type" /> cannot be a <see cref="T:System.Reflection.Emit.TypeBuilder" />. -or- Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. -or- The constructor that best matches <paramref name="args" /> has varargs arguments. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor being called throws an exception. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.Runtime.InteropServices.COMException"> <paramref name="type" /> is a COM object but the class identifier used to obtain the type is invalid, or the identified class is not registered. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="type" /> is not a valid type. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstance(System.Type,System.Object[],System.Object[])"> <summary> Creates an instance of the specified type using the constructor that best matches the specified parameters. </summary> <returns> A reference to the newly created object. </returns> <param name="type"> The type of object to create. </param> <param name="args"> An array of arguments that match in number, order, and type the parameters of the constructor to invoke. If <paramref name="args" /> is an empty array or null, the constructor that takes no parameters (the default constructor) is invoked. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. This is typically an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> is not a RuntimeType. -or- <paramref name="type" /> is an open generic type (that is, the <see cref="P:System.Type.ContainsGenericParameters" /> property returns true). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="type" /> cannot be a <see cref="T:System.Reflection.Emit.TypeBuilder" />. -or- Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. -or- <paramref name="activationAttributes" /> is not an empty array, and the type being created does not derive from <see cref="T:System.MarshalByRefObject" />. -or- The constructor that best matches <paramref name="args" /> has varargs arguments. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor being called throws an exception. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.Runtime.InteropServices.COMException"> <paramref name="type" /> is a COM object but the class identifier used to obtain the type is invalid, or the identified class is not registered. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="type" /> is not a valid type. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstance(System.Type,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Creates an instance of the specified type using the constructor that best matches the specified parameters. </summary> <returns> A reference to the newly created object. </returns> <param name="type"> The type of object to create. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="type" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that uses <paramref name="bindingAttr" /> and <paramref name="args" /> to seek and identify the <paramref name="type" /> constructor. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> An array of arguments that match in number, order, and type the parameters of the constructor to invoke. If <paramref name="args" /> is an empty array or null, the constructor that takes no parameters (the default constructor) is invoked. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="type" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> is not a RuntimeType. -or- <paramref name="type" /> is an open generic type (that is, the <see cref="P:System.Type.ContainsGenericParameters" /> property returns true). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="type" /> cannot be a <see cref="T:System.Reflection.Emit.TypeBuilder" />. -or- Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. -or- The constructor that best matches <paramref name="args" /> has varargs arguments. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor being called throws an exception. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.Runtime.InteropServices.COMException"> <paramref name="type" /> is a COM object but the class identifier used to obtain the type is invalid, or the identified class is not registered. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="type" /> is not a valid type. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstance(System.Type,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])"> <summary> Creates an instance of the specified type using the constructor that best matches the specified parameters. </summary> <returns> A reference to the newly created object. </returns> <param name="type"> The type of object to create. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="type" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that uses <paramref name="bindingAttr" /> and <paramref name="args" /> to seek and identify the <paramref name="type" /> constructor. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> An array of arguments that match in number, order, and type the parameters of the constructor to invoke. If <paramref name="args" /> is an empty array or null, the constructor that takes no parameters (the default constructor) is invoked. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="type" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. This is typically an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> is not a RuntimeType. -or- <paramref name="type" /> is an open generic type (that is, the <see cref="P:System.Type.ContainsGenericParameters" /> property returns true). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="type" /> cannot be a <see cref="T:System.Reflection.Emit.TypeBuilder" />. -or- Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, <see cref="T:System.Void" />, and <see cref="T:System.RuntimeArgumentHandle" /> types, or arrays of those types, is not supported. -or- <paramref name="activationAttributes" /> is not an empty array, and the type being created does not derive from <see cref="T:System.MarshalByRefObject" />. -or- The constructor that best matches <paramref name="args" /> has varargs arguments. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor being called throws an exception. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Runtime.InteropServices.InvalidComObjectException"> The COM type was not obtained through <see cref="Overload:System.Type.GetTypeFromProgID" /> or <see cref="Overload:System.Type.GetTypeFromCLSID" />. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.Runtime.InteropServices.COMException"> <paramref name="type" /> is a COM object but the class identifier used to obtain the type is invalid, or the identified class is not registered. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="type" /> is not a valid type. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstanceFrom(System.AppDomain,System.String,System.String)"> <summary> Creates an instance of the type whose name is specified in the specified remote domain, using the named assembly file and default constructor. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="domain"> The remote domain where the type named <paramref name="typeName" /> is created. </param> <param name="assemblyFile"> The name of a file that contains an assembly where the type named <paramref name="typeName" /> is sought. </param> <param name="typeName"> The name of the preferred type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="domain" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyFile" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor, which was invoked through reflection, threw an exception. </exception> <exception cref="T:System.Security.SecurityException"> The caller does have the required <see cref="T:System.Security.Permissions.FileIOPermission" />. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and <paramref name="assemblyName" /> was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. </exception> </member> <member name="M:System.Activator.CreateInstanceFrom(System.AppDomain,System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)"> <summary> Creates an instance of the type whose name is specified in the specified remote domain, using the named assembly file and the constructor that best matches the specified parameters. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="domain"> The remote domain where the type named <paramref name="typeName" /> is created. </param> <param name="assemblyFile"> The name of a file that contains an assembly where the type named <paramref name="typeName" /> is sought. </param> <param name="typeName"> The name of the preferred type. </param> <param name="ignoreCase">true to specify that the search for <paramref name="typeName" /> is not case-sensitive; false to specify that the search is case-sensitive. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that uses <paramref name="bindingAttr" /> and <paramref name="args" /> to seek and identify the <paramref name="typeName" /> constructor. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> An array of arguments that match in number, order, and type the parameters of the constructor to invoke. If <paramref name="args" /> is an empty array or null, the constructor that takes no parameters (the default constructor) is invoked. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. This is typically an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <param name="securityAttributes"> Information used to make security policy decisions and grant code permissions. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="domain" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyFile" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor, which was invoked through reflection, threw an exception. </exception> <exception cref="T:System.Security.SecurityException"> The caller does have the required <see cref="T:System.Security.Permissions.FileIOPermission" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="activationAttributes" /> is not an empty array, and the type being created does not derive from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and <paramref name="assemblyName" /> was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. </exception> </member> <member name="M:System.Activator.CreateInstanceFrom(System.String,System.String)"> <summary> Creates an instance of the type whose name is specified, using the named assembly file and default constructor. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="assemblyFile"> The name of a file that contains an assembly where the type named <paramref name="typeName" /> is sought. </param> <param name="typeName"> The name of the preferred type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyFile" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor, which was invoked through reflection, threw an exception. </exception> <exception cref="T:System.Security.SecurityException"> The caller does have the required <see cref="T:System.Security.Permissions.FileIOPermission" />. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and <paramref name="assemblyName" /> was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstanceFrom(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)"> <summary> Creates an instance of the type whose name is specified, using the named assembly file and the constructor that best matches the specified parameters. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="assemblyFile"> The name of a file that contains an assembly where the type named <paramref name="typeName" /> is sought. </param> <param name="typeName"> The name of the preferred type. </param> <param name="ignoreCase">true to specify that the search for <paramref name="typeName" /> is not case-sensitive; false to specify that the search is case-sensitive. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that uses <paramref name="bindingAttr" /> and <paramref name="args" /> to seek and identify the <paramref name="typeName" /> constructor. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> An array of arguments that match in number, order, and type the parameters of the constructor to invoke. If <paramref name="args" /> is an empty array or null, the constructor that takes no parameters (the default constructor) is invoked. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. This is typically an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <param name="securityInfo"> Information used to make security policy decisions and grant code permissions. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyFile" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor, which was invoked through reflection, threw an exception. </exception> <exception cref="T:System.Security.SecurityException"> The caller does have the required <see cref="T:System.Security.Permissions.FileIOPermission" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="activationAttributes" /> is not an empty array, and the type being created does not derive from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and <paramref name="assemblyName" /> was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Activator.CreateInstanceFrom(System.String,System.String,System.Object[])"> <summary> Creates an instance of the type whose name is specified, using the named assembly file and default constructor. </summary> <returns> A handle that must be unwrapped to access the newly created instance. </returns> <param name="assemblyFile"> The name of a file that contains an assembly where the type named <paramref name="typeName" /> is sought. </param> <param name="typeName"> The name of the preferred type. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. This is typically an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyFile" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The constructor, which was invoked through reflection, threw an exception. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="activationAttributes" /> is not an empty array, and the type being created does not derive from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.Security.SecurityException"> The caller does have the required <see cref="T:System.Security.Permissions.FileIOPermission" />. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and <paramref name="assemblyName" /> was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Activator.GetObject(System.Type,System.String)"> <summary> Creates a proxy for the well-known object indicated by the specified type and URL. </summary> <returns> A proxy that points to an endpoint served by the requested well-known object. </returns> <param name="type"> The type of the well-known object to which you want to connect. </param> <param name="url"> The URL of the well-known object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> or <paramref name="url" /> is null. </exception> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="type" /> is not marshaled by reference. -or- <paramref name="type" /> is an interface. </exception> <exception cref="T:System.MemberAccessException"> This member was invoked with a late-binding mechanism. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Activator.GetObject(System.Type,System.String,System.Object)"> <summary> Creates a proxy for the well-known object indicated by the specified type, URL, and channel data. </summary> <returns> A proxy that points to an endpoint served by the requested well-known object. </returns> <param name="type"> The type of the well-known object to which you want to connect. </param> <param name="url"> The URL of the well-known object. </param> <param name="state"> Channel-specific data or null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> or <paramref name="url" /> is null. </exception> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="type" /> is not marshaled by reference. -or- <paramref name="type" /> is an interface. </exception> <exception cref="T:System.MemberAccessException"> This member was invoked with a late-binding mechanism. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Activator.System#Runtime#InteropServices#_Activator#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> The passed-in array of names to map. </param> <param name="cNames"> The count of the names to map. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> The caller-allocated array that receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Activator.System#Runtime#InteropServices#_Activator#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> An <see cref="T:System.IntPtr" /> object that receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Activator.System#Runtime#InteropServices#_Activator#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Activator.System#Runtime#InteropServices#_Activator#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> A dispatch identifier that identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure that contains an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="T:System.AppDomain"> <summary> Represents an application domain, which is an isolated environment where applications execute. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.AppDomain.ActivationContext"> <summary> Gets the activation context for the current application domain. </summary> <returns> An <see cref="T:System.ActivationContext" /> object that represents the activation context for the current application domain, or null if the domain has no activation context. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.AppDomain.AppendPrivatePath(System.String)"> <summary> Appends the specified directory name to the private path list. </summary> <param name="path"> The name of the directory to be appended to the private path. </param> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="P:System.AppDomain.ApplicationIdentity"> <summary> Gets the identity of the application in the application domain. </summary> <returns> An <see cref="T:System.ApplicationIdentity" /> object identifying the application in the application domain. </returns> </member> <member name="P:System.AppDomain.ApplicationTrust"> <summary> Gets information describing permissions granted to an application and whether the application has a trust level that allows it to run. </summary> <returns> An <see cref="T:System.Security.Policy.ApplicationTrust" /> object that encapsulates permission and trust information for the application in the application domain. </returns> </member> <member name="M:System.AppDomain.ApplyPolicy(System.String)"> <summary> Returns the assembly display name after policy has been applied. </summary> <returns> A string containing the assembly display name after policy has been applied. </returns> <param name="assemblyName"> The assembly display name, in the form provided by the <see cref="P:System.Reflection.Assembly.FullName" /> property. </param> <filterpriority>1</filterpriority> </member> <member name="E:System.AppDomain.AssemblyLoad"> <summary> Occurs when an assembly is loaded. </summary> <filterpriority>2</filterpriority> </member> <member name="E:System.AppDomain.AssemblyResolve"> <summary> Occurs when the resolution of an assembly fails. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomain.BaseDirectory"> <summary> Gets the base directory that the assembly resolver uses to probe for assemblies. </summary> <returns> The base directory that the assembly resolver uses to probe for assemblies. </returns> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.AppDomain.ClearPrivatePath"> <summary> Resets the path that specifies the location of private assemblies to the empty string (""). </summary> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.ClearShadowCopyPath"> <summary> Resets the list of directories containing shadow copied assemblies to the empty string (""). </summary> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateComInstanceFrom(System.String,System.String)"> <summary> Creates a new instance of a specified COM type. Parameters specify the name of a file that contains an assembly containing the type and the name of the type. </summary> <returns> An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyName"> The name of a file containing an assembly that defines the requested type. </param> <param name="typeName"> The name of the requested type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.TypeLoadException"> The type cannot be loaded. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.MissingMethodException"> No public parameterless constructor was found. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> is not found. </exception> <exception cref="T:System.MemberAccessException"> <paramref name="typeName" /> is an abstract class. -or- This member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assemblyName" /> is an empty string (""). </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <exception cref="T:System.NullReferenceException"> The COM object that is being referred to is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateComInstanceFrom(System.String,System.String,System.Byte[],System.Configuration.Assemblies.AssemblyHashAlgorithm)"> <summary> Creates a new instance of a specified COM type. Parameters specify the name of a file that contains an assembly containing the type and the name of the type. </summary> <returns> An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyFile"> The name of a file containing an assembly that defines the requested type. </param> <param name="typeName"> The name of the requested type. </param> <param name="hashValue"> Represents the value of the computed hash code. </param> <param name="hashAlgorithm"> Represents the hash algorithm used by the assembly manifest. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.TypeLoadException"> The type cannot be loaded. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.MissingMethodException"> No public parameterless constructor was found. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found. </exception> <exception cref="T:System.MemberAccessException"> <paramref name="typeName" /> is an abstract class. -or- This member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assemblyFile" /> is the empty string (""). </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <exception cref="T:System.NullReferenceException"> The COM object that is being referred to is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateDomain(System.String)"> <summary> Creates a new application domain with the specified name. </summary> <returns> The newly created application domain. </returns> <param name="friendlyName"> The friendly name of the domain. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="friendlyName" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateDomain(System.String,System.Security.Policy.Evidence)"> <summary> Creates a new application domain with the given name using the supplied evidence. </summary> <returns> The newly created application domain. </returns> <param name="friendlyName"> The friendly name of the domain. This friendly name can be displayed in user interfaces to identify the domain. For more information, see <see cref="P:System.AppDomain.FriendlyName" />. </param> <param name="securityInfo"> Evidence mapped through the security policy to establish a top-of-stack permission set. Pass null to use the evidence of the current application domain. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="friendlyName" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateDomain(System.String,System.Security.Policy.Evidence,System.AppDomainSetup)"> <summary> Creates a new application domain using the specified name, evidence, and application domain setup information. </summary> <returns> The newly created application domain. </returns> <param name="friendlyName"> The friendly name of the domain. This friendly name can be displayed in user interfaces to identify the domain. For more information, see <see cref="P:System.AppDomain.FriendlyName" />. </param> <param name="securityInfo"> Evidence mapped through the security policy to establish a top-of-stack permission set. Pass null to use the evidence of the current application domain. </param> <param name="info"> An object that contains application domain initialization information. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="friendlyName" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateDomain(System.String,System.Security.Policy.Evidence,System.AppDomainSetup,System.Security.PermissionSet,System.Security.Policy.StrongName[])"> <summary> Creates a new application domain using the specified name, evidence, application domain setup information, default permission set, and array of fully trusted assemblies. </summary> <returns> The newly created application domain. </returns> <param name="friendlyName"> The friendly name of the domain. This friendly name can be displayed in user interfaces to identify the domain. For more information, see the description of <see cref="P:System.AppDomain.FriendlyName" />. </param> <param name="securityInfo"> Evidence mapped through the security policy to establish a top-of-stack permission set. Pass null to use the evidence of the current application domain. </param> <param name="info"> An object that contains application domain initialization information. </param> <param name="grantSet"> A default permission set that is granted to all assemblies loaded into the new application domain that do not have specific grants. </param> <param name="fullTrustAssemblies"> An array of strong names representing assemblies to be considered fully trusted in the new application domain. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="friendlyName" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The application domain is null. </exception> </member> <member name="M:System.AppDomain.CreateDomain(System.String,System.Security.Policy.Evidence,System.String,System.String,System.Boolean)"> <summary> Creates a new application domain with the given name, using evidence, application base path, relative search path, and a parameter that specifies whether a shadow copy of an assembly is to be loaded into the application domain. </summary> <returns> The newly created application domain. </returns> <param name="friendlyName"> The friendly name of the domain. This friendly name can be displayed in user interfaces to identify the domain. For more information, see <see cref="P:System.AppDomain.FriendlyName" />. </param> <param name="securityInfo"> Evidence mapped through the security policy to establish a top-of-stack permission set. Pass null to use the evidence of the current application domain. </param> <param name="appBasePath"> The base directory that the assembly resolver uses to probe for assemblies. For more information, see <see cref="P:System.AppDomain.BaseDirectory" />. </param> <param name="appRelativeSearchPath"> The path relative to the base directory where the assembly resolver should probe for private assemblies. For more information, see <see cref="P:System.AppDomain.RelativeSearchPath" />. </param> <param name="shadowCopyFiles"> If true, a shadow copy of an assembly is loaded into this application domain. For more information, see <see cref="P:System.AppDomain.ShadowCopyFiles" /> and Shadow Copying Assemblies. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="friendlyName" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateDomain(System.String,System.Security.Policy.Evidence,System.String,System.String,System.Boolean,System.AppDomainInitializer,System.String[])"> <summary> Creates a new application domain with the given name, using evidence, application base path, relative search path, and a parameter that specifies whether a shadow copy of an assembly is to be loaded into the application domain. Specifies a callback method that is invoked when the application domain is initialized, and an array of string arguments to pass the callback method. </summary> <returns> The newly created application domain. </returns> <param name="friendlyName"> The friendly name of the domain. This friendly name can be displayed in user interfaces to identify the domain. For more information, see <see cref="P:System.AppDomain.FriendlyName" />. </param> <param name="securityInfo"> Evidence mapped through the security policy to establish a top-of-stack permission set. Pass null to use the evidence of the current application domain. </param> <param name="appBasePath"> The base directory that the assembly resolver uses to probe for assemblies. For more information, see <see cref="P:System.AppDomain.BaseDirectory" />. </param> <param name="appRelativeSearchPath"> The path relative to the base directory where the assembly resolver should probe for private assemblies. For more information, see <see cref="P:System.AppDomain.RelativeSearchPath" />. </param> <param name="shadowCopyFiles">true to load a shadow copy of an assembly into the application domain. For more information, see <see cref="P:System.AppDomain.ShadowCopyFiles" /> and Shadow Copying Assemblies. </param> <param name="adInit"> An <see cref="T:System.AppDomainInitializer" /> delegate that represents a callback method to invoke when the new <see cref="T:System.AppDomain" /> object is initialized. </param> <param name="adInitArgs"> An array of string arguments to be passed to the callback represented by <paramref name="adInit" />, when the new <see cref="T:System.AppDomain" /> object is initialized. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="friendlyName" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstance(System.String,System.String)"> <summary> Creates a new instance of the specified type defined in the specified assembly. </summary> <returns> An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.NullReferenceException"> This instance is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstance(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)"> <summary> Creates a new instance of the specified type defined in the specified assembly. Parameters specify a binder, binding flags, constructor arguments, culture-specific information used to interpret arguments, activation attributes, and authorization to create the type. </summary> <returns> An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="ignoreCase"> A Boolean value specifying whether to perform a case-sensitive search or not. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects using reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> The arguments to pass to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to invoke. If the default constructor is preferred, <paramref name="args" /> must be an empty array or null. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <param name="securityAttributes"> Information used to authorize creation of <paramref name="typeName" />. </param> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.NullReferenceException"> This instance is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstance(System.String,System.String,System.Object[])"> <summary> Creates a new instance of the specified type defined in the specified assembly. A parameter specifies an array of activation attributes. </summary> <returns> An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.NullReferenceException"> This instance is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstanceAndUnwrap(System.String,System.String)"> <summary> Creates a new instance of the specified type. Parameters specify the assembly where the type is defined, and the name of the type. </summary> <returns> An instance of the object specified by <paramref name="typeName" />. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstanceAndUnwrap(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)"> <summary> Creates a new instance of the specified type. Parameters specify the name of the type, and how it is found and created. </summary> <returns> An instance of the object specified by <paramref name="typeName" />. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="ignoreCase"> A Boolean value specifying whether to perform a case-sensitive search or not. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects using reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> The arguments to pass to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to invoke. If the default constructor is preferred, <paramref name="args" /> must be an empty array or null. </param> <param name="culture"> A culture-specific object used to govern the coercion of types. If <paramref name="culture" /> is null, the CultureInfo for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <param name="securityAttributes"> Information used to authorize creation of <paramref name="typeName" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstanceAndUnwrap(System.String,System.String,System.Object[])"> <summary> Creates a new instance of the specified type. Parameters specify the assembly where the type is defined, the name of the type, and an array of activation attributes. </summary> <returns> An instance of the object specified by <paramref name="typeName" />. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> or <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typename" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to call this constructor. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstanceFrom(System.String,System.String)"> <summary> Creates a new instance of the specified type defined in the specified assembly file. </summary> <returns> An object that is a wrapper for the new instance, or null if <paramref name="typeName" /> is not found. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyFile"> The name, including the path, of a file that contains an assembly that defines the requested type. The assembly is loaded using the <see cref="M:System.Reflection.Assembly.LoadFrom(System.String)" /> method. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. -or- <paramref name="typeName" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> was not found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typeName" /> was not found in <paramref name="assemblyFile" />. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.MissingMethodException"> No parameterless public constructor was found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have sufficient permission to call this constructor. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <exception cref="T:System.NullReferenceException"> This instance is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstanceFrom(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)"> <summary> Creates a new instance of the specified type defined in the specified assembly file. </summary> <returns> An object that is a wrapper for the new instance, or null if <paramref name="typeName" /> is not found. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyFile"> The name, including the path, of a file that contains an assembly that defines the requested type. The assembly is loaded using the <see cref="M:System.Reflection.Assembly.LoadFrom(System.String)" /> method. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="ignoreCase"> A Boolean value specifying whether to perform a case-sensitive search or not. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects through reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> The arguments to pass to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to invoke. If the default constructor is preferred, <paramref name="args" /> must be an empty array or null. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <param name="securityAttributes"> Information used to authorize creation of <paramref name="typeName" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. -or- <paramref name="typeName" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> was not found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typeName" /> was not found in <paramref name="assemblyFile" />. </exception> <exception cref="T:System.MissingMethodException"> No parameterless public constructor was found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have sufficient permission to call this constructor. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <exception cref="T:System.NullReferenceException"> This instance is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstanceFrom(System.String,System.String,System.Object[])"> <summary> Creates a new instance of the specified type defined in the specified assembly file. </summary> <returns> An object that is a wrapper for the new instance, or null if <paramref name="typeName" /> is not found. The return value needs to be unwrapped to access the real object. </returns> <param name="assemblyFile"> The name, including the path, of a file that contains an assembly that defines the requested type. The assembly is loaded using the <see cref="M:System.Reflection.Assembly.LoadFrom(System.String)" /> method. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> was not found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typeName" /> was not found in <paramref name="assemblyFile" />. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have sufficient permission to call this constructor. </exception> <exception cref="T:System.MissingMethodException"> No matching public constructor was found. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <exception cref="T:System.NullReferenceException"> This instance is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstanceFromAndUnwrap(System.String,System.String)"> <summary> Creates a new instance of the specified type defined in the specified assembly file. </summary> <returns> The requested object, or null if <paramref name="typeName" /> is not found. </returns> <param name="assemblyName"> The file name and path of the assembly that defines the requested type. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> is null. -or- <paramref name="typeName" /> is null. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typeName" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.MissingMethodException"> No parameterless public constructor was found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have sufficient permission to call this constructor. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstanceFromAndUnwrap(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[],System.Security.Policy.Evidence)"> <summary> Creates a new instance of the specified type defined in the specified assembly file. </summary> <returns> The requested object, or null if <paramref name="typeName" /> is not found. </returns> <param name="assemblyName"> The file name and path of the assembly that defines the requested type. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property. </param> <param name="ignoreCase"> A Boolean value specifying whether to perform a case-sensitive search or not. </param> <param name="bindingAttr"> A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects through reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> The arguments to pass to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to invoke. If the default constructor is preferred, <paramref name="args" /> must be an empty array or null. </param> <param name="culture"> Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <param name="securityAttributes"> Information used to authorize creation of <paramref name="typeName" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> is null. -or- <paramref name="typeName" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typeName" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.MissingMethodException"> No parameterless public constructor was found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have sufficient permission to call this constructor. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.AppDomain.CreateInstanceFromAndUnwrap(System.String,System.String,System.Object[])"> <summary> Creates a new instance of the specified type defined in the specified assembly file. </summary> <returns> The requested object, or null if <paramref name="typeName" /> is not found. </returns> <param name="assemblyName"> The file name and path of the assembly that defines the requested type. </param> <param name="typeName"> The fully qualified name of the requested type, including the namespace but not the assembly (see the <see cref="P:System.Type.FullName" /> property). </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> is null. -or- <paramref name="typeName" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyName" /> was not found. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typeName" /> was not found in <paramref name="assemblyName" />. </exception> <exception cref="T:System.MissingMethodException"> No parameterless public constructor was found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have sufficient permission to call this constructor. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="P:System.AppDomain.CurrentDomain"> <summary> Gets the current application domain for the current <see cref="T:System.Threading.Thread" />. </summary> <returns> The current application domain. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess)"> <summary> Defines a dynamic assembly with the specified name and access mode. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The access mode for the dynamic assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> begins with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)"> <summary> Defines a dynamic assembly using the specified name, access mode, and permission requests. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> begins with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Security.Policy.Evidence)"> <summary> Defines a dynamic assembly using the specified name, access mode, and evidence. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="evidence"> The evidence supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> begins with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)"> <summary> Defines a dynamic assembly using the specified name, access mode, evidence, and permission requests. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="evidence"> The evidence supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> begins with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String)"> <summary> Defines a dynamic assembly using the specified name, access mode, and storage directory. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the assembly will be saved. If <paramref name="dir" /> is null, the directory defaults to the current directory. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> begins with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)"> <summary> Defines a dynamic assembly using the specified name, access mode, storage directory, and permission requests. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the assembly will be saved. If <paramref name="dir" /> is null, the directory defaults to the current directory. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> begins with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.Policy.Evidence)"> <summary> Defines a dynamic assembly using the specified name, access mode, storage directory, and evidence. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the assembly will be saved. If <paramref name="dir" /> is null, the directory defaults to the current directory. </param> <param name="evidence"> The evidence supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> begins with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)"> <summary> Defines a dynamic assembly using the specified name, access mode, storage directory, evidence, and permission requests. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the assembly will be saved. If <paramref name="dir" /> is null, the directory defaults to the current directory. </param> <param name="evidence"> The evidence supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> begins with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet,System.Boolean)"> <summary> Defines a dynamic assembly using the specified name, access mode, storage directory, evidence, permission requests, and synchronization option. </summary> <returns> Represents the dynamic assembly created. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the dynamic assembly will be saved. If <paramref name="dir" /> is null, the directory defaults to the current directory. </param> <param name="evidence"> The evidence supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <param name="isSynchronized">true to synchronize the creation of modules, types, and members in the dynamic assembly; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> begins with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.AppDomain.DoCallBack(System.CrossAppDomainDelegate)"> <summary> Executes the code in another application domain that is identified by the specified delegate. </summary> <param name="callBackDelegate"> A delegate that specifies a method to call. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="callBackDelegate" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomain.DomainManager"> <summary> Gets the domain manager that was provided by the host when the application domain was initialized. </summary> <returns> An <see cref="T:System.AppDomainManager" /> object that represents the domain manager provided by the host when the application domain was initialized, or null if no domain manager was provided. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlDomainPolicy" /> </PermissionSet> </member> <member name="E:System.AppDomain.DomainUnload"> <summary> Occurs when an <see cref="T:System.AppDomain" /> is about to be unloaded. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomain.DynamicDirectory"> <summary> Gets the directory that the assembly resolver uses to probe for dynamically-created assemblies. </summary> <returns> Get the directory that the assembly resolver uses to probe for dynamically-created assemblies. </returns> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.AppDomain.Evidence"> <summary> Gets the <see cref="T:System.Security.Policy.Evidence" /> associated with this application domain that is used as input to the security policy. </summary> <returns> Gets the <see cref="T:System.Security.Policy.Evidence" /> associated with this application domain that is used as input to the security policy. </returns> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.AppDomain.ExecuteAssembly(System.String)"> <summary> Executes the assembly contained in the specified file. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyFile"> The name of the file that contains the assembly to execute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.ExecuteAssembly(System.String,System.Security.Policy.Evidence)"> <summary> Executes the assembly contained in the specified file, using the specified evidence. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyFile"> The name of the file that contains the assembly to execute. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.ExecuteAssembly(System.String,System.Security.Policy.Evidence,System.String[])"> <summary> Executes the assembly contained in the specified file, using the specified evidence and arguments. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyFile"> The name of the file that contains the assembly to execute. </param> <param name="assemblySecurity"> The supplied evidence for the assembly. </param> <param name="args"> The arguments to the entry point of the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.ExecuteAssembly(System.String,System.Security.Policy.Evidence,System.String[],System.Byte[],System.Configuration.Assemblies.AssemblyHashAlgorithm)"> <summary> Executes the assembly contained in the specified file, using the specified evidence and arguments. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyFile"> The name of the file that contains the assembly to execute. </param> <param name="assemblySecurity"> The supplied evidence for the assembly. </param> <param name="args"> The arguments to the entry point of the assembly. </param> <param name="hashValue"> Represents the value of the computed hash code. </param> <param name="hashAlgorithm"> Represents the hash algorithm used by the assembly manifest. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.ExecuteAssemblyByName(System.Reflection.AssemblyName,System.Security.Policy.Evidence,System.String[])"> <summary> Executes the assembly given an <see cref="T:System.Reflection.AssemblyName" />, using the specified evidence and arguments. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyName"> An <see cref="T:System.Reflection.AssemblyName" /> object representing the name of the assembly. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <param name="args"> Command-line arguments to pass when starting the process. </param> <exception cref="T:System.IO.FileNotFoundException"> The assembly specified by <paramref name="assemblyName" /> is not found. </exception> <exception cref="T:System.IO.FileLoadException"> The assembly specified by <paramref name="assemblyName" /> was found, but could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> The assembly specified by <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.ExecuteAssemblyByName(System.String)"> <summary> Executes an assembly given its display name. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The assembly specified by <paramref name="assemblyName" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> The assembly specified by <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> The assembly specified by <paramref name="assemblyName" /> was found, but could not be loaded. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.ExecuteAssemblyByName(System.String,System.Security.Policy.Evidence)"> <summary> Executes an assembly given its display name, using the specified evidence. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The assembly specified by <paramref name="assemblyName" /> is not found. </exception> <exception cref="T:System.IO.FileLoadException"> The assembly specified by <paramref name="assemblyName" /> was found, but could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> The assembly specified by <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.ExecuteAssemblyByName(System.String,System.Security.Policy.Evidence,System.String[])"> <summary> Executes the assembly given its display name, using the specified evidence and arguments. </summary> <returns> The value returned by the entry point of the assembly. </returns> <param name="assemblyName"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <param name="args"> Command-line arguments to pass when starting the process. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The assembly specified by <paramref name="assemblyName" /> is not found. </exception> <exception cref="T:System.IO.FileLoadException"> The assembly specified by <paramref name="assemblyName" /> was found, but could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> The assembly specified by <paramref name="assemblyName" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.AppDomain.FriendlyName"> <summary> Gets the friendly name of this application domain. </summary> <returns> The friendly name of this application domain. </returns> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomain.GetAssemblies"> <summary> Gets the assemblies that have been loaded into the execution context of this application domain. </summary> <returns> An array of assemblies in this application domain. </returns> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomain.GetCurrentThreadId"> <summary> Gets the current thread identifier. </summary> <returns> A 32-bit signed integer that is the identifier of the current thread. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.AppDomain.GetData(System.String)"> <summary> Gets the value stored in the current application domain for the specified name. </summary> <returns> The value of the <paramref name="name" /> property. </returns> <param name="name"> The name of a predefined application domain property, or the name of an application domain property you have defined. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.AppDomain.GetType"> <summary> Gets the type of the current instance. </summary> <returns> A <see cref="T:System.Type" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomain.Id"> <summary> Gets an integer that uniquely identifies the application domain within the process. </summary> <returns> An integer that identifies the application domain. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomain.InitializeLifetimeService"> <summary> Gives the <see cref="T:System.AppDomain" /> an infinite lifetime by preventing a lease from being created. </summary> <returns> Always null. </returns> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomain.IsDefaultAppDomain"> <summary> Returns a value that indicates whether the application domain is the default application domain for the process. </summary> <returns>true if the current <see cref="T:System.AppDomain" /> object represents the default application domain for the process; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.AppDomain.IsFinalizingForUnload"> <summary> Indicates whether this application domain is unloading, and the objects it contains are being finalized by the common language runtime. </summary> <returns>true if this application domain is unloading and the common language runtime has started invoking finalizers; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomain.Load(System.Byte[])"> <summary> Loads the <see cref="T:System.Reflection.Assembly" /> with a common object file format (COFF) based image containing an emitted <see cref="T:System.Reflection.Assembly" />. </summary> <returns> The loaded assembly. </returns> <param name="rawAssembly"> An array of type byte that is a COFF-based image containing an emitted assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rawAssembly" /> is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="rawAssembly" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="rawAssembly" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.Load(System.Byte[],System.Byte[])"> <summary> Loads the <see cref="T:System.Reflection.Assembly" /> with a common object file format (COFF) based image containing an emitted <see cref="T:System.Reflection.Assembly" />. The raw bytes representing the symbols for the <see cref="T:System.Reflection.Assembly" /> are also loaded. </summary> <returns> The loaded assembly. </returns> <param name="rawAssembly"> An array of type byte that is a COFF-based image containing an emitted assembly. </param> <param name="rawSymbolStore"> An array of type byte containing the raw bytes representing the symbols for the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rawAssembly" /> is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="rawAssembly" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="rawAssembly" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.Load(System.Byte[],System.Byte[],System.Security.Policy.Evidence)"> <summary> Loads the <see cref="T:System.Reflection.Assembly" /> with a common object file format (COFF) based image containing an emitted <see cref="T:System.Reflection.Assembly" />. The raw bytes representing the symbols for the <see cref="T:System.Reflection.Assembly" /> are also loaded. </summary> <returns> The loaded assembly. </returns> <param name="rawAssembly"> An array of type byte that is a COFF-based image containing an emitted assembly. </param> <param name="rawSymbolStore"> An array of type byte containing the raw bytes representing the symbols for the assembly. </param> <param name="securityEvidence"> Evidence for loading the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rawAssembly" /> is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="rawAssembly" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="rawAssembly" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.Load(System.Reflection.AssemblyName)"> <summary> Loads an <see cref="T:System.Reflection.Assembly" /> given its <see cref="T:System.Reflection.AssemblyName" />. </summary> <returns> The loaded assembly. </returns> <param name="assemblyRef"> An object that describes the assembly to load. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyRef" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyRef" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyRef" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyRef" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence)"> <summary> Loads an <see cref="T:System.Reflection.Assembly" /> given its <see cref="T:System.Reflection.AssemblyName" />. </summary> <returns> The loaded assembly. </returns> <param name="assemblyRef"> An object that describes the assembly to load. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyRef" /> is null</exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyRef" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyRef" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyRef" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.Load(System.String)"> <summary> Loads an <see cref="T:System.Reflection.Assembly" /> given its display name. </summary> <returns> The loaded assembly. </returns> <param name="assemblyString"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyString" /> is null</exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyString" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyString" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyString" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.AppDomain.Load(System.String,System.Security.Policy.Evidence)"> <summary> Loads an <see cref="T:System.Reflection.Assembly" /> given its display name. </summary> <returns> The loaded assembly. </returns> <param name="assemblyString"> The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyString" /> is null</exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyString" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyString" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyString" /> was compiled with a later version. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="E:System.AppDomain.ProcessExit"> <summary> Occurs when the default application domain's parent process exits. </summary> <filterpriority>2</filterpriority> </member> <member name="E:System.AppDomain.ReflectionOnlyAssemblyResolve"> <summary> Occurs when the resolution of an assembly fails in the reflection-only context. </summary> </member> <member name="M:System.AppDomain.ReflectionOnlyGetAssemblies"> <summary> Returns the assemblies that have been loaded into the reflection-only context of the application domain. </summary> <returns> An array of <see cref="T:System.Reflection.Assembly" /> objects that represent the assemblies loaded into the reflection-only context of the application domain. </returns> <exception cref="T:System.AppDomainUnloadedException"> An operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomain.RelativeSearchPath"> <summary> Gets the path under the base directory where the assembly resolver should probe for private assemblies. </summary> <returns> The path under the base directory where the assembly resolver should probe for private assemblies. </returns> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="E:System.AppDomain.ResourceResolve"> <summary> Occurs when the resolution of a resource fails because the resource is not a valid linked or embedded resource in the assembly. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomain.SetAppDomainPolicy(System.Security.Policy.PolicyLevel)"> <summary> Establishes the security policy level for this application domain. </summary> <param name="domainPolicy"> The security policy level. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="domainPolicy" /> is null. </exception> <exception cref="T:System.Security.Policy.PolicyException"> The security policy level has already been set. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlDomainPolicy" /> </PermissionSet> </member> <member name="M:System.AppDomain.SetCachePath(System.String)"> <summary> Establishes the specified directory path as the location where assemblies are shadow copied. </summary> <param name="path"> The fully qualified path to the shadow copy location. </param> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.SetData(System.String,System.Object)"> <summary> Assigns the specified value to the specified application domain property. </summary> <param name="name"> The name of a user-defined application domain property to create or change. </param> <param name="data"> The value of the property. </param> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.SetData(System.String,System.Object,System.Security.IPermission)"> <summary> Assigns the specified value to the specified application domain property, with a specified permission to demand of the caller when the property is retrieved. </summary> <param name="name"> The name of a user-defined application domain property to create or change. </param> <param name="data"> The value of the property. </param> <param name="permission"> The permission to demand of the caller when the property is retrieved. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="name" /> specifies a system-defined property string and <paramref name="permission" /> is not null. </exception> </member> <member name="M:System.AppDomain.SetDynamicBase(System.String)"> <summary> Establishes the specified directory path as the base directory for subdirectories where dynamically generated files are stored and accessed. </summary> <param name="path"> The fully qualified path that is the base directory for subdirectories where dynamic assemblies are stored. </param> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.SetPrincipalPolicy(System.Security.Principal.PrincipalPolicy)"> <summary> Specifies how principal and identity objects should be attached to a thread if the thread attempts to bind to a principal while executing in this application domain. </summary> <param name="policy"> One of the <see cref="T:System.Security.Principal.PrincipalPolicy" /> values that specifies the type of the principal object to attach to threads. </param> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPrincipal" /> </PermissionSet> </member> <member name="M:System.AppDomain.SetShadowCopyFiles"> <summary> Turns on shadow copying. </summary> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.SetShadowCopyPath(System.String)"> <summary> Establishes the specified directory path as the location of assemblies to be shadow copied. </summary> <param name="path"> A list of directory names, where each name is separated by a semicolon. </param> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="M:System.AppDomain.SetThreadPrincipal(System.Security.Principal.IPrincipal)"> <summary> Sets the default principal object to be attached to threads if they attempt to bind to a principal while executing in this application domain. </summary> <param name="principal"> The principal object to attach to threads. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="principal" /> is null. </exception> <exception cref="T:System.Security.Policy.PolicyException"> The thread principal has already been set. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPrincipal" /> </PermissionSet> </member> <member name="P:System.AppDomain.SetupInformation"> <summary> Gets the application domain configuration information for this instance. </summary> <returns> The application domain initialization information. </returns> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomain.ShadowCopyFiles"> <summary> Gets an indication whether the application domain is configured to shadow copy files. </summary> <returns>true if the application domain is configured to shadow copy files; otherwise, false. </returns> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomain.System#_AppDomain#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.AppDomain.System#_AppDomain#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.AppDomain.System#_AppDomain#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.AppDomain.System#_AppDomain#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.AppDomain.ToString"> <summary> Obtains a string representation that includes the friendly name of the application domain and any context policies. </summary> <returns> A string formed by concatenating the literal string "Name:", the friendly name of the application domain, and either string representations of the context policies or the string "There are no context policies." </returns> <exception cref="T:System.AppDomainUnloadedException"> The application domain represented by the current <see cref="T:System.AppDomain" /> has been unloaded. </exception> <filterpriority>2</filterpriority> </member> <member name="E:System.AppDomain.TypeResolve"> <summary> Occurs when the resolution of a type fails. </summary> <filterpriority>2</filterpriority> </member> <member name="E:System.AppDomain.UnhandledException"> <summary> Occurs when an exception is not caught. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomain.Unload(System.AppDomain)"> <summary> Unloads the specified application domain. </summary> <param name="domain"> An application domain to unload. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="domain" /> is null. </exception> <exception cref="T:System.CannotUnloadAppDomainException"> <paramref name="domain" /> could not be unloaded. </exception> <exception cref="T:System.Exception"> An error occurred during the unload process. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlAppDomain" /> </PermissionSet> </member> <member name="T:System.AppDomainInitializer"> <summary> Represents the callback method to invoke when the application domain is initialized. </summary> <param name="args"> An array of strings to pass as arguments to the callback method. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.AppDomainManager"> <summary> Provides a managed equivalent of an unmanaged host. </summary> <exception cref="T:System.Security.SecurityException"> The caller does not have the correct permissions. See the Requirements section. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomainManager.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.AppDomainManager" /> class. </summary> </member> <member name="P:System.AppDomainManager.ApplicationActivator"> <summary> Gets the application activator that handles the activation of add-ins and manifest-based applications for the domain. </summary> <returns> An <see cref="T:System.Runtime.Hosting.ApplicationActivator" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.AppDomainManager.CreateDomain(System.String,System.Security.Policy.Evidence,System.AppDomainSetup)"> <summary> Returns an application domain that can be either a new or existing domain. </summary> <returns> An <see cref="T:System.AppDomain" /> object. </returns> <param name="friendlyName"> The friendly name of the domain. </param> <param name="securityInfo"> An <see cref="T:System.Security.Policy.Evidence" /> object that contains evidence mapped through the security policy to establish a top-of-stack permission set. </param> <param name="appDomainInfo"> An <see cref="T:System.AppDomainSetup" /> object that contains application domain initialization information. </param> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlAppDomain, Infrastructure" /> </PermissionSet> </member> <member name="M:System.AppDomainManager.CreateDomainHelper(System.String,System.Security.Policy.Evidence,System.AppDomainSetup)"> <summary> Provides a helper method to create an application domain. </summary> <returns> A newly created <see cref="T:System.AppDomain" /> object. </returns> <param name="friendlyName"> The friendly name of the domain. </param> <param name="securityInfo"> An <see cref="T:System.Security.Policy.Evidence" /> object that contains evidence mapped through the security policy to establish a top-of-stack permission set. </param> <param name="appDomainInfo"> An <see cref="T:System.AppDomainSetup" /> object that contains application domain initialization information. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="friendlyName" /> is null. </exception> </member> <member name="P:System.AppDomainManager.EntryAssembly"> <summary> Gets the entry assembly for an application. </summary> <returns> An <see cref="T:System.Reflection.Assembly" /> object representing the entry assembly for the application. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.AppDomainManager.HostExecutionContextManager"> <summary> Gets the host execution context manager that manages the flow of the execution context. </summary> <returns> A <see cref="T:System.Threading.HostExecutionContextManager" /> object. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.AppDomainManager.HostSecurityManager"> <summary> Gets the host security manager that participates in security decisions for the application domain. </summary> <returns> A <see cref="T:System.Security.HostSecurityManager" /> object. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.AppDomainManager.InitializationFlags"> <summary> Gets the initialization flags for custom application domain managers. </summary> <returns> A bitwise combination of the <see cref="T:System.AppDomainManagerInitializationOptions" /> describing the initialization action to perform. The default is <see cref="F:System.AppDomainManagerInitializationOptions.None" />. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.AppDomainManager.InitializeNewDomain(System.AppDomainSetup)"> <summary> Initializes the new application domain. </summary> <param name="appDomainInfo"> An <see cref="T:System.AppDomainSetup" /> object that contains application domain initialization information. </param> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.AppDomainManagerInitializationOptions"> <summary> Specifies the action that a custom application domain manager takes when initializing a new domain. </summary> </member> <member name="F:System.AppDomainManagerInitializationOptions.None"> <summary> No initialization action. </summary> </member> <member name="F:System.AppDomainManagerInitializationOptions.RegisterWithHost"> <summary> Register the COM callable wrapper for the current <see cref="T:System.AppDomainManager" /> with the unmanaged host. </summary> </member> <member name="T:System.AppDomainSetup"> <summary> Represents assembly binding information that can be added to an instance of <see cref="T:System.AppDomain" />. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomainSetup.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.AppDomainSetup" /> class. </summary> </member> <member name="M:System.AppDomainSetup.#ctor(System.ActivationContext)"> <summary> Initializes a new instance of the <see cref="T:System.AppDomainSetup" /> class with the specified activation context to use for manifest-based activation of an application domain. </summary> <param name="activationContext"> An <see cref="T:System.ActivationContext" /> object that specifies the activation context to be used for an application domain. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="activationContext" /> is null. </exception> </member> <member name="M:System.AppDomainSetup.#ctor(System.Runtime.Hosting.ActivationArguments)"> <summary> Initializes a new instance of the <see cref="T:System.AppDomainSetup" /> class with the specified activation arguments required for manifest-based activation of an application domain. </summary> <param name="activationArguments"> An <see cref="T:System.Runtime.Hosting.ActivationArguments" /> object that specifies information required for the manifest-based activation of a new application domain. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="activationArguments" /> is null. </exception> </member> <member name="P:System.AppDomainSetup.ActivationArguments"> <summary> Gets or sets data about the activation of an application domain. </summary> <returns> An <see cref="T:System.Runtime.Hosting.ActivationArguments" /> object containing data about the activation of an application domain. </returns> <exception cref="T:System.InvalidOperationException"> The property is set to an <see cref="T:System.Runtime.Hosting.ActivationArguments" /> object whose application identity does not match the application identity of the <see cref="T:System.Security.Policy.ApplicationTrust" /> object returned by the <see cref="P:System.AppDomainSetup.ApplicationTrust" /> property. No exception is thrown if the <see cref="P:System.AppDomainSetup.ApplicationTrust" /> property is null. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.AppDomainSetup.AppDomainInitializer"> <summary> Gets or sets the <see cref="T:System.AppDomainInitializer" /> delegate, which represents a callback method that is invoked when the application domain is initialized. </summary> <returns> An <see cref="T:System.AppDomainInitializer" /> delegate that represents a callback method that is invoked when the application domain is initialized. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomainSetup.AppDomainInitializerArguments"> <summary> Gets or sets the arguments passed to the callback method represented by the <see cref="T:System.AppDomainInitializer" /> delegate. The callback method is invoked when the application domain is initialized. </summary> <returns> An array of strings that is passed to the callback method represented by the <see cref="T:System.AppDomainInitializer" /> delegate, when the callback method is invoked during <see cref="T:System.AppDomain" /> initialization. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomainSetup.ApplicationBase"> <summary> Gets or sets the name of the directory containing the application. </summary> <returns> A <see cref="T:System.String" /> containing the name of the application base directory. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.AppDomainSetup.ApplicationName"> <summary> Gets or sets the name of the application. </summary> <returns> A <see cref="T:System.String" /> that is the name of the application. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomainSetup.ApplicationTrust"> <summary> Gets or sets an object containing security and trust information. </summary> <returns> An <see cref="T:System.Security.Policy.ApplicationTrust" /> object representing security and trust information. </returns> <exception cref="T:System.InvalidOperationException"> The property is set to an <see cref="T:System.Security.Policy.ApplicationTrust" /> object whose application identity does not match the application identity of the <see cref="T:System.Runtime.Hosting.ActivationArguments" /> object returned by the <see cref="P:System.AppDomainSetup.ActivationArguments" /> property. No exception is thrown if the <see cref="P:System.AppDomainSetup.ActivationArguments" /> property is null. </exception> <exception cref="T:System.ArgumentNullException"> The property is set to null. </exception> </member> <member name="P:System.AppDomainSetup.CachePath"> <summary> Gets or sets the name of an area specific to the application where files are shadow copied. </summary> <returns> A <see cref="T:System.String" /> that is the fully qualified name of the directory path and file name where files are shadow copied. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.AppDomainSetup.ConfigurationFile"> <summary> Gets or sets the name of the configuration file for an application domain. </summary> <returns> A <see cref="T:System.String" /> that specifies the name of the configuration file. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.AppDomainSetup.DisallowApplicationBaseProbing"> <summary> Specifies whether the application base path and private binary path are probed when searching for assemblies to load. </summary> <returns>true if probing is not allowed; otherwise false. The default is false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.AppDomainSetup.DisallowBindingRedirects"> <summary> Gets or sets a value indicating if an application domain allows assembly binding redirection. </summary> <returns>true if redirection of assemblies is disallowed; otherwise it is allowed. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomainSetup.DisallowCodeDownload"> <summary> Gets or sets a value indicating whether HTTP download of assemblies is allowed for an application domain. </summary> <returns>true if HTTP download of assemblies is to be disallowed; otherwise, it is allowed. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomainSetup.DisallowPublisherPolicy"> <summary> Gets or sets a value indicating whether the publisher policy section of the configuration file is applied to an application domain. </summary> <returns>true if the publisherPolicy section of the configuration file for an application domain is ignored; otherwise, the declared publisher policy is honored. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomainSetup.DynamicBase"> <summary> Gets or sets the base directory where the directory for dynamically generated files is located. </summary> <returns> A <see cref="T:System.String" /> that specifies the directory where the <see cref="P:System.AppDomain.DynamicDirectory" /> is located. </returns> <exception cref="T:System.MemberAccessException"> This property cannot be set because the application name on the application domain is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.AppDomainSetup.GetConfigurationBytes"> <summary> Gets the XML configuration information set by the <see cref="M:System.AppDomainSetup.SetConfigurationBytes(System.Byte[])" /> method, which overrides the application's XML configuration information. </summary> <returns> A <see cref="T:System.Byte" /> array containing the XML configuration information that was set by the <see cref="M:System.AppDomainSetup.SetConfigurationBytes(System.Byte[])" /> method, or null if the <see cref="M:System.AppDomainSetup.SetConfigurationBytes(System.Byte[])" /> method has not been called. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.AppDomainSetup.LicenseFile"> <summary> Gets or sets the location of the license file associated with this domain. </summary> <returns> A <see cref="T:System.String" /> that specifies the name of the license file. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.AppDomainSetup.LoaderOptimization"> <summary> Specifies the optimization policy used to load an executable. </summary> <returns> A <see cref="T:System.LoaderOptimization" /> enumerated constant used with the <see cref="T:System.LoaderOptimizationAttribute" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.AppDomainSetup.PrivateBinPath"> <summary> Gets or sets the list of directories under the application base directory that are probed for private assemblies. </summary> <returns> A <see cref="T:System.String" /> containing a list of directory names, where the names are separated by semicolons. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.AppDomainSetup.PrivateBinPathProbe"> <summary> Gets or sets a string value that includes or excludes <see cref="P:System.AppDomainSetup.ApplicationBase" /> from the search path for the application, and searches only <see cref="P:System.AppDomainSetup.PrivateBinPath" />. </summary> <returns> A <see cref="T:System.String" /> that is blank if <see cref="P:System.AppDomainSetup.ApplicationBase" /> is included in the application search path, or nonblank if it is excluded. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomainSetup.SetConfigurationBytes(System.Byte[])"> <summary> Provides XML configuration information for the application domain, overriding the application's XML configuration information. </summary> <param name="value"> A <see cref="T:System.Byte" /> array containing the XML configuration information to be used for the application domain. </param> <filterpriority>1</filterpriority> </member> <member name="P:System.AppDomainSetup.ShadowCopyDirectories"> <summary> Gets or sets the names of the directories containing assemblies to be shadow copied. </summary> <returns> A <see cref="T:System.String" /> containing a list of directory names, where each name is separated by a semicolon. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.AppDomainSetup.ShadowCopyFiles"> <summary> Gets or sets a string that indicates whether shadow copying is turned on or off. </summary> <returns> A <see cref="T:System.String" /> containing the string value "true" to indicate that shadow copying is turned on; or "false" to indicate that shadow copying is turned off. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.AppDomainUnloadedException"> <summary> The exception that is thrown when an attempt is made to access an unloaded application domain. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.AppDomainUnloadedException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class. </summary> </member> <member name="M:System.AppDomainUnloadedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.AppDomainUnloadedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.AppDomainUnloadedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The message that describes the error. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.ApplicationException"> <summary> The exception that is thrown when a non-fatal application error occurs. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ApplicationException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ApplicationException" /> class. </summary> </member> <member name="M:System.ApplicationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.ApplicationException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.ApplicationException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ApplicationException" /> class with a specified error message. </summary> <param name="message"> A message that describes the error. </param> </member> <member name="M:System.ApplicationException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.ApplicationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.ApplicationId"> <summary> Contains information used to uniquely identify a manifest-based application. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ApplicationId.#ctor(System.Byte[],System.String,System.Version,System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ApplicationId" /> class. </summary> <param name="publicKeyToken"> The array of bytes representing the raw public key data. </param> <param name="name"> The name of the application. </param> <param name="version"> A <see cref="T:System.Version" /> object that specifies the version of the application. </param> <param name="processorArchitecture"> The processor architecture of the application. </param> <param name="culture"> The culture of the application. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name " />is null. -or- <paramref name="version " />is null. -or- <paramref name="publicKeyToken " />is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name " />is an empty string. </exception> </member> <member name="M:System.ApplicationId.Copy"> <summary> Creates and returns an identical copy of the current application identity. </summary> <returns> An <see cref="T:System.ApplicationId" /> object that represents an exact copy of the original. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.ApplicationId.Culture"> <summary> Gets a string representing the culture information for the application. </summary> <returns> The culture information for the application. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.ApplicationId.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.ApplicationId" /> object is equivalent to the current <see cref="T:System.ApplicationId" />. </summary> <returns>true if the specified <see cref="T:System.ApplicationId" /> object is equivalent to the current <see cref="T:System.ApplicationId" />; otherwise, false. </returns> <param name="o"> The <see cref="T:System.ApplicationId" /> object to compare to the current <see cref="T:System.ApplicationId" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.ApplicationId.GetHashCode"> <summary> Gets the hash code for the current application identity. </summary> <returns> The hash code for the current application identity. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.ApplicationId.Name"> <summary> Gets the name of the application. </summary> <returns> The name of the application. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.ApplicationId.ProcessorArchitecture"> <summary> Gets the target processor architecture for the application. </summary> <returns> The processor architecture of the application. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.ApplicationId.PublicKeyToken"> <summary> Gets the public key token for the application. </summary> <returns> A byte array containing the public key token for the application. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.ApplicationId.ToString"> <summary> Creates and returns a string representation of the application identity. </summary> <returns> A string representation of the application identity. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.ApplicationId.Version"> <summary> Gets the version of the application. </summary> <returns> A <see cref="T:System.Version" /> that specifies the version of the application. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.ApplicationIdentity"> <summary> Provides the ability to uniquely identify a manifest-activated application. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.ApplicationIdentity.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ApplicationIdentity" /> class. </summary> <param name="applicationIdentityFullName"> The full name of the application. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="applicationIdentityFullName" /> is null. </exception> </member> <member name="P:System.ApplicationIdentity.CodeBase"> <summary> Gets the location of the deployment manifest as a URL. </summary> <returns> The URL of the deployment manifest. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.ApplicationIdentity.FullName"> <summary> Gets the full name of the application. </summary> <returns> The full name of the application, also known as the display name. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.ApplicationIdentity.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data needed to serialize the target object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" />) structure for the serialization. </param> </member> <member name="M:System.ApplicationIdentity.ToString"> <summary> Returns the full name of the manifest-activated application. </summary> <returns> The full name of the manifest-activated application. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.ArgIterator"> <summary> Represents a variable-length argument list; that is, the parameters of a function that takes a variable number of arguments. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ArgIterator.#ctor(System.RuntimeArgumentHandle)"> <summary> Initializes a new instance of the <see cref="T:System.ArgIterator" /> structure using the specified argument list. </summary> <param name="arglist"> An argument list consisting of mandatory and optional arguments. </param> </member> <member name="M:System.ArgIterator.#ctor(System.RuntimeArgumentHandle,System.Void*)"> <summary> Initializes a new instance of the <see cref="T:System.ArgIterator" /> structure using the specified argument list and a pointer to an item in the list. </summary> <param name="arglist"> An argument list consisting of mandatory and optional arguments. </param> <param name="ptr"> A pointer to the argument in <paramref name="arglist" /> to access first, or the first mandatory argument in <paramref name="arglist" /> if <paramref name="ptr" /> is null. </param> </member> <member name="M:System.ArgIterator.End"> <summary> Concludes processing of the variable-length argument list represented by this instance. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ArgIterator.Equals(System.Object)"> <summary> This method is not supported, and always throws <see cref="T:System.NotSupportedException" />. </summary> <returns> This comparison is not supported. No value is returned. </returns> <param name="o"> An object to be compared to this instance. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.ArgIterator.GetHashCode"> <summary> Returns the hash code of this object. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.ArgIterator.GetNextArg"> <summary> Returns the next argument in a variable-length argument list. </summary> <returns> The next argument as a <see cref="T:System.TypedReference" /> object. </returns> <exception cref="T:System.InvalidOperationException"> An attempt was made to read beyond the end of the list. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.ArgIterator.GetNextArg(System.RuntimeTypeHandle)"> <summary> Returns the next argument in a variable-length argument list that has a specified type. </summary> <returns> The next argument as a <see cref="T:System.TypedReference" /> object. </returns> <param name="rth"> A runtime type handle that identifies the type of the argument to retrieve. </param> <exception cref="T:System.InvalidOperationException"> An attempt was made to read beyond the end of the list. </exception> <exception cref="T:System.ArgumentNullException"> The ArgPtr is zero. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.ArgIterator.GetNextArgType"> <summary> Returns the type of the next argument. </summary> <returns> The type of the next argument. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.ArgIterator.GetRemainingCount"> <summary> Returns the number of arguments remaining in the argument list. </summary> <returns> The number of remaining arguments. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.ArgumentException"> <summary> The exception that is thrown when one of the arguments provided to a method is not valid. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.ArgumentException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentException" /> class. </summary> </member> <member name="M:System.ArgumentException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.ArgumentException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.ArgumentException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.ArgumentException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentException" /> class with a specified error message and the name of the parameter that causes this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="paramName"> The name of the parameter that caused the current exception. </param> </member> <member name="M:System.ArgumentException.#ctor(System.String,System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentException" /> class with a specified error message, the parameter name, and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="paramName"> The name of the parameter that caused the current exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.ArgumentException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the parameter name and additional exception information. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> object is a null reference (Nothing in Visual Basic). </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.ArgumentException.Message"> <summary> Gets the error message and the parameter name, or only the error message if no parameter name is set. </summary> <returns> A text string describing the details of the exception. The value of this property takes one of two forms: Condition Value The <paramref name="paramName" /> is a null reference (Nothing in Visual Basic) or of zero length. The <paramref name="message" /> string passed to the constructor. The <paramref name="paramName" /> is not null reference (Nothing in Visual Basic) and it has a length greater than zero. The <paramref name="message" /> string appended with the name of the invalid parameter. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.ArgumentException.ParamName"> <summary> Gets the name of the parameter that causes this exception. </summary> <returns> The parameter name. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.ArgumentNullException"> <summary> The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ArgumentNullException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentNullException" /> class. </summary> </member> <member name="M:System.ArgumentNullException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentNullException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> An object that describes the source or destination of the serialized data. </param> </member> <member name="M:System.ArgumentNullException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentNullException" /> class with the name of the parameter that causes this exception. </summary> <param name="paramName"> The name of the parameter that caused the exception. </param> </member> <member name="M:System.ArgumentNullException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentNullException" /> class with a specified error message and the exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for this exception. </param> <param name="innerException"> The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. </param> </member> <member name="M:System.ArgumentNullException.#ctor(System.String,System.String)"> <summary> Initializes an instance of the <see cref="T:System.ArgumentNullException" /> class with a specified error message and the name of the parameter that causes this exception. </summary> <param name="paramName"> The name of the parameter that caused the exception. </param> <param name="message"> A message that describes the error. </param> </member> <member name="T:System.ArgumentOutOfRangeException"> <summary> The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ArgumentOutOfRangeException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class. </summary> </member> <member name="M:System.ArgumentOutOfRangeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> An object that describes the source or destination of the serialized data. </param> </member> <member name="M:System.ArgumentOutOfRangeException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class with the name of the parameter that causes this exception. </summary> <param name="paramName"> The name of the parameter that causes this exception. </param> </member> <member name="M:System.ArgumentOutOfRangeException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class with a specified error message and the exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for this exception. </param> <param name="innerException"> The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. </param> </member> <member name="M:System.ArgumentOutOfRangeException.#ctor(System.String,System.Object,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class with a specified error message, the parameter name, and the value of the argument. </summary> <param name="paramName"> The name of the parameter that caused the exception. </param> <param name="actualValue"> The value of the argument that causes this exception. </param> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.ArgumentOutOfRangeException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class with a specified error message and the name of the parameter that causes this exception. </summary> <param name="paramName"> The name of the parameter that caused the exception. </param> <param name="message"> The message that describes the error. </param> </member> <member name="P:System.ArgumentOutOfRangeException.ActualValue"> <summary> Gets the argument value that causes this exception. </summary> <returns> An Object that contains the value of the parameter that caused the current <see cref="T:System.Exception" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.ArgumentOutOfRangeException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the invalid argument value and additional exception information. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> An object that describes the source or destination of the serialized data. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> object is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.ArgumentOutOfRangeException.Message"> <summary> Gets the error message and the string representation of the invalid argument value, or only the error message if the argument value is null. </summary> <returns> The text message for this exception. The value of this property takes one of two forms, as follows. Condition Value The <paramref name="actualValue" /> is null. The <paramref name="message" /> string passed to the constructor. The <paramref name="actualValue" /> is not null. The <paramref name="message" /> string appended with the string representation of the invalid argument value. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.ArithmeticException"> <summary> The exception that is thrown for errors in an arithmetic, casting, or conversion operation. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ArithmeticException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ArithmeticException" /> class. </summary> </member> <member name="M:System.ArithmeticException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.ArithmeticException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.ArithmeticException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ArithmeticException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. </param> </member> <member name="M:System.ArithmeticException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.ArithmeticException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Array"> <summary> Provides methods for creating, manipulating, searching, and sorting arrays, thereby serving as the base class for all arrays in the common language runtime. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.AsReadOnly``1(``0[])"> <summary> Returns a read-only wrapper for the specified array. </summary> <returns> A read-only <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> wrapper for the specified array. </returns> <param name="array"> The one-dimensional, zero-based array to wrap in a read-only <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> wrapper. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> </member> <member name="M:System.Array.BinarySearch(System.Array,System.Int32,System.Int32,System.Object)"> <summary> Searches a range of elements in a one-dimensional sorted <see cref="T:System.Array" /> for a value, using the <see cref="T:System.IComparable" /> interface implemented by each element of the <see cref="T:System.Array" /> and by the specified value. </summary> <returns> The index of the specified <paramref name="value" /> in the specified <paramref name="array" />, if <paramref name="value" /> is found. If <paramref name="value" /> is not found and <paramref name="value" /> is less than one or more elements in <paramref name="array" />, a negative number which is the bitwise complement of the index of the first element that is larger than <paramref name="value" />. If <paramref name="value" /> is not found and <paramref name="value" /> is greater than any of the elements in <paramref name="array" />, a negative number which is the bitwise complement of (the index of the last element plus 1). </returns> <param name="array"> The sorted one-dimensional <see cref="T:System.Array" /> to search. </param> <param name="index"> The starting index of the range to search. </param> <param name="length"> The length of the range to search. </param> <param name="value"> The object to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in <paramref name="array" />. -or- <paramref name="value" /> is of a type that is not compatible with the elements of <paramref name="array" />. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="value" /> does not implement the <see cref="T:System.IComparable" /> interface, and the search encounters an element that does not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.BinarySearch(System.Array,System.Int32,System.Int32,System.Object,System.Collections.IComparer)"> <summary> Searches a range of elements in a one-dimensional sorted <see cref="T:System.Array" /> for a value, using the specified <see cref="T:System.Collections.IComparer" /> interface. </summary> <returns> The index of the specified <paramref name="value" /> in the specified <paramref name="array" />, if <paramref name="value" /> is found. If <paramref name="value" /> is not found and <paramref name="value" /> is less than one or more elements in <paramref name="array" />, a negative number which is the bitwise complement of the index of the first element that is larger than <paramref name="value" />. If <paramref name="value" /> is not found and <paramref name="value" /> is greater than any of the elements in <paramref name="array" />, a negative number which is the bitwise complement of (the index of the last element plus 1). </returns> <param name="array"> The sorted one-dimensional <see cref="T:System.Array" /> to search. </param> <param name="index"> The starting index of the range to search. </param> <param name="length"> The length of the range to search. </param> <param name="value"> The object to search for. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements. -or- null to use the <see cref="T:System.IComparable" /> implementation of each element. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in <paramref name="array" />. -or- <paramref name="comparer" /> is null, and <paramref name="value" /> is of a type that is not compatible with the elements of <paramref name="array" />. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, <paramref name="value" /> does not implement the <see cref="T:System.IComparable" /> interface, and the search encounters an element that does not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.BinarySearch(System.Array,System.Object)"> <summary> Searches an entire one-dimensional sorted <see cref="T:System.Array" /> for a specific element, using the <see cref="T:System.IComparable" /> interface implemented by each element of the <see cref="T:System.Array" /> and by the specified object. </summary> <returns> The index of the specified <paramref name="value" /> in the specified <paramref name="array" />, if <paramref name="value" /> is found. If <paramref name="value" /> is not found and <paramref name="value" /> is less than one or more elements in <paramref name="array" />, a negative number which is the bitwise complement of the index of the first element that is larger than <paramref name="value" />. If <paramref name="value" /> is not found and <paramref name="value" /> is greater than any of the elements in <paramref name="array" />, a negative number which is the bitwise complement of (the index of the last element plus 1). </returns> <param name="array"> The sorted one-dimensional <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is of a type that is not compatible with the elements of <paramref name="array" />. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="value" /> does not implement the <see cref="T:System.IComparable" /> interface, and the search encounters an element that does not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.BinarySearch(System.Array,System.Object,System.Collections.IComparer)"> <summary> Searches an entire one-dimensional sorted <see cref="T:System.Array" /> for a value using the specified <see cref="T:System.Collections.IComparer" /> interface. </summary> <returns> The index of the specified <paramref name="value" /> in the specified <paramref name="array" />, if <paramref name="value" /> is found. If <paramref name="value" /> is not found and <paramref name="value" /> is less than one or more elements in <paramref name="array" />, a negative number which is the bitwise complement of the index of the first element that is larger than <paramref name="value" />. If <paramref name="value" /> is not found and <paramref name="value" /> is greater than any of the elements in <paramref name="array" />, a negative number which is the bitwise complement of (the index of the last element plus 1). </returns> <param name="array"> The sorted one-dimensional <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to search for. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements. -or- null to use the <see cref="T:System.IComparable" /> implementation of each element. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparer" /> is null, and <paramref name="value" /> is of a type that is not compatible with the elements of <paramref name="array" />. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, <paramref name="value" /> does not implement the <see cref="T:System.IComparable" /> interface, and the search encounters an element that does not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.BinarySearch``1(``0[],System.Int32,System.Int32,``0)"> <summary> Searches a range of elements in a one-dimensional sorted <see cref="T:System.Array" /> for a value, using the <see cref="T:System.IComparable`1" /> generic interface implemented by each element of the <see cref="T:System.Array" /> and by the specified value. </summary> <returns> The index of the specified <paramref name="value" /> in the specified <paramref name="array" />, if <paramref name="value" /> is found. If <paramref name="value" /> is not found and <paramref name="value" /> is less than one or more elements in <paramref name="array" />, a negative number which is the bitwise complement of the index of the first element that is larger than <paramref name="value" />. If <paramref name="value" /> is not found and <paramref name="value" /> is greater than any of the elements in <paramref name="array" />, a negative number which is the bitwise complement of (the index of the last element plus 1). </returns> <param name="array"> The sorted one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="index"> The starting index of the range to search. </param> <param name="length"> The length of the range to search. </param> <param name="value"> The object to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in <paramref name="array" />. -or- <paramref name="value" /> is of a type that is not compatible with the elements of <paramref name="array" />. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="value" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface, and the search encounters an element that does not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="M:System.Array.BinarySearch``1(``0[],System.Int32,System.Int32,``0,System.Collections.Generic.IComparer{``0})"> <summary> Searches a range of elements in a one-dimensional sorted <see cref="T:System.Array" /> for a value, using the specified <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface. </summary> <returns> The index of the specified <paramref name="value" /> in the specified <paramref name="array" />, if <paramref name="value" /> is found. If <paramref name="value" /> is not found and <paramref name="value" /> is less than one or more elements in <paramref name="array" />, a negative number which is the bitwise complement of the index of the first element that is larger than <paramref name="value" />. If <paramref name="value" /> is not found and <paramref name="value" /> is greater than any of the elements in <paramref name="array" />, a negative number which is the bitwise complement of (the index of the last element plus 1). </returns> <param name="array"> The sorted one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="index"> The starting index of the range to search. </param> <param name="length"> The length of the range to search. </param> <param name="value"> The object to search for. </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing elements. -or- null to use the <see cref="T:System.IComparable`1" /> implementation of each element. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in <paramref name="array" />. -or- <paramref name="comparer" /> is null, and <paramref name="value" /> is of a type that is not compatible with the elements of <paramref name="array" />. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, <paramref name="value" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface, and the search encounters an element that does not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="M:System.Array.BinarySearch``1(``0[],``0)"> <summary> Searches an entire one-dimensional sorted <see cref="T:System.Array" /> for a specific element, using the <see cref="T:System.IComparable`1" /> generic interface implemented by each element of the <see cref="T:System.Array" /> and by the specified object. </summary> <returns> The index of the specified <paramref name="value" /> in the specified <paramref name="array" />, if <paramref name="value" /> is found. If <paramref name="value" /> is not found and <paramref name="value" /> is less than one or more elements in <paramref name="array" />, a negative number which is the bitwise complement of the index of the first element that is larger than <paramref name="value" />. If <paramref name="value" /> is not found and <paramref name="value" /> is greater than any of the elements in <paramref name="array" />, a negative number which is the bitwise complement of (the index of the last element plus 1). </returns> <param name="array"> The sorted one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="value" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface, and the search encounters an element that does not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="M:System.Array.BinarySearch``1(``0[],``0,System.Collections.Generic.IComparer{``0})"> <summary> Searches an entire one-dimensional sorted <see cref="T:System.Array" /> for a value using the specified <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface. </summary> <returns> The index of the specified <paramref name="value" /> in the specified <paramref name="array" />, if <paramref name="value" /> is found. If <paramref name="value" /> is not found and <paramref name="value" /> is less than one or more elements in <paramref name="array" />, a negative number which is the bitwise complement of the index of the first element that is larger than <paramref name="value" />. If <paramref name="value" /> is not found and <paramref name="value" /> is greater than any of the elements in <paramref name="array" />, a negative number which is the bitwise complement of (the index of the last element plus 1). </returns> <param name="array"> The sorted one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to search for. </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing elements. -or- null to use the <see cref="T:System.IComparable`1" /> implementation of each element. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparer" /> is null, and <paramref name="value" /> is of a type that is not compatible with the elements of <paramref name="array" />. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, <paramref name="value" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface, and the search encounters an element that does not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="M:System.Array.Clear(System.Array,System.Int32,System.Int32)"> <summary> Sets a range of elements in the <see cref="T:System.Array" /> to zero, to false, or to null, depending on the element type. </summary> <param name="array"> The <see cref="T:System.Array" /> whose elements need to be cleared. </param> <param name="index"> The starting index of the range of elements to clear. </param> <param name="length"> The number of elements to clear. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. -or- <paramref name="length" /> is less than zero. -or- The sum of <paramref name="index" /> and <paramref name="length" /> is greater than the size of the <see cref="T:System.Array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Clone"> <summary> Creates a shallow copy of the <see cref="T:System.Array" />. </summary> <returns> A shallow copy of the <see cref="T:System.Array" />. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.ConstrainedCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)"> <summary> Copies a range of elements from an <see cref="T:System.Array" /> starting at the specified source index and pastes them to another <see cref="T:System.Array" /> starting at the specified destination index. Guarantees that all changes are undone if the copy does not succeed completely. </summary> <param name="sourceArray"> The <see cref="T:System.Array" /> that contains the data to copy. </param> <param name="sourceIndex"> A 32-bit integer that represents the index in the <paramref name="sourceArray" /> at which copying begins. </param> <param name="destinationArray"> The <see cref="T:System.Array" /> that receives the data. </param> <param name="destinationIndex"> A 32-bit integer that represents the index in the <paramref name="destinationArray" /> at which storing begins. </param> <param name="length"> A 32-bit integer that represents the number of elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sourceArray" /> is null. -or- <paramref name="destinationArray" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="sourceArray" /> and <paramref name="destinationArray" /> have different ranks. </exception> <exception cref="T:System.ArrayTypeMismatchException"> The <paramref name="sourceArray" /> type is neither the same as nor derived from the <paramref name="destinationArray" /> type. </exception> <exception cref="T:System.InvalidCastException"> At least one element in <paramref name="sourceArray" /> cannot be cast to the type of <paramref name="destinationArray" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="sourceIndex" /> is less than the lower bound of the first dimension of <paramref name="sourceArray" />. -or- <paramref name="destinationIndex" /> is less than the lower bound of the first dimension of <paramref name="destinationArray" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="length" /> is greater than the number of elements from <paramref name="sourceIndex" /> to the end of <paramref name="sourceArray" />. -or- <paramref name="length" /> is greater than the number of elements from <paramref name="destinationIndex" /> to the end of <paramref name="destinationArray" />. </exception> </member> <member name="M:System.Array.ConvertAll``2(``0[],System.Converter{``0,``1})"> <summary> Converts an array of one type to an array of another type. </summary> <returns> An array of the target type containing the converted elements from the source array. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to convert to a target type. </param> <param name="converter"> A <see cref="T:System.Converter`2" /> that converts each element from one type to another type. </param> <typeparam name="TInput"> The type of the elements of the source array. </typeparam> <typeparam name="TOutput"> The type of the elements of the target array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="converter" /> is null. </exception> </member> <member name="M:System.Array.Copy(System.Array,System.Array,System.Int32)"> <summary> Copies a range of elements from an <see cref="T:System.Array" /> starting at the first element and pastes them into another <see cref="T:System.Array" /> starting at the first element. The length is specified as a 32-bit integer. </summary> <param name="sourceArray"> The <see cref="T:System.Array" /> that contains the data to copy. </param> <param name="destinationArray"> The <see cref="T:System.Array" /> that receives the data. </param> <param name="length"> A 32-bit integer that represents the number of elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sourceArray" /> is null. -or- <paramref name="destinationArray" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="sourceArray" /> and <paramref name="destinationArray" /> have different ranks. </exception> <exception cref="T:System.ArrayTypeMismatchException"> <paramref name="sourceArray" /> and <paramref name="destinationArray" /> are of incompatible types. </exception> <exception cref="T:System.InvalidCastException"> At least one element in <paramref name="sourceArray" /> cannot be cast to the type of <paramref name="destinationArray" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="length" /> is greater than the number of elements in <paramref name="sourceArray" />. -or- <paramref name="length" /> is greater than the number of elements in <paramref name="destinationArray" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Copy(System.Array,System.Array,System.Int64)"> <summary> Copies a range of elements from an <see cref="T:System.Array" /> starting at the first element and pastes them into another <see cref="T:System.Array" /> starting at the first element. The length is specified as a 64-bit integer. </summary> <param name="sourceArray"> The <see cref="T:System.Array" /> that contains the data to copy. </param> <param name="destinationArray"> The <see cref="T:System.Array" /> that receives the data. </param> <param name="length"> A 64-bit integer that represents the number of elements to copy. The integer must be between zero and <see cref="F:System.Int32.MaxValue" />, inclusive. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sourceArray" /> is null. -or- <paramref name="destinationArray" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="sourceArray" /> and <paramref name="destinationArray" /> have different ranks. </exception> <exception cref="T:System.ArrayTypeMismatchException"> <paramref name="sourceArray" /> and <paramref name="destinationArray" /> are of incompatible types. </exception> <exception cref="T:System.InvalidCastException"> At least one element in <paramref name="sourceArray" /> cannot be cast to the type of <paramref name="destinationArray" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="length" /> is less than 0 or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="length" /> is greater than the number of elements in <paramref name="sourceArray" />. -or- <paramref name="length" /> is greater than the number of elements in <paramref name="destinationArray" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)"> <summary> Copies a range of elements from an <see cref="T:System.Array" /> starting at the specified source index and pastes them to another <see cref="T:System.Array" /> starting at the specified destination index. The length and the indexes are specified as 32-bit integers. </summary> <param name="sourceArray"> The <see cref="T:System.Array" /> that contains the data to copy. </param> <param name="sourceIndex"> A 32-bit integer that represents the index in the <paramref name="sourceArray" /> at which copying begins. </param> <param name="destinationArray"> The <see cref="T:System.Array" /> that receives the data. </param> <param name="destinationIndex"> A 32-bit integer that represents the index in the <paramref name="destinationArray" /> at which storing begins. </param> <param name="length"> A 32-bit integer that represents the number of elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sourceArray" /> is null. -or- <paramref name="destinationArray" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="sourceArray" /> and <paramref name="destinationArray" /> have different ranks. </exception> <exception cref="T:System.ArrayTypeMismatchException"> <paramref name="sourceArray" /> and <paramref name="destinationArray" /> are of incompatible types. </exception> <exception cref="T:System.InvalidCastException"> At least one element in <paramref name="sourceArray" /> cannot be cast to the type of <paramref name="destinationArray" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="sourceIndex" /> is less than the lower bound of the first dimension of <paramref name="sourceArray" />. -or- <paramref name="destinationIndex" /> is less than the lower bound of the first dimension of <paramref name="destinationArray" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="length" /> is greater than the number of elements from <paramref name="sourceIndex" /> to the end of <paramref name="sourceArray" />. -or- <paramref name="length" /> is greater than the number of elements from <paramref name="destinationIndex" /> to the end of <paramref name="destinationArray" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Copy(System.Array,System.Int64,System.Array,System.Int64,System.Int64)"> <summary> Copies a range of elements from an <see cref="T:System.Array" /> starting at the specified source index and pastes them to another <see cref="T:System.Array" /> starting at the specified destination index. The length and the indexes are specified as 64-bit integers. </summary> <param name="sourceArray"> The <see cref="T:System.Array" /> that contains the data to copy. </param> <param name="sourceIndex"> A 64-bit integer that represents the index in the <paramref name="sourceArray" /> at which copying begins. </param> <param name="destinationArray"> The <see cref="T:System.Array" /> that receives the data. </param> <param name="destinationIndex"> A 64-bit integer that represents the index in the <paramref name="destinationArray" /> at which storing begins. </param> <param name="length"> A 64-bit integer that represents the number of elements to copy. The integer must be between zero and <see cref="F:System.Int32.MaxValue" />, inclusive. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sourceArray" /> is null. -or- <paramref name="destinationArray" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="sourceArray" /> and <paramref name="destinationArray" /> have different ranks. </exception> <exception cref="T:System.ArrayTypeMismatchException"> <paramref name="sourceArray" /> and <paramref name="destinationArray" /> are of incompatible types. </exception> <exception cref="T:System.InvalidCastException"> At least one element in <paramref name="sourceArray" /> cannot be cast to the type of <paramref name="destinationArray" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="sourceIndex" /> is outside the range of valid indexes for the <paramref name="sourceArray" />. -or- <paramref name="destinationIndex" /> is outside the range of valid indexes for the <paramref name="destinationArray" />. -or- <paramref name="length" /> is less than 0 or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="length" /> is greater than the number of elements from <paramref name="sourceIndex" /> to the end of <paramref name="sourceArray" />. -or- <paramref name="length" /> is greater than the number of elements from <paramref name="destinationIndex" /> to the end of <paramref name="destinationArray" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.CopyTo(System.Array,System.Int32)"> <summary> Copies all the elements of the current one-dimensional <see cref="T:System.Array" /> to the specified one-dimensional <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index. The index is specified as a 32-bit integer. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the current <see cref="T:System.Array" />. </param> <param name="index"> A 32-bit integer that represents the index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" /> and the source <see cref="T:System.Array" /> has a length greater than 0. -or- The number of elements in the source <see cref="T:System.Array" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.ArrayTypeMismatchException"> The type of the source <see cref="T:System.Array" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <exception cref="T:System.RankException"> The source <see cref="T:System.Array" /> is multidimensional. </exception> <exception cref="T:System.InvalidCastException"> At least one element in the source <see cref="T:System.Array" /> cannot be cast to the type of destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.CopyTo(System.Array,System.Int64)"> <summary> Copies all the elements of the current one-dimensional <see cref="T:System.Array" /> to the specified one-dimensional <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index. The index is specified as a 64-bit integer. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the current <see cref="T:System.Array" />. </param> <param name="index"> A 64-bit integer that represents the index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for <paramref name="array" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" /> and the source <see cref="T:System.Array" /> has a length greater than 0. -or- The number of elements in the source <see cref="T:System.Array" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.ArrayTypeMismatchException"> The type of the source <see cref="T:System.Array" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <exception cref="T:System.RankException"> The source <see cref="T:System.Array" /> is multidimensional. </exception> <exception cref="T:System.InvalidCastException"> At least one element in the source <see cref="T:System.Array" /> cannot be cast to the type of destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.CreateInstance(System.Type,System.Int32)"> <summary> Creates a one-dimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> and length, with zero-based indexing. </summary> <returns> A new one-dimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> with the specified length, using zero-based indexing. </returns> <param name="elementType"> The <see cref="T:System.Type" /> of the <see cref="T:System.Array" /> to create. </param> <param name="length"> The size of the <see cref="T:System.Array" /> to create. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="elementType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="elementType" /> is not a valid <see cref="T:System.Type" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="elementType" /> is not supported. For example, <see cref="T:System.Void" /> is not supported. -or- <paramref name="elementType" /> is an open generic type. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="length" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.CreateInstance(System.Type,System.Int32,System.Int32)"> <summary> Creates a two-dimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> and dimension lengths, with zero-based indexing. </summary> <returns> A new two-dimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> with the specified length for each dimension, using zero-based indexing. </returns> <param name="elementType"> The <see cref="T:System.Type" /> of the <see cref="T:System.Array" /> to create. </param> <param name="length1"> The size of the first dimension of the <see cref="T:System.Array" /> to create. </param> <param name="length2"> The size of the second dimension of the <see cref="T:System.Array" /> to create. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="elementType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="elementType" /> is not a valid <see cref="T:System.Type" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="elementType" /> is not supported. For example, <see cref="T:System.Void" /> is not supported. -or- <paramref name="elementType" /> is an open generic type. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="length1" /> is less than zero. -or- <paramref name="length2" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.CreateInstance(System.Type,System.Int32,System.Int32,System.Int32)"> <summary> Creates a three-dimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> and dimension lengths, with zero-based indexing. </summary> <returns> A new three-dimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> with the specified length for each dimension, using zero-based indexing. </returns> <param name="elementType"> The <see cref="T:System.Type" /> of the <see cref="T:System.Array" /> to create. </param> <param name="length1"> The size of the first dimension of the <see cref="T:System.Array" /> to create. </param> <param name="length2"> The size of the second dimension of the <see cref="T:System.Array" /> to create. </param> <param name="length3"> The size of the third dimension of the <see cref="T:System.Array" /> to create. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="elementType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="elementType" /> is not a valid <see cref="T:System.Type" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="elementType" /> is not supported. For example, <see cref="T:System.Void" /> is not supported. -or- <paramref name="elementType" /> is an open generic type. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="length1" /> is less than zero. -or- <paramref name="length2" /> is less than zero. -or- <paramref name="length3" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.CreateInstance(System.Type,System.Int32[])"> <summary> Creates a multidimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> and dimension lengths, with zero-based indexing. The dimension lengths are specified in an array of 32-bit integers. </summary> <returns> A new multidimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> with the specified length for each dimension, using zero-based indexing. </returns> <param name="elementType"> The <see cref="T:System.Type" /> of the <see cref="T:System.Array" /> to create. </param> <param name="lengths"> An array of 32-bit integers that represent the size of each dimension of the <see cref="T:System.Array" /> to create. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="elementType" /> is null. -or- <paramref name="lengths" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="elementType" /> is not a valid <see cref="T:System.Type" />. -or- The <paramref name="lengths" /> array contains less than one element. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="elementType" /> is not supported. For example, <see cref="T:System.Void" /> is not supported. -or- <paramref name="elementType" /> is an open generic type. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Any value in <paramref name="lengths" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.CreateInstance(System.Type,System.Int32[],System.Int32[])"> <summary> Creates a multidimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> and dimension lengths, with the specified lower bounds. </summary> <returns> A new multidimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> with the specified length and lower bound for each dimension. </returns> <param name="elementType"> The <see cref="T:System.Type" /> of the <see cref="T:System.Array" /> to create. </param> <param name="lengths"> A one-dimensional array that contains the size of each dimension of the <see cref="T:System.Array" /> to create. </param> <param name="lowerBounds"> A one-dimensional array that contains the lower bound (starting index) of each dimension of the <see cref="T:System.Array" /> to create. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="elementType" /> is null. -or- <paramref name="lengths" /> is null. -or- <paramref name="lowerBounds" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="elementType" /> is not a valid <see cref="T:System.Type" />. -or- The <paramref name="lengths" /> array contains less than one element. -or- The <paramref name="lengths" /> and <paramref name="lowerBounds" /> arrays do not contain the same number of elements. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="elementType" /> is not supported. For example, <see cref="T:System.Void" /> is not supported. -or- <paramref name="elementType" /> is an open generic type. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Any value in <paramref name="lengths" /> is less than zero. -or- Any value in <paramref name="lowerBounds" /> is very large, such that the sum of a dimension's lower bound and length is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.CreateInstance(System.Type,System.Int64[])"> <summary> Creates a multidimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> and dimension lengths, with zero-based indexing. The dimension lengths are specified in an array of 64-bit integers. </summary> <returns> A new multidimensional <see cref="T:System.Array" /> of the specified <see cref="T:System.Type" /> with the specified length for each dimension, using zero-based indexing. </returns> <param name="elementType"> The <see cref="T:System.Type" /> of the <see cref="T:System.Array" /> to create. </param> <param name="lengths"> An array of 64-bit integers that represent the size of each dimension of the <see cref="T:System.Array" /> to create. Each integer in the array must be between zero and <see cref="F:System.Int32.MaxValue" />, inclusive. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="elementType" /> is null. -or- <paramref name="lengths" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="elementType" /> is not a valid <see cref="T:System.Type" />. -or- The <paramref name="lengths" /> array contains less than one element. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="elementType" /> is not supported. For example, <see cref="T:System.Void" /> is not supported. -or- <paramref name="elementType" /> is an open generic type. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Any value in <paramref name="lengths" /> is less than zero or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Exists``1(``0[],System.Predicate{``0})"> <summary> Determines whether the specified array contains elements that match the conditions defined by the specified predicate. </summary> <returns>true if <paramref name="array" /> contains one or more elements that match the conditions defined by the specified predicate; otherwise, false. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions of the elements to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> </member> <member name="M:System.Array.Find``1(``0[],System.Predicate{``0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire <see cref="T:System.Array" />. </summary> <returns> The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T" />. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions of the element to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> </member> <member name="M:System.Array.FindAll``1(``0[],System.Predicate{``0})"> <summary> Retrieves all the elements that match the conditions defined by the specified predicate. </summary> <returns> An <see cref="T:System.Array" /> containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty <see cref="T:System.Array" />. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions of the elements to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> </member> <member name="M:System.Array.FindIndex``1(``0[],System.Int32,System.Int32,System.Predicate{``0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Array" /> that starts at the specified index and contains the specified number of elements. </summary> <returns> The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="count"> The number of elements in the section to search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions of the element to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="array" />. </exception> </member> <member name="M:System.Array.FindIndex``1(``0[],System.Int32,System.Predicate{``0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Array" /> that extends from the specified index to the last element. </summary> <returns> The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions of the element to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. </exception> </member> <member name="M:System.Array.FindIndex``1(``0[],System.Predicate{``0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Array" />. </summary> <returns> The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions of the element to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> </member> <member name="M:System.Array.FindLast``1(``0[],System.Predicate{``0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire <see cref="T:System.Array" />. </summary> <returns> The last element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T" />. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions of the element to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> </member> <member name="M:System.Array.FindLastIndex``1(``0[],System.Int32,System.Int32,System.Predicate{``0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Array" /> that contains the specified number of elements and ends at the specified index. </summary> <returns> The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="count"> The number of elements in the section to search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions of the element to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="array" />. </exception> </member> <member name="M:System.Array.FindLastIndex``1(``0[],System.Int32,System.Predicate{``0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Array" /> that extends from the first element to the specified index. </summary> <returns> The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions of the element to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. </exception> </member> <member name="M:System.Array.FindLastIndex``1(``0[],System.Predicate{``0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire <see cref="T:System.Array" />. </summary> <returns> The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions of the element to search for. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> </member> <member name="M:System.Array.ForEach``1(``0[],System.Action{``0})"> <summary> Performs the specified action on each element of the specified array. </summary> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> on whose elements the action is to be performed. </param> <param name="action"> The <see cref="T:System.Action`1" /> to perform on each element of <paramref name="array" />. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="action" /> is null. </exception> </member> <member name="M:System.Array.GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Array" />. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Array" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.GetLength(System.Int32)"> <summary> Gets a 32-bit integer that represents the number of elements in the specified dimension of the <see cref="T:System.Array" />. </summary> <returns> A 32-bit integer that represents the number of elements in the specified dimension. </returns> <param name="dimension"> A zero-based dimension of the <see cref="T:System.Array" /> whose length needs to be determined. </param> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="dimension" /> is less than zero. -or- <paramref name="dimension" /> is equal to or greater than <see cref="P:System.Array.Rank" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.GetLongLength(System.Int32)"> <summary> Gets a 64-bit integer that represents the number of elements in the specified dimension of the <see cref="T:System.Array" />. </summary> <returns> A 64-bit integer that represents the number of elements in the specified dimension. </returns> <param name="dimension"> A zero-based dimension of the <see cref="T:System.Array" /> whose length needs to be determined. </param> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="dimension" /> is less than zero. -or- <paramref name="dimension" /> is equal to or greater than <see cref="P:System.Array.Rank" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.GetLowerBound(System.Int32)"> <summary> Gets the lower bound of the specified dimension in the <see cref="T:System.Array" />. </summary> <returns> The lower bound of the specified dimension in the <see cref="T:System.Array" />. </returns> <param name="dimension"> A zero-based dimension of the <see cref="T:System.Array" /> whose lower bound needs to be determined. </param> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="dimension" /> is less than zero. -or- <paramref name="dimension" /> is equal to or greater than <see cref="P:System.Array.Rank" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.GetUpperBound(System.Int32)"> <summary> Gets the upper bound of the specified dimension in the <see cref="T:System.Array" />. </summary> <returns> The upper bound of the specified dimension in the <see cref="T:System.Array" />. </returns> <param name="dimension"> A zero-based dimension of the <see cref="T:System.Array" /> whose upper bound needs to be determined. </param> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="dimension" /> is less than zero. -or- <paramref name="dimension" /> is equal to or greater than <see cref="P:System.Array.Rank" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.GetValue(System.Int32)"> <summary> Gets the value at the specified position in the one-dimensional <see cref="T:System.Array" />. The index is specified as a 32-bit integer. </summary> <returns> The value at the specified position in the one-dimensional <see cref="T:System.Array" />. </returns> <param name="index"> A 32-bit integer that represents the position of the <see cref="T:System.Array" /> element to get. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly one dimension. </exception> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the current <see cref="T:System.Array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.GetValue(System.Int32,System.Int32)"> <summary> Gets the value at the specified position in the two-dimensional <see cref="T:System.Array" />. The indexes are specified as 32-bit integers. </summary> <returns> The value at the specified position in the two-dimensional <see cref="T:System.Array" />. </returns> <param name="index1"> A 32-bit integer that represents the first-dimension index of the <see cref="T:System.Array" /> element to get. </param> <param name="index2"> A 32-bit integer that represents the second-dimension index of the <see cref="T:System.Array" /> element to get. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly two dimensions. </exception> <exception cref="T:System.IndexOutOfRangeException"> Either <paramref name="index1" /> or <paramref name="index2" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.GetValue(System.Int32,System.Int32,System.Int32)"> <summary> Gets the value at the specified position in the three-dimensional <see cref="T:System.Array" />. The indexes are specified as 32-bit integers. </summary> <returns> The value at the specified position in the three-dimensional <see cref="T:System.Array" />. </returns> <param name="index1"> A 32-bit integer that represents the first-dimension index of the <see cref="T:System.Array" /> element to get. </param> <param name="index2"> A 32-bit integer that represents the second-dimension index of the <see cref="T:System.Array" /> element to get. </param> <param name="index3"> A 32-bit integer that represents the third-dimension index of the <see cref="T:System.Array" /> element to get. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly three dimensions. </exception> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="index1" /> or <paramref name="index2" /> or <paramref name="index3" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.GetValue(System.Int32[])"> <summary> Gets the value at the specified position in the multidimensional <see cref="T:System.Array" />. The indexes are specified as an array of 32-bit integers. </summary> <returns> The value at the specified position in the multidimensional <see cref="T:System.Array" />. </returns> <param name="indices"> A one-dimensional array of 32-bit integers that represent the indexes specifying the position of the <see cref="T:System.Array" /> element to get. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="indices" /> is null. </exception> <exception cref="T:System.ArgumentException"> The number of dimensions in the current <see cref="T:System.Array" /> is not equal to the number of elements in <paramref name="indices" />. </exception> <exception cref="T:System.IndexOutOfRangeException"> Any element in <paramref name="indices" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.GetValue(System.Int64)"> <summary> Gets the value at the specified position in the one-dimensional <see cref="T:System.Array" />. The index is specified as a 64-bit integer. </summary> <returns> The value at the specified position in the one-dimensional <see cref="T:System.Array" />. </returns> <param name="index"> A 64-bit integer that represents the position of the <see cref="T:System.Array" /> element to get. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly one dimension. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the current <see cref="T:System.Array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.GetValue(System.Int64,System.Int64)"> <summary> Gets the value at the specified position in the two-dimensional <see cref="T:System.Array" />. The indexes are specified as 64-bit integers. </summary> <returns> The value at the specified position in the two-dimensional <see cref="T:System.Array" />. </returns> <param name="index1"> A 64-bit integer that represents the first-dimension index of the <see cref="T:System.Array" /> element to get. </param> <param name="index2"> A 64-bit integer that represents the second-dimension index of the <see cref="T:System.Array" /> element to get. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly two dimensions. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Either <paramref name="index1" /> or <paramref name="index2" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.GetValue(System.Int64,System.Int64,System.Int64)"> <summary> Gets the value at the specified position in the three-dimensional <see cref="T:System.Array" />. The indexes are specified as 64-bit integers. </summary> <returns> The value at the specified position in the three-dimensional <see cref="T:System.Array" />. </returns> <param name="index1"> A 64-bit integer that represents the first-dimension index of the <see cref="T:System.Array" /> element to get. </param> <param name="index2"> A 64-bit integer that represents the second-dimension index of the <see cref="T:System.Array" /> element to get. </param> <param name="index3"> A 64-bit integer that represents the third-dimension index of the <see cref="T:System.Array" /> element to get. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly three dimensions. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index1" /> or <paramref name="index2" /> or <paramref name="index3" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.GetValue(System.Int64[])"> <summary> Gets the value at the specified position in the multidimensional <see cref="T:System.Array" />. The indexes are specified as an array of 64-bit integers. </summary> <returns> The value at the specified position in the multidimensional <see cref="T:System.Array" />. </returns> <param name="indices"> A one-dimensional array of 64-bit integers that represent the indexes specifying the position of the <see cref="T:System.Array" /> element to get. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="indices" /> is null. </exception> <exception cref="T:System.ArgumentException"> The number of dimensions in the current <see cref="T:System.Array" /> is not equal to the number of elements in <paramref name="indices" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Any element in <paramref name="indices" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.IndexOf(System.Array,System.Object)"> <summary> Searches for the specified object and returns the index of the first occurrence within the entire one-dimensional <see cref="T:System.Array" />. </summary> <returns> The index of the first occurrence of <paramref name="value" /> within the entire <paramref name="array" />, if found; otherwise, the lower bound of the array minus 1. </returns> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.IndexOf(System.Array,System.Object,System.Int32)"> <summary> Searches for the specified object and returns the index of the first occurrence within the range of elements in the one-dimensional <see cref="T:System.Array" /> that extends from the specified index to the last element. </summary> <returns> The index of the first occurrence of <paramref name="value" /> within the range of elements in <paramref name="array" /> that extends from <paramref name="startIndex" /> to the last element, if found; otherwise, the lower bound of the array minus 1. </returns> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <param name="startIndex"> The starting index of the search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.IndexOf(System.Array,System.Object,System.Int32,System.Int32)"> <summary> Searches for the specified object and returns the index of the first occurrence within the range of elements in the one-dimensional <see cref="T:System.Array" /> that starts at the specified index and contains the specified number of elements. </summary> <returns> The index of the first occurrence of <paramref name="value" /> within the range of elements in <paramref name="array" /> that starts at <paramref name="startIndex" /> and contains the number of elements specified in <paramref name="count" />, if found; otherwise, the lower bound of the array minus 1. </returns> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <param name="startIndex"> The starting index of the search. </param> <param name="count"> The number of elements in the section to search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="array" />. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.IndexOf``1(``0[],``0)"> <summary> Searches for the specified object and returns the index of the first occurrence within the entire <see cref="T:System.Array" />. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the entire <paramref name="array" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> </member> <member name="M:System.Array.IndexOf``1(``0[],``0,System.Int32)"> <summary> Searches for the specified object and returns the index of the first occurrence within the range of elements in the <see cref="T:System.Array" /> that extends from the specified index to the last element. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the range of elements in <paramref name="array" /> that extends from <paramref name="startIndex" /> to the last element, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. </exception> </member> <member name="M:System.Array.IndexOf``1(``0[],``0,System.Int32,System.Int32)"> <summary> Searches for the specified object and returns the index of the first occurrence within the range of elements in the <see cref="T:System.Array" /> that starts at the specified index and contains the specified number of elements. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the range of elements in <paramref name="array" /> that starts at <paramref name="startIndex" /> and contains the number of elements specified in <paramref name="count" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="count"> The number of elements in the section to search. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="array" />. </exception> </member> <member name="M:System.Array.Initialize"> <summary> Initializes every element of the value-type <see cref="T:System.Array" /> by calling the default constructor of the value type. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.Array.IsFixedSize"> <summary> Gets a value indicating whether the <see cref="T:System.Array" /> has a fixed size. </summary> <returns> This property is always true for all arrays. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Array.IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Array" /> is read-only. </summary> <returns> This property is always false for all arrays. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Array.IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Array" /> is synchronized (thread safe). </summary> <returns> This property is always false for all arrays. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Array.LastIndexOf(System.Array,System.Object)"> <summary> Searches for the specified object and returns the index of the last occurrence within the entire one-dimensional <see cref="T:System.Array" />. </summary> <returns> The index of the last occurrence of <paramref name="value" /> within the entire <paramref name="array" />, if found; otherwise, the lower bound of the array minus 1. </returns> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.LastIndexOf(System.Array,System.Object,System.Int32)"> <summary> Searches for the specified object and returns the index of the last occurrence within the range of elements in the one-dimensional <see cref="T:System.Array" /> that extends from the first element to the specified index. </summary> <returns> The index of the last occurrence of <paramref name="value" /> within the range of elements in <paramref name="array" /> that extends from the first element to <paramref name="startIndex" />, if found; otherwise, the lower bound of the array minus 1. </returns> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <param name="startIndex"> The starting index of the backward search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.LastIndexOf(System.Array,System.Object,System.Int32,System.Int32)"> <summary> Searches for the specified object and returns the index of the last occurrence within the range of elements in the one-dimensional <see cref="T:System.Array" /> that contains the specified number of elements and ends at the specified index. </summary> <returns> The index of the last occurrence of <paramref name="value" /> within the range of elements in <paramref name="array" /> that contains the number of elements specified in <paramref name="count" /> and ends at <paramref name="startIndex" />, if found; otherwise, the lower bound of the array minus 1. </returns> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <param name="startIndex"> The starting index of the backward search. </param> <param name="count"> The number of elements in the section to search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="array" />. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.LastIndexOf``1(``0[],``0)"> <summary> Searches for the specified object and returns the index of the last occurrence within the entire <see cref="T:System.Array" />. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the entire <paramref name="array" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> </member> <member name="M:System.Array.LastIndexOf``1(``0[],``0,System.Int32)"> <summary> Searches for the specified object and returns the index of the last occurrence within the range of elements in the <see cref="T:System.Array" /> that extends from the first element to the specified index. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the range of elements in <paramref name="array" /> that extends from the first element to <paramref name="startIndex" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. </exception> </member> <member name="M:System.Array.LastIndexOf``1(``0[],``0,System.Int32,System.Int32)"> <summary> Searches for the specified object and returns the index of the last occurrence within the range of elements in the <see cref="T:System.Array" /> that contains the specified number of elements and ends at the specified index. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the range of elements in <paramref name="array" /> that contains the number of elements specified in <paramref name="count" /> and ends at <paramref name="startIndex" />, if found; otherwise, –1. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to search. </param> <param name="value"> The object to locate in <paramref name="array" />. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="count"> The number of elements in the section to search. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="array" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="array" />. </exception> </member> <member name="P:System.Array.Length"> <summary> Gets a 32-bit integer that represents the total number of elements in all the dimensions of the <see cref="T:System.Array" />. </summary> <returns> A 32-bit integer that represents the total number of elements in all the dimensions of the <see cref="T:System.Array" />. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Array.LongLength"> <summary> Gets a 64-bit integer that represents the total number of elements in all the dimensions of the <see cref="T:System.Array" />. </summary> <returns> A 64-bit integer that represents the total number of elements in all the dimensions of the <see cref="T:System.Array" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Array.Rank"> <summary> Gets the rank (number of dimensions) of the <see cref="T:System.Array" />. </summary> <returns> The rank (number of dimensions) of the <see cref="T:System.Array" />. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Resize``1(``0[]@,System.Int32)"> <summary> Changes the size of an array to the specified new size. </summary> <param name="array"> The one-dimensional, zero-based array to resize, or null to create a new array with the specified size. </param> <param name="newSize"> The size of the new array. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="newSize" /> is less than zero. </exception> </member> <member name="M:System.Array.Reverse(System.Array)"> <summary> Reverses the sequence of the elements in the entire one-dimensional <see cref="T:System.Array" />. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to reverse. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Reverse(System.Array,System.Int32,System.Int32)"> <summary> Reverses the sequence of the elements in a range of elements in the one-dimensional <see cref="T:System.Array" />. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to reverse. </param> <param name="index"> The starting index of the section to reverse. </param> <param name="length"> The number of elements in the section to reverse. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in <paramref name="array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.SetValue(System.Object,System.Int32)"> <summary> Sets a value to the element at the specified position in the one-dimensional <see cref="T:System.Array" />. The index is specified as a 32-bit integer. </summary> <param name="value"> The new value for the specified element. </param> <param name="index"> A 32-bit integer that represents the position of the <see cref="T:System.Array" /> element to set. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly one dimension. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> cannot be cast to the element type of the current <see cref="T:System.Array" />. </exception> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the current <see cref="T:System.Array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.SetValue(System.Object,System.Int32,System.Int32)"> <summary> Sets a value to the element at the specified position in the two-dimensional <see cref="T:System.Array" />. The indexes are specified as 32-bit integers. </summary> <param name="value"> The new value for the specified element. </param> <param name="index1"> A 32-bit integer that represents the first-dimension index of the <see cref="T:System.Array" /> element to set. </param> <param name="index2"> A 32-bit integer that represents the second-dimension index of the <see cref="T:System.Array" /> element to set. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly two dimensions. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> cannot be cast to the element type of the current <see cref="T:System.Array" />. </exception> <exception cref="T:System.IndexOutOfRangeException"> Either <paramref name="index1" /> or <paramref name="index2" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.SetValue(System.Object,System.Int32,System.Int32,System.Int32)"> <summary> Sets a value to the element at the specified position in the three-dimensional <see cref="T:System.Array" />. The indexes are specified as 32-bit integers. </summary> <param name="value"> The new value for the specified element. </param> <param name="index1"> A 32-bit integer that represents the first-dimension index of the <see cref="T:System.Array" /> element to set. </param> <param name="index2"> A 32-bit integer that represents the second-dimension index of the <see cref="T:System.Array" /> element to set. </param> <param name="index3"> A 32-bit integer that represents the third-dimension index of the <see cref="T:System.Array" /> element to set. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly three dimensions. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> cannot be cast to the element type of the current <see cref="T:System.Array" />. </exception> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="index1" /> or <paramref name="index2" /> or <paramref name="index3" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.SetValue(System.Object,System.Int32[])"> <summary> Sets a value to the element at the specified position in the multidimensional <see cref="T:System.Array" />. The indexes are specified as an array of 32-bit integers. </summary> <param name="value"> The new value for the specified element. </param> <param name="indices"> A one-dimensional array of 32-bit integers that represent the indexes specifying the position of the element to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="indices" /> is null. </exception> <exception cref="T:System.ArgumentException"> The number of dimensions in the current <see cref="T:System.Array" /> is not equal to the number of elements in <paramref name="indices" />. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> cannot be cast to the element type of the current <see cref="T:System.Array" />. </exception> <exception cref="T:System.IndexOutOfRangeException"> Any element in <paramref name="indices" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.SetValue(System.Object,System.Int64)"> <summary> Sets a value to the element at the specified position in the one-dimensional <see cref="T:System.Array" />. The index is specified as a 64-bit integer. </summary> <param name="value"> The new value for the specified element. </param> <param name="index"> A 64-bit integer that represents the position of the <see cref="T:System.Array" /> element to set. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly one dimension. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> cannot be cast to the element type of the current <see cref="T:System.Array" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the current <see cref="T:System.Array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.SetValue(System.Object,System.Int64,System.Int64)"> <summary> Sets a value to the element at the specified position in the two-dimensional <see cref="T:System.Array" />. The indexes are specified as 64-bit integers. </summary> <param name="value"> The new value for the specified element. </param> <param name="index1"> A 64-bit integer that represents the first-dimension index of the <see cref="T:System.Array" /> element to set. </param> <param name="index2"> A 64-bit integer that represents the second-dimension index of the <see cref="T:System.Array" /> element to set. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly two dimensions. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> cannot be cast to the element type of the current <see cref="T:System.Array" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Either <paramref name="index1" /> or <paramref name="index2" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.SetValue(System.Object,System.Int64,System.Int64,System.Int64)"> <summary> Sets a value to the element at the specified position in the three-dimensional <see cref="T:System.Array" />. The indexes are specified as 64-bit integers. </summary> <param name="value"> The new value for the specified element. </param> <param name="index1"> A 64-bit integer that represents the first-dimension index of the <see cref="T:System.Array" /> element to set. </param> <param name="index2"> A 64-bit integer that represents the second-dimension index of the <see cref="T:System.Array" /> element to set. </param> <param name="index3"> A 64-bit integer that represents the third-dimension index of the <see cref="T:System.Array" /> element to set. </param> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly three dimensions. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> cannot be cast to the element type of the current <see cref="T:System.Array" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index1" /> or <paramref name="index2" /> or <paramref name="index3" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.SetValue(System.Object,System.Int64[])"> <summary> Sets a value to the element at the specified position in the multidimensional <see cref="T:System.Array" />. The indexes are specified as an array of 64-bit integers. </summary> <param name="value"> The new value for the specified element. </param> <param name="indices"> A one-dimensional array of 64-bit integers that represent the indexes specifying the position of the element to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="indices" /> is null. </exception> <exception cref="T:System.ArgumentException"> The number of dimensions in the current <see cref="T:System.Array" /> is not equal to the number of elements in <paramref name="indices" />. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> cannot be cast to the element type of the current <see cref="T:System.Array" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Any element in <paramref name="indices" /> is outside the range of valid indexes for the corresponding dimension of the current <see cref="T:System.Array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Sort(System.Array)"> <summary> Sorts the elements in an entire one-dimensional <see cref="T:System.Array" /> using the <see cref="T:System.IComparable" /> implementation of each element of the <see cref="T:System.Array" />. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to sort. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <exception cref="T:System.InvalidOperationException"> One or more elements in <paramref name="array" /> do not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Sort(System.Array,System.Array)"> <summary> Sorts a pair of one-dimensional <see cref="T:System.Array" /> objects (one contains the keys and the other contains the corresponding items) based on the keys in the first <see cref="T:System.Array" /> using the <see cref="T:System.IComparable" /> implementation of each key. </summary> <param name="keys"> The one-dimensional <see cref="T:System.Array" /> that contains the keys to sort. </param> <param name="items"> The one-dimensional <see cref="T:System.Array" /> that contains the items that correspond to each of the keys in the <paramref name="keys" /><see cref="T:System.Array" />. -or- null to sort only the <paramref name="keys" /><see cref="T:System.Array" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="keys" /> is null. </exception> <exception cref="T:System.RankException"> The <paramref name="keys" /><see cref="T:System.Array" /> is multidimensional. -or- The <paramref name="items" /><see cref="T:System.Array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentException"> <paramref name="items" /> is not null, and the lower bound of <paramref name="keys" /> does not match the lower bound of <paramref name="items" />. -or- <paramref name="items" /> is not null, and the length of <paramref name="keys" /> does not match the length of <paramref name="items" />. </exception> <exception cref="T:System.InvalidOperationException"> One or more elements in the <paramref name="keys" /><see cref="T:System.Array" /> do not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Sort(System.Array,System.Array,System.Collections.IComparer)"> <summary> Sorts a pair of one-dimensional <see cref="T:System.Array" /> objects (one contains the keys and the other contains the corresponding items) based on the keys in the first <see cref="T:System.Array" /> using the specified <see cref="T:System.Collections.IComparer" />. </summary> <param name="keys"> The one-dimensional <see cref="T:System.Array" /> that contains the keys to sort. </param> <param name="items"> The one-dimensional <see cref="T:System.Array" /> that contains the items that correspond to each of the keys in the <paramref name="keys" /><see cref="T:System.Array" />. -or- null to sort only the <paramref name="keys" /><see cref="T:System.Array" />. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements. -or- null to use the <see cref="T:System.IComparable" /> implementation of each element. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="keys" /> is null. </exception> <exception cref="T:System.RankException"> The <paramref name="keys" /><see cref="T:System.Array" /> is multidimensional. -or- The <paramref name="items" /><see cref="T:System.Array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentException"> <paramref name="items" /> is not null, and the lower bound of <paramref name="keys" /> does not match the lower bound of <paramref name="items" />. -or- <paramref name="items" /> is not null, and the length of <paramref name="keys" /> does not match the length of <paramref name="items" />. -or- The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and one or more elements in the <paramref name="keys" /><see cref="T:System.Array" /> do not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Sort(System.Array,System.Array,System.Int32,System.Int32)"> <summary> Sorts a range of elements in a pair of one-dimensional <see cref="T:System.Array" /> objects (one contains the keys and the other contains the corresponding items) based on the keys in the first <see cref="T:System.Array" /> using the <see cref="T:System.IComparable" /> implementation of each key. </summary> <param name="keys"> The one-dimensional <see cref="T:System.Array" /> that contains the keys to sort. </param> <param name="items"> The one-dimensional <see cref="T:System.Array" /> that contains the items that correspond to each of the keys in the <paramref name="keys" /><see cref="T:System.Array" />. -or- null to sort only the <paramref name="keys" /><see cref="T:System.Array" />. </param> <param name="index"> The starting index of the range to sort. </param> <param name="length"> The number of elements in the range to sort. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="keys" /> is null. </exception> <exception cref="T:System.RankException"> The <paramref name="keys" /><see cref="T:System.Array" /> is multidimensional. -or- The <paramref name="items" /><see cref="T:System.Array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="keys" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="items" /> is not null, and the lower bound of <paramref name="keys" /> does not match the lower bound of <paramref name="items" />. -or- <paramref name="items" /> is not null, and the length of <paramref name="keys" /> does not match the length of <paramref name="items" />. -or- <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in the <paramref name="keys" /><see cref="T:System.Array" />. -or- <paramref name="items" /> is not null, and <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in the <paramref name="items" /><see cref="T:System.Array" />. </exception> <exception cref="T:System.InvalidOperationException"> One or more elements in the <paramref name="keys" /><see cref="T:System.Array" /> do not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Sort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer)"> <summary> Sorts a range of elements in a pair of one-dimensional <see cref="T:System.Array" /> objects (one contains the keys and the other contains the corresponding items) based on the keys in the first <see cref="T:System.Array" /> using the specified <see cref="T:System.Collections.IComparer" />. </summary> <param name="keys"> The one-dimensional <see cref="T:System.Array" /> that contains the keys to sort. </param> <param name="items"> The one-dimensional <see cref="T:System.Array" /> that contains the items that correspond to each of the keys in the <paramref name="keys" /><see cref="T:System.Array" />. -or- null to sort only the <paramref name="keys" /><see cref="T:System.Array" />. </param> <param name="index"> The starting index of the range to sort. </param> <param name="length"> The number of elements in the range to sort. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements. -or- null to use the <see cref="T:System.IComparable" /> implementation of each element. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="keys" /> is null. </exception> <exception cref="T:System.RankException"> The <paramref name="keys" /><see cref="T:System.Array" /> is multidimensional. -or- The <paramref name="items" /><see cref="T:System.Array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="keys" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="items" /> is not null, and the lower bound of <paramref name="keys" /> does not match the lower bound of <paramref name="items" />. -or- <paramref name="items" /> is not null, and the length of <paramref name="keys" /> does not match the length of <paramref name="items" />. -or- <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in the <paramref name="keys" /><see cref="T:System.Array" />. -or- <paramref name="items" /> is not null, and <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in the <paramref name="items" /><see cref="T:System.Array" />. -or- The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and one or more elements in the <paramref name="keys" /><see cref="T:System.Array" /> do not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Sort(System.Array,System.Collections.IComparer)"> <summary> Sorts the elements in a one-dimensional <see cref="T:System.Array" /> using the specified <see cref="T:System.Collections.IComparer" />. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to sort. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements. -or- null to use the <see cref="T:System.IComparable" /> implementation of each element. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and one or more elements in <paramref name="array" /> do not implement the <see cref="T:System.IComparable" /> interface. </exception> <exception cref="T:System.ArgumentException"> The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Sort(System.Array,System.Int32,System.Int32)"> <summary> Sorts the elements in a range of elements in a one-dimensional <see cref="T:System.Array" /> using the <see cref="T:System.IComparable" /> implementation of each element of the <see cref="T:System.Array" />. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to sort. </param> <param name="index"> The starting index of the range to sort. </param> <param name="length"> The number of elements in the range to sort. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in <paramref name="array" />. </exception> <exception cref="T:System.InvalidOperationException"> One or more elements in <paramref name="array" /> do not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Sort(System.Array,System.Int32,System.Int32,System.Collections.IComparer)"> <summary> Sorts the elements in a range of elements in a one-dimensional <see cref="T:System.Array" /> using the specified <see cref="T:System.Collections.IComparer" />. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> to sort. </param> <param name="index"> The starting index of the range to sort. </param> <param name="length"> The number of elements in the range to sort. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements. -or- null to use the <see cref="T:System.IComparable" /> implementation of each element. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.RankException"> <paramref name="array" /> is multidimensional. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in <paramref name="array" />. -or- The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and one or more elements in <paramref name="array" /> do not implement the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Array.Sort``1(``0[])"> <summary> Sorts the elements in an entire <see cref="T:System.Array" /> using the <see cref="T:System.IComparable`1" /> generic interface implementation of each element of the <see cref="T:System.Array" />. </summary> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to sort. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> One or more elements in <paramref name="array" /> do not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="M:System.Array.Sort``1(``0[],System.Collections.Generic.IComparer{``0})"> <summary> Sorts the elements in an <see cref="T:System.Array" /> using the specified <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface. </summary> <param name="array"> The one-dimensional, zero-base <see cref="T:System.Array" /> to sort </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface implementation to use when comparing elements, or null to use the <see cref="T:System.IComparable`1" /> generic interface implementation of each element. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and one or more elements in <paramref name="array" /> do not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> <exception cref="T:System.ArgumentException"> The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself. </exception> </member> <member name="M:System.Array.Sort``1(``0[],System.Comparison{``0})"> <summary> Sorts the elements in an <see cref="T:System.Array" /> using the specified <see cref="T:System.Comparison`1" />. </summary> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to sort </param> <param name="comparison"> The <see cref="T:System.Comparison`1" /> to use when comparing elements. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="comparison" /> is null. </exception> <exception cref="T:System.ArgumentException"> The implementation of <paramref name="comparison" /> caused an error during the sort. For example, <paramref name="comparison" /> might not return 0 when comparing an item with itself. </exception> </member> <member name="M:System.Array.Sort``1(``0[],System.Int32,System.Int32)"> <summary> Sorts the elements in a range of elements in an <see cref="T:System.Array" /> using the <see cref="T:System.IComparable`1" /> generic interface implementation of each element of the <see cref="T:System.Array" />. </summary> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to sort </param> <param name="index"> The starting index of the range to sort. </param> <param name="length"> The number of elements in the range to sort. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in <paramref name="array" />. </exception> <exception cref="T:System.InvalidOperationException"> One or more elements in <paramref name="array" /> do not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="M:System.Array.Sort``1(``0[],System.Int32,System.Int32,System.Collections.Generic.IComparer{``0})"> <summary> Sorts the elements in a range of elements in an <see cref="T:System.Array" /> using the specified <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface. </summary> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to sort. </param> <param name="index"> The starting index of the range to sort. </param> <param name="length"> The number of elements in the range to sort. </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface implementation to use when comparing elements, or null to use the <see cref="T:System.IComparable`1" /> generic interface implementation of each element. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in <paramref name="array" />. -or- The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and one or more elements in <paramref name="array" /> do not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="M:System.Array.Sort``2(``0[],``1[])"> <summary> Sorts a pair of <see cref="T:System.Array" /> objects (one contains the keys and the other contains the corresponding items) based on the keys in the first <see cref="T:System.Array" /> using the <see cref="T:System.IComparable`1" /> generic interface implementation of each key. </summary> <param name="keys"> The one-dimensional, zero-based <see cref="T:System.Array" /> that contains the keys to sort. </param> <param name="items"> The one-dimensional, zero-based <see cref="T:System.Array" /> that contains the items that correspond to the keys in <paramref name="keys" />, or null to sort only <paramref name="keys" />. </param> <typeparam name="TKey"> The type of the elements of the key array. </typeparam> <typeparam name="TValue"> The type of the elements of the items array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="keys" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="items" /> is not null, and the lower bound of <paramref name="keys" /> does not match the lower bound of <paramref name="items" />. -or- <paramref name="items" /> is not null, and the length of <paramref name="keys" /> does not match the length of <paramref name="items" />. </exception> <exception cref="T:System.InvalidOperationException"> One or more elements in the <paramref name="keys" /><see cref="T:System.Array" /> do not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="M:System.Array.Sort``2(``0[],``1[],System.Collections.Generic.IComparer{``0})"> <summary> Sorts a pair of <see cref="T:System.Array" /> objects (one contains the keys and the other contains the corresponding items) based on the keys in the first <see cref="T:System.Array" /> using the specified <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface. </summary> <param name="keys"> The one-dimensional, zero-based <see cref="T:System.Array" /> that contains the keys to sort. </param> <param name="items"> The one-dimensional, zero-based <see cref="T:System.Array" /> that contains the items that correspond to the keys in <paramref name="keys" />, or null to sort only <paramref name="keys" />. </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface implementation to use when comparing elements, or null to use the <see cref="T:System.IComparable`1" /> generic interface implementation of each element. </param> <typeparam name="TKey"> The type of the elements of the key array. </typeparam> <typeparam name="TValue"> The type of the elements of the items array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="keys" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="items" /> is not null, and the lower bound of <paramref name="keys" /> does not match the lower bound of <paramref name="items" />. -or- <paramref name="items" /> is not null, and the length of <paramref name="keys" /> does not match the length of <paramref name="items" />. -or- The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and one or more elements in the <paramref name="keys" /><see cref="T:System.Array" /> do not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="M:System.Array.Sort``2(``0[],``1[],System.Int32,System.Int32)"> <summary> Sorts a range of elements in a pair of <see cref="T:System.Array" /> objects (one contains the keys and the other contains the corresponding items) based on the keys in the first <see cref="T:System.Array" /> using the <see cref="T:System.IComparable`1" /> generic interface implementation of each key. </summary> <param name="keys"> The one-dimensional, zero-based <see cref="T:System.Array" /> that contains the keys to sort. </param> <param name="items"> The one-dimensional, zero-based <see cref="T:System.Array" /> that contains the items that correspond to the keys in <paramref name="keys" />, or null to sort only <paramref name="keys" />. </param> <param name="index"> The starting index of the range to sort. </param> <param name="length"> The number of elements in the range to sort. </param> <typeparam name="TKey"> The type of the elements of the key array. </typeparam> <typeparam name="TValue"> The type of the elements of the items array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="keys" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="keys" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="items" /> is not null, and the lower bound of <paramref name="keys" /> does not match the lower bound of <paramref name="items" />. -or- <paramref name="items" /> is not null, and the length of <paramref name="keys" /> does not match the length of <paramref name="items" />. -or- <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in the <paramref name="keys" /><see cref="T:System.Array" />. -or- <paramref name="items" /> is not null, and <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in the <paramref name="items" /><see cref="T:System.Array" />. </exception> <exception cref="T:System.InvalidOperationException"> One or more elements in the <paramref name="keys" /><see cref="T:System.Array" /> do not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="M:System.Array.Sort``2(``0[],``1[],System.Int32,System.Int32,System.Collections.Generic.IComparer{``0})"> <summary> Sorts a range of elements in a pair of <see cref="T:System.Array" /> objects (one contains the keys and the other contains the corresponding items) based on the keys in the first <see cref="T:System.Array" /> using the specified <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface. </summary> <param name="keys"> The one-dimensional, zero-based <see cref="T:System.Array" /> that contains the keys to sort. </param> <param name="items"> The one-dimensional, zero-based <see cref="T:System.Array" /> that contains the items that correspond to the keys in <paramref name="keys" />, or null to sort only <paramref name="keys" />. </param> <param name="index"> The starting index of the range to sort. </param> <param name="length"> The number of elements in the range to sort. </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface implementation to use when comparing elements, or null to use the <see cref="T:System.IComparable`1" /> generic interface implementation of each element. </param> <typeparam name="TKey"> The type of the elements of the key array. </typeparam> <typeparam name="TValue"> The type of the elements of the items array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="keys" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="keys" />. -or- <paramref name="length" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="items" /> is not null, and the lower bound of <paramref name="keys" /> does not match the lower bound of <paramref name="items" />. -or- <paramref name="items" /> is not null, and the length of <paramref name="keys" /> does not match the length of <paramref name="items" />. -or- <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in the <paramref name="keys" /><see cref="T:System.Array" />. -or- <paramref name="items" /> is not null, and <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in the <paramref name="items" /><see cref="T:System.Array" />. -or- The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and one or more elements in the <paramref name="keys" /><see cref="T:System.Array" /> do not implement the <see cref="T:System.IComparable`1" /> generic interface. </exception> </member> <member name="P:System.Array.SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Array" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Array" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Array.System#Collections#ICollection#Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Array" />. </summary> <returns> The number of elements contained in the <see cref="T:System.Array" />. </returns> </member> <member name="M:System.Array.System#Collections#IList#Add(System.Object)"> <summary> Implements <see cref="M:System.Collections.IList.Add(System.Object)" />. Throws a <see cref="T:System.NotSupportedException" /> in all cases. </summary> <returns> An exception is always thrown. </returns> <param name="value"> The object to be added to the <see cref="T:System.Array" />. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Array.System#Collections#IList#Clear"> <summary> Sets all elements in the <see cref="T:System.Array" /> to zero, to false, or to null, depending on the element type. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Array" /> is read-only. </exception> </member> <member name="M:System.Array.System#Collections#IList#Contains(System.Object)"> <summary> Determines whether an element is in the <see cref="T:System.Array" />. </summary> <returns>true if <paramref name="value" /> is found in the <see cref="T:System.Array" />; otherwise, false. </returns> <param name="value"> The object to locate in the <see cref="T:System.Array" />. The element to locate can be null for reference types. </param> <exception cref="T:System.RankException"> The current <see cref="T:System.Array" /> is multidimensional. </exception> </member> <member name="M:System.Array.System#Collections#IList#IndexOf(System.Object)"> <summary> Searches for the specified object and returns the index of the first occurrence within the current one-dimensional instance. </summary> <returns> The index of the first occurrence of <paramref name="value" /> within the entire <see cref="T:System.Array" />, if found; otherwise, the lower bound of the <see cref="T:System.Array" /> minus 1. </returns> <param name="value"> The object to locate in the current <see cref="T:System.Array" />. </param> <exception cref="T:System.RankException"> The current <see cref="T:System.Array" /> is multidimensional. </exception> </member> <member name="M:System.Array.System#Collections#IList#Insert(System.Int32,System.Object)"> <summary> Implements <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />. Throws a <see cref="T:System.NotSupportedException" /> in all cases. </summary> <param name="index"> The index at which <paramref name="value" /> should be inserted. </param> <param name="value"> The object to insert. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="P:System.Array.System#Collections#IList#Item(System.Int32)"> <summary> Gets or sets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The index of the element to get or set. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.ICollection.Count" />. </exception> <exception cref="T:System.ArgumentException"> The current <see cref="T:System.Array" /> does not have exactly one dimension. </exception> </member> <member name="M:System.Array.System#Collections#IList#Remove(System.Object)"> <summary> Implements <see cref="M:System.Collections.IList.Remove(System.Object)" />. Throws a <see cref="T:System.NotSupportedException" /> in all cases. </summary> <param name="value"> The object to remove from the <see cref="T:System.Array" />. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Array.System#Collections#IList#RemoveAt(System.Int32)"> <summary> Implements <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" />. Throws a <see cref="T:System.NotSupportedException" /> in all cases. </summary> <param name="index"> The index of the element to remove. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Array.TrueForAll``1(``0[],System.Predicate{``0})"> <summary> Determines whether every element in the array matches the conditions defined by the specified predicate. </summary> <returns>true if every element in <paramref name="array" /> matches the conditions defined by the specified predicate; otherwise, false. If there are no elements in the array, the return value is true. </returns> <param name="array"> The one-dimensional, zero-based <see cref="T:System.Array" /> to check against the conditions </param> <param name="match"> The <see cref="T:System.Predicate`1" /> that defines the conditions to check against the elements. </param> <typeparam name="T"> The type of the elements of the array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. -or- <paramref name="match" /> is null. </exception> </member> <member name="T:System.ArraySegment`1"> <summary> Delimits a section of a one-dimensional array. </summary> <typeparam name="T"> The type of the elements in the array segment. </typeparam> <filterpriority>2</filterpriority> </member> <member name="M:System.ArraySegment`1.#ctor(`0[])"> <summary> Initializes a new instance of the <see cref="T:System.ArraySegment`1" /> class that delimits all the elements in the specified array. </summary> <param name="array"> The array to wrap. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> </member> <member name="M:System.ArraySegment`1.#ctor(`0[],System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.ArraySegment`1" /> class that delimits the specified range of the elements in the specified array. </summary> <param name="array"> The array containing the range of elements to delimit. </param> <param name="offset"> The zero-based index of the first element in the range. </param> <param name="count"> The number of elements in the range. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="count" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="offset" /> and <paramref name="count" /> do not specify a valid range in <paramref name="array" />. </exception> </member> <member name="P:System.ArraySegment`1.Array"> <summary> Gets the original array containing the range of elements that the array segment delimits. </summary> <returns> The original array that was passed to the constructor, and that contains the range delimited by the <see cref="T:System.ArraySegment`1" />. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.ArraySegment`1.Count"> <summary> Gets the number of elements in the range delimited by the array segment. </summary> <returns> The number of elements in the range delimited by the <see cref="T:System.ArraySegment`1" />. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.ArraySegment`1.Equals(System.ArraySegment{`0})"> <summary> Determines whether the specified <see cref="T:System.ArraySegment`1" /> structure is equal to the current instance. </summary> <returns>true if the specified <see cref="T:System.ArraySegment`1" /> structure is equal to the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.ArraySegment`1" /> structure to be compared with the current instance. </param> </member> <member name="M:System.ArraySegment`1.Equals(System.Object)"> <summary> Determines whether the specified object is equal to the current instance. </summary> <returns>true if the specified object is a <see cref="T:System.ArraySegment`1" /> structure and is equal to the current instance; otherwise, false. </returns> <param name="obj"> The object to be compared with the current instance. </param> </member> <member name="M:System.ArraySegment`1.GetHashCode"> <summary> Returns the hash code for the current instance. </summary> <returns> A 32-bit signed integer hash code. </returns> </member> <member name="P:System.ArraySegment`1.Offset"> <summary> Gets the position of the first element in the range delimited by the array segment, relative to the start of the original array. </summary> <returns> The position of the first element in the range delimited by the <see cref="T:System.ArraySegment`1" />, relative to the start of the original array. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.ArraySegment`1.op_Equality(System.ArraySegment{`0},System.ArraySegment{`0})"> <summary> Indicates whether two <see cref="T:System.ArraySegment`1" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.ArraySegment`1" /> structure on the left side of the equality operator. </param> <param name="b"> The <see cref="T:System.ArraySegment`1" /> structure on the right side of the equality operator. </param> </member> <member name="M:System.ArraySegment`1.op_Inequality(System.ArraySegment{`0},System.ArraySegment{`0})"> <summary> Indicates whether two <see cref="T:System.ArraySegment`1" /> structures are unequal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.ArraySegment`1" /> structure on the left side of the inequality operator. </param> <param name="b"> The <see cref="T:System.ArraySegment`1" /> structure on the right side of the inequality operator. </param> </member> <member name="T:System.ArrayTypeMismatchException"> <summary> The exception that is thrown when an attempt is made to store an element of the wrong type within an array. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ArrayTypeMismatchException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ArrayTypeMismatchException" /> class. </summary> </member> <member name="M:System.ArrayTypeMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.ArrayTypeMismatchException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.ArrayTypeMismatchException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ArrayTypeMismatchException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. </param> </member> <member name="M:System.ArrayTypeMismatchException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.ArrayTypeMismatchException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.AssemblyLoadEventArgs"> <summary> Provides data for the <see cref="E:System.AppDomain.AssemblyLoad" /> event. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.AssemblyLoadEventArgs.#ctor(System.Reflection.Assembly)"> <summary> Initializes a new instance of the <see cref="T:System.AssemblyLoadEventArgs" /> class using the specified <see cref="T:System.Reflection.Assembly" />. </summary> <param name="loadedAssembly"> An instance that represents the currently loaded assembly. </param> </member> <member name="P:System.AssemblyLoadEventArgs.LoadedAssembly"> <summary> Gets an <see cref="T:System.Reflection.Assembly" /> that represents the currently loaded assembly. </summary> <returns> An instance of <see cref="T:System.Reflection.Assembly" /> that represents the currently loaded assembly. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.AssemblyLoadEventHandler"> <summary> Represents the method that handles the <see cref="E:System.AppDomain.AssemblyLoad" /> event of an <see cref="T:System.AppDomain" />. </summary> <param name="sender"> The source of the event. </param> <param name="args"> An <see cref="T:System.AssemblyLoadEventArgs" /> that contains the event data. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.AsyncCallback"> <summary> References a method to be called when a corresponding asynchronous operation completes. </summary> <param name="ar"> The result of the asynchronous operation. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.Attribute"> <summary> Represents the base class for custom attributes. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Attribute" /> class. </summary> </member> <member name="M:System.Attribute.Equals(System.Object)"> <summary> Returns a value that indicates whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> equals the type and value of this instance; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.Object" /> to compare with this instance or null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type)"> <summary> Retrieves a custom attribute applied to a specified assembly. Parameters specify the assembly and the type of the custom attribute to search for. </summary> <returns> A reference to the single custom attribute of type <paramref name="attributeType" /> that is applied to <paramref name="element" />, or null if there is no such attribute. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Assembly" /> class that describes a reusable collection of modules. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one of the requested attributes was found. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean)"> <summary> Retrieves a custom attribute applied to an assembly. Parameters specify the assembly, the type of the custom attribute to search for, and an ignored search option. </summary> <returns> A reference to the single custom attribute of type <paramref name="attributeType" /> that is applied to <paramref name="element" />, or null if there is no such attribute. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Assembly" /> class that describes a reusable collection of modules. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> This parameter is ignored, and does not affect the operation of this method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one of the requested attributes was found. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type)"> <summary> Retrieves a custom attribute applied to a member of a type. Parameters specify the member, and the type of the custom attribute to search for. </summary> <returns> A reference to the single custom attribute of type <paramref name="attributeType" /> that is applied to <paramref name="element" />, or null if there is no such attribute. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.MemberInfo" /> class that describes a constructor, event, field, method, or property member of a class. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one of the requested attributes was found. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean)"> <summary> Retrieves a custom attribute applied to a member of a type. Parameters specify the member, the type of the custom attribute to search for, and whether to search ancestors of the member. </summary> <returns> A reference to the single custom attribute of type <paramref name="attributeType" /> that is applied to <paramref name="element" />, or null if there is no such attribute. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.MemberInfo" /> class that describes a constructor, event, field, method, or property member of a class. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> If true, specifies to also search the ancestors of <paramref name="element" /> for custom attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one of the requested attributes was found. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type)"> <summary> Retrieves a custom attribute applied to a module. Parameters specify the module, and the type of the custom attribute to search for. </summary> <returns> A reference to the single custom attribute of type <paramref name="attributeType" /> that is applied to <paramref name="element" />, or null if there is no such attribute. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Module" /> class that describes a portable executable file. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one of the requested attributes was found. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean)"> <summary> Retrieves a custom attribute applied to a module. Parameters specify the module, the type of the custom attribute to search for, and an ignored search option. </summary> <returns> A reference to the single custom attribute of type <paramref name="attributeType" /> that is applied to <paramref name="element" />, or null if there is no such attribute. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Module" /> class that describes a portable executable file. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> This parameter is ignored, and does not affect the operation of this method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one of the requested attributes was found. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type)"> <summary> Retrieves a custom attribute applied to a method parameter. Parameters specify the method parameter, and the type of the custom attribute to search for. </summary> <returns> A reference to the single custom attribute of type <paramref name="attributeType" /> that is applied to <paramref name="element" />, or null if there is no such attribute. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.ParameterInfo" /> class that describes a parameter of a member of a class. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one of the requested attributes was found. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean)"> <summary> Retrieves a custom attribute applied to a method parameter. Parameters specify the method parameter, the type of the custom attribute to search for, and whether to search ancestors of the method parameter. </summary> <returns> A reference to the single custom attribute of type <paramref name="attributeType" /> that is applied to <paramref name="element" />, or null if there is no such attribute. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.ParameterInfo" /> class that describes a parameter of a member of a class. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> If true, specifies to also search the ancestors of <paramref name="element" /> for custom attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one of the requested attributes was found. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly)"> <summary> Retrieves an array of the custom attributes applied to an assembly. A parameter specifies the assembly. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Assembly" /> class that describes a reusable collection of modules. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean)"> <summary> Retrieves an array of the custom attributes applied to an assembly. Parameters specify the assembly, and an ignored search option. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Assembly" /> class that describes a reusable collection of modules. </param> <param name="inherit"> This parameter is ignored, and does not affect the operation of this method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type)"> <summary> Retrieves an array of the custom attributes applied to an assembly. Parameters specify the assembly, and the type of the custom attribute to search for. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes of type <paramref name="attributeType" /> applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Assembly" /> class that describes a reusable collection of modules. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean)"> <summary> Retrieves an array of the custom attributes applied to an assembly. Parameters specify the assembly, the type of the custom attribute to search for, and an ignored search option. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes of type <paramref name="attributeType" /> applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Assembly" /> class that describes a reusable collection of modules. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> This parameter is ignored, and does not affect the operation of this method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo)"> <summary> Retrieves an array of the custom attributes applied to a member of a type. A parameter specifies the member. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.MemberInfo" /> class that describes a constructor, event, field, method, or property member of a class. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean)"> <summary> Retrieves an array of the custom attributes applied to a member of a type. Parameters specify the member, the type of the custom attribute to search for, and whether to search ancestors of the member. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.MemberInfo" /> class that describes a constructor, event, field, method, or property member of a class. </param> <param name="inherit"> If true, specifies to also search the ancestors of <paramref name="element" /> for custom attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type)"> <summary> Retrieves an array of the custom attributes applied to a member of a type. Parameters specify the member, and the type of the custom attribute to search for. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes of type <paramref name="type" /> applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.MemberInfo" /> class that describes a constructor, event, field, method, or property member of a class. </param> <param name="type"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="type" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean)"> <summary> Retrieves an array of the custom attributes applied to a member of a type. Parameters specify the member, the type of the custom attribute to search for, and whether to search ancestors of the member. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes of type <paramref name="type" /> applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.MemberInfo" /> class that describes a constructor, event, field, method, or property member of a class. </param> <param name="type"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> If true, specifies to also search the ancestors of <paramref name="element" /> for custom attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="type" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.Module)"> <summary> Retrieves an array of the custom attributes applied to a module. A parameter specifies the module. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Module" /> class that describes a portable executable file. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean)"> <summary> Retrieves an array of the custom attributes applied to a module. Parameters specify the module, and an ignored search option. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Module" /> class that describes a portable executable file. </param> <param name="inherit"> This parameter is ignored, and does not affect the operation of this method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type)"> <summary> Retrieves an array of the custom attributes applied to a module. Parameters specify the module, and the type of the custom attribute to search for. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes of type <paramref name="attributeType" /> applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Module" /> class that describes a portable executable file. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean)"> <summary> Retrieves an array of the custom attributes applied to a module. Parameters specify the module, the type of the custom attribute to search for, and an ignored search option. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes of type <paramref name="attributeType" /> applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Module" /> class that describes a portable executable file. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> This parameter is ignored, and does not affect the operation of this method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo)"> <summary> Retrieves an array of the custom attributes applied to a method parameter. A parameter specifies the method parameter. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.ParameterInfo" /> class that describes a parameter of a member of a class. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> is null. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean)"> <summary> Retrieves an array of the custom attributes applied to a method parameter. Parameters specify the method parameter, and whether to search ancestors of the method parameter. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.ParameterInfo" /> class that describes a parameter of a member of a class. </param> <param name="inherit"> If true, specifies to also search the ancestors of <paramref name="element" /> for custom attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> is null. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type)"> <summary> Retrieves an array of the custom attributes applied to a method parameter. Parameters specify the method parameter, and the type of the custom attribute to search for. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes of type <paramref name="attributeType" /> applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.ParameterInfo" /> class that describes a parameter of a member of a class. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean)"> <summary> Retrieves an array of the custom attributes applied to a method parameter. Parameters specify the method parameter, the type of the custom attribute to search for, and whether to search ancestors of the method parameter. </summary> <returns> An <see cref="T:System.Attribute" /> array that contains the custom attributes of type <paramref name="attributeType" /> applied to <paramref name="element" />, or an empty array if no such custom attributes exist. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.ParameterInfo" /> class that describes a parameter of a member of a class. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> If true, specifies to also search the ancestors of <paramref name="element" /> for custom attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Attribute.IsDefaultAttribute"> <summary> When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class. </summary> <returns>true if this instance is the default attribute for the class; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type)"> <summary> Determines whether any custom attributes are applied to an assembly. Parameters specify the assembly, and the type of the custom attribute to search for. </summary> <returns>true if a custom attribute of type <paramref name="attributeType" /> is applied to <paramref name="element" />; otherwise, false. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Assembly" /> class that describes a reusable collection of modules. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean)"> <summary> Determines whether any custom attributes are applied to an assembly. Parameters specify the assembly, the type of the custom attribute to search for, and an ignored search option. </summary> <returns>true if a custom attribute of type <paramref name="attributeType" /> is applied to <paramref name="element" />; otherwise, false. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Assembly" /> class that describes a reusable collection of modules. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> This parameter is ignored, and does not affect the operation of this method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type)"> <summary> Determines whether any custom attributes are applied to a member of a type. Parameters specify the member, and the type of the custom attribute to search for. </summary> <returns>true if a custom attribute of type <paramref name="attributeType" /> is applied to <paramref name="element" />; otherwise, false. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.MemberInfo" /> class that describes a constructor, event, field, method, type, or property member of a class. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean)"> <summary> Determines whether any custom attributes are applied to a member of a type. Parameters specify the member, the type of the custom attribute to search for, and whether to search ancestors of the member. </summary> <returns>true if a custom attribute of type <paramref name="attributeType" /> is applied to <paramref name="element" />; otherwise, false. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.MemberInfo" /> class that describes a constructor, event, field, method, type, or property member of a class. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> If true, specifies to also search the ancestors of <paramref name="element" /> for custom attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.IsDefined(System.Reflection.Module,System.Type)"> <summary> Determines whether any custom attributes of a specified type are applied to a module. Parameters specify the module, and the type of the custom attribute to search for. </summary> <returns>true if a custom attribute of type <paramref name="attributeType" /> is applied to <paramref name="element" />; otherwise, false. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Module" /> class that describes a portable executable file. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean)"> <summary> Determines whether any custom attributes are applied to a module. Parameters specify the module, the type of the custom attribute to search for, and an ignored search option. </summary> <returns>true if a custom attribute of type <paramref name="attributeType" /> is applied to <paramref name="element" />; otherwise, false. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.Module" /> class that describes a portable executable file. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> This parameter is ignored, and does not affect the operation of this method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type)"> <summary> Determines whether any custom attributes are applied to a method parameter. Parameters specify the method parameter, and the type of the custom attribute to search for. </summary> <returns>true if a custom attribute of type <paramref name="attributeType" /> is applied to <paramref name="element" />; otherwise, false. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.ParameterInfo" /> class that describes a parameter of a member of a class. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean)"> <summary> Determines whether any custom attributes are applied to a method parameter. Parameters specify the method parameter, the type of the custom attribute to search for, and whether to search ancestors of the method parameter. </summary> <returns>true if a custom attribute of type <paramref name="attributeType" /> is applied to <paramref name="element" />; otherwise, false. </returns> <param name="element"> An object derived from the <see cref="T:System.Reflection.ParameterInfo" /> class that describes a parameter of a member of a class. </param> <param name="attributeType"> The type, or a base type, of the custom attribute to search for. </param> <param name="inherit"> If true, specifies to also search the ancestors of <paramref name="element" /> for custom attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception> <exception cref="T:System.ExecutionEngineException"> <paramref name="element" /> is not a method, constructor, or type. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Attribute.Match(System.Object)"> <summary> When overridden in a derived class, returns a value that indicates whether this instance equals a specified object. </summary> <returns>true if this instance equals <paramref name="obj" />; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.Object" /> to compare with this instance of <see cref="T:System.Attribute" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Attribute.System#Runtime#InteropServices#_Attribute#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array that receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Attribute.System#Runtime#InteropServices#_Attribute#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Attribute.System#Runtime#InteropServices#_Attribute#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Attribute.System#Runtime#InteropServices#_Attribute#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="P:System.Attribute.TypeId"> <summary> When implemented in a derived class, gets a unique identifier for this <see cref="T:System.Attribute" />. </summary> <returns> An <see cref="T:System.Object" /> that is a unique identifier for the attribute. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.AttributeTargets"> <summary> Specifies the application elements on which it is valid to apply an attribute. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.AttributeTargets.Assembly"> <summary> Attribute can be applied to an assembly. </summary> </member> <member name="F:System.AttributeTargets.Module"> <summary> Attribute can be applied to a module. </summary> </member> <member name="F:System.AttributeTargets.Class"> <summary> Attribute can be applied to a class. </summary> </member> <member name="F:System.AttributeTargets.Struct"> <summary> Attribute can be applied to a structure; that is, a value type. </summary> </member> <member name="F:System.AttributeTargets.Enum"> <summary> Attribute can be applied to an enumeration. </summary> </member> <member name="F:System.AttributeTargets.Constructor"> <summary> Attribute can be applied to a constructor. </summary> </member> <member name="F:System.AttributeTargets.Method"> <summary> Attribute can be applied to a method. </summary> </member> <member name="F:System.AttributeTargets.Property"> <summary> Attribute can be applied to a property. </summary> </member> <member name="F:System.AttributeTargets.Field"> <summary> Attribute can be applied to a field. </summary> </member> <member name="F:System.AttributeTargets.Event"> <summary> Attribute can be applied to an event. </summary> </member> <member name="F:System.AttributeTargets.Interface"> <summary> Attribute can be applied to an interface. </summary> </member> <member name="F:System.AttributeTargets.Parameter"> <summary> Attribute can be applied to a parameter. </summary> </member> <member name="F:System.AttributeTargets.Delegate"> <summary> Attribute can be applied to a delegate. </summary> </member> <member name="F:System.AttributeTargets.ReturnValue"> <summary> Attribute can be applied to a return value. </summary> </member> <member name="F:System.AttributeTargets.GenericParameter"> <summary> Attribute can be applied to a generic parameter. </summary> </member> <member name="F:System.AttributeTargets.All"> <summary> Attribute can be applied to any application element. </summary> </member> <member name="T:System.AttributeUsageAttribute"> <summary> Specifies the usage of another attribute class. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.AttributeUsageAttribute.#ctor(System.AttributeTargets)"> <summary> Initializes a new instance of the <see cref="T:System.AttributeUsageAttribute" /> class with the specified list of <see cref="T:System.AttributeTargets" />, the <see cref="P:System.AttributeUsageAttribute.AllowMultiple" /> value, and the <see cref="P:System.AttributeUsageAttribute.Inherited" /> value. </summary> <param name="validOn"> The set of values combined using a bitwise OR operation to indicate which program elements are valid. </param> </member> <member name="P:System.AttributeUsageAttribute.AllowMultiple"> <summary> Gets or sets a Boolean value indicating whether more than one instance of the indicated attribute can be specified for a single program element. </summary> <returns>true if more than one instance is allowed to be specified; otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.AttributeUsageAttribute.Inherited"> <summary> Gets or sets a Boolean value indicating whether the indicated attribute can be inherited by derived classes and overriding members. </summary> <returns>true if the attribute can be inherited by derived classes and overriding members; otherwise, false. The default is true. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.AttributeUsageAttribute.ValidOn"> <summary> Gets a set of values identifying which program elements that the indicated attribute can be applied to. </summary> <returns> One or several <see cref="T:System.AttributeTargets" /> values. The default is All. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.BadImageFormatException"> <summary> The exception that is thrown when the file image of a DLL or an executable program is invalid. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.BadImageFormatException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.BadImageFormatException" /> class. </summary> </member> <member name="M:System.BadImageFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.BadImageFormatException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.BadImageFormatException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.BadImageFormatException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.BadImageFormatException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.BadImageFormatException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.BadImageFormatException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.BadImageFormatException" /> class with a specified error message and file name. </summary> <param name="message"> A message that describes the error. </param> <param name="fileName"> The full name of the file with the invalid image. </param> </member> <member name="M:System.BadImageFormatException.#ctor(System.String,System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.BadImageFormatException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="fileName"> The full name of the file with the invalid image. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="P:System.BadImageFormatException.FileName"> <summary> Gets the name of the file that causes this exception. </summary> <returns> The name of the file with the invalid image, or a null reference if no file name was passed to the constructor for the current instance. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.BadImageFormatException.FusionLog"> <summary> Gets the log file that describes why an assembly load failed. </summary> <returns> A String containing errors reported by the assembly cache. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.BadImageFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the file name, assembly cache log, and additional exception information. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.BadImageFormatException.Message"> <summary> Gets the error message and the name of the file that caused this exception. </summary> <returns> A string containing the error message and the name of the file that caused this exception. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.BadImageFormatException.ToString"> <summary> Returns the fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace. </summary> <returns> A string containing the fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="T:System.Base64FormattingOptions"> <summary> Specifies whether relevant <see cref="Overload:System.Convert.ToBase64CharArray" /> and <see cref="Overload:System.Convert.ToBase64String" /> methods insert line breaks in their output. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Base64FormattingOptions.None"> <summary> Does not insert line breaks after every 76 characters in the string representation. </summary> </member> <member name="F:System.Base64FormattingOptions.InsertLineBreaks"> <summary> Inserts line breaks after every 76 characters in the string representation. </summary> </member> <member name="T:System.BitConverter"> <summary> Converts base data types to an array of bytes, and an array of bytes to base data types. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.BitConverter.DoubleToInt64Bits(System.Double)"> <summary> Converts the specified double-precision floating point number to a 64-bit signed integer. </summary> <returns> A 64-bit signed integer whose value is equivalent to <paramref name="value" />. </returns> <param name="value"> The number to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.GetBytes(System.Boolean)"> <summary> Returns the specified Boolean value as an array of bytes. </summary> <returns> An array of bytes with length 1. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.GetBytes(System.Char)"> <summary> Returns the specified Unicode character value as an array of bytes. </summary> <returns> An array of bytes with length 2. </returns> <param name="value"> A character to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.GetBytes(System.Double)"> <summary> Returns the specified double-precision floating point value as an array of bytes. </summary> <returns> An array of bytes with length 8. </returns> <param name="value"> The number to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.GetBytes(System.Int16)"> <summary> Returns the specified 16-bit signed integer value as an array of bytes. </summary> <returns> An array of bytes with length 2. </returns> <param name="value"> The number to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.GetBytes(System.Int32)"> <summary> Returns the specified 32-bit signed integer value as an array of bytes. </summary> <returns> An array of bytes with length 4. </returns> <param name="value"> The number to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.GetBytes(System.Int64)"> <summary> Returns the specified 64-bit signed integer value as an array of bytes. </summary> <returns> An array of bytes with length 8. </returns> <param name="value"> The number to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.GetBytes(System.Single)"> <summary> Returns the specified single-precision floating point value as an array of bytes. </summary> <returns> An array of bytes with length 4. </returns> <param name="value"> The number to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.GetBytes(System.UInt16)"> <summary> Returns the specified 16-bit unsigned integer value as an array of bytes. </summary> <returns> An array of bytes with length 2. </returns> <param name="value"> The number to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.GetBytes(System.UInt32)"> <summary> Returns the specified 32-bit unsigned integer value as an array of bytes. </summary> <returns> An array of bytes with length 4. </returns> <param name="value"> The number to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.GetBytes(System.UInt64)"> <summary> Returns the specified 64-bit unsigned integer value as an array of bytes. </summary> <returns> An array of bytes with length 8. </returns> <param name="value"> The number to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.Int64BitsToDouble(System.Int64)"> <summary> Converts the specified 64-bit signed integer to a double-precision floating point number. </summary> <returns> A double-precision floating point number whose value is equivalent to <paramref name="value" />. </returns> <param name="value"> The number to convert. </param> <filterpriority>1</filterpriority> </member> <member name="F:System.BitConverter.IsLittleEndian"> <summary> Indicates the byte order ("endianess") in which data is stored in this computer architecture. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToBoolean(System.Byte[],System.Int32)"> <summary> Returns a Boolean value converted from one byte at a specified position in a byte array. </summary> <returns>true if the byte at <paramref name="startIndex" /> in <paramref name="value" /> is nonzero; otherwise, false. </returns> <param name="value"> An array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToChar(System.Byte[],System.Int32)"> <summary> Returns a Unicode character converted from two bytes at a specified position in a byte array. </summary> <returns> A character formed by two bytes beginning at <paramref name="startIndex" />. </returns> <param name="value"> An array. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="startIndex" /> equals the length of <paramref name="value" /> minus 1. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToDouble(System.Byte[],System.Int32)"> <summary> Returns a double-precision floating point number converted from eight bytes at a specified position in a byte array. </summary> <returns> A double precision floating point number formed by eight bytes beginning at <paramref name="startIndex" />. </returns> <param name="value"> An array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 7, and is less than or equal to the length of <paramref name="value" /> minus 1. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToInt16(System.Byte[],System.Int32)"> <summary> Returns a 16-bit signed integer converted from two bytes at a specified position in a byte array. </summary> <returns> A 16-bit signed integer formed by two bytes beginning at <paramref name="startIndex" />. </returns> <param name="value"> An array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="startIndex" /> equals the length of <paramref name="value" /> minus 1. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToInt32(System.Byte[],System.Int32)"> <summary> Returns a 32-bit signed integer converted from four bytes at a specified position in a byte array. </summary> <returns> A 32-bit signed integer formed by four bytes beginning at <paramref name="startIndex" />. </returns> <param name="value"> An array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 3, and is less than or equal to the length of <paramref name="value" /> minus 1. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToInt64(System.Byte[],System.Int32)"> <summary> Returns a 64-bit signed integer converted from eight bytes at a specified position in a byte array. </summary> <returns> A 64-bit signed integer formed by eight bytes beginning at <paramref name="startIndex" />. </returns> <param name="value"> An array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 7, and is less than or equal to the length of <paramref name="value" /> minus 1. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToSingle(System.Byte[],System.Int32)"> <summary> Returns a single-precision floating point number converted from four bytes at a specified position in a byte array. </summary> <returns> A single-precision floating point number formed by four bytes beginning at <paramref name="startIndex" />. </returns> <param name="value"> An array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 3, and is less than or equal to the length of <paramref name="value" /> minus 1. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToString(System.Byte[])"> <summary> Converts the numeric value of each element of a specified array of bytes to its equivalent hexadecimal string representation. </summary> <returns> A <see cref="T:System.String" /> of hexadecimal pairs separated by hyphens, where each pair represents the corresponding element in <paramref name="value" />; for example, "7F-2C-4A". </returns> <param name="value"> An array of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToString(System.Byte[],System.Int32)"> <summary> Converts the numeric value of each element of a specified subarray of bytes to its equivalent hexadecimal string representation. </summary> <returns> A <see cref="T:System.String" /> of hexadecimal pairs separated by hyphens, where each pair represents the corresponding element in a subarray of <paramref name="value" />; for example, "7F-2C-4A". </returns> <param name="value"> An array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToString(System.Byte[],System.Int32,System.Int32)"> <summary> Converts the numeric value of each element of a specified subarray of bytes to its equivalent hexadecimal string representation. </summary> <returns> A <see cref="T:System.String" /> of hexadecimal pairs separated by hyphens, where each pair represents the corresponding element in a subarray of <paramref name="value" />; for example, "7F-2C-4A". </returns> <param name="value"> An array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <param name="length"> The number of array elements in <paramref name="value" /> to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> or <paramref name="length" /> is less than zero. -or- <paramref name="startIndex" /> is greater than zero and is greater than or equal to the length of <paramref name="value" />. </exception> <exception cref="T:System.ArgumentException"> The combination of <paramref name="startIndex" /> and <paramref name="length" /> does not specify a position within <paramref name="value" />; that is, the <paramref name="startIndex" /> parameter is greater than the length of <paramref name="value" /> minus the <paramref name="length" /> parameter. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToUInt16(System.Byte[],System.Int32)"> <summary> Returns a 16-bit unsigned integer converted from two bytes at a specified position in a byte array. </summary> <returns> A 16-bit unsigned integer formed by two bytes beginning at <paramref name="startIndex" />. </returns> <param name="value"> The array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="startIndex" /> equals the length of <paramref name="value" /> minus 1. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToUInt32(System.Byte[],System.Int32)"> <summary> Returns a 32-bit unsigned integer converted from four bytes at a specified position in a byte array. </summary> <returns> A 32-bit unsigned integer formed by four bytes beginning at <paramref name="startIndex" />. </returns> <param name="value"> An array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 3, and is less than or equal to the length of <paramref name="value" /> minus 1. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.BitConverter.ToUInt64(System.Byte[],System.Int32)"> <summary> Returns a 64-bit unsigned integer converted from eight bytes at a specified position in a byte array. </summary> <returns> A 64-bit unsigned integer formed by the eight bytes beginning at <paramref name="startIndex" />. </returns> <param name="value"> An array of bytes. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 7, and is less than or equal to the length of <paramref name="value" /> minus 1. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.Boolean"> <summary> Represents a Boolean value. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Boolean.CompareTo(System.Boolean)"> <summary> Compares this instance to a specified <see cref="T:System.Boolean" /> object and returns an integer that indicates their relationship to one another. </summary> <returns> A signed integer that indicates the relative values of this instance and <paramref name="value" />. Return Value Condition Less than zero This instance is false and <paramref name="value" /> is true. Zero This instance and <paramref name="value" /> are equal (either both are true or both are false). Greater than zero This instance is true and <paramref name="value" /> is false. </returns> <param name="value"> A <see cref="T:System.Boolean" /> object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Boolean.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an integer that indicates their relationship to one another. </summary> <returns> A signed integer that indicates the relative order of this instance and <paramref name="obj" />. Return Value Condition Less than zero This instance is false and <paramref name="obj" /> is true. Zero This instance and <paramref name="obj" /> are equal (either both are true or both are false). Greater than zero This instance is true and <paramref name="obj" /> is false. -or- <paramref name="obj" /> is null. </returns> <param name="obj"> An object to compare to this instance, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="obj" /> is not a <see cref="T:System.Boolean" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Boolean.Equals(System.Boolean)"> <summary> Returns a value indicating whether this instance is equal to a specified <see cref="T:System.Boolean" /> object. </summary> <returns>true if <paramref name="obj" /> has the same value as this instance; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.Boolean" /> value to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Boolean.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is a <see cref="T:System.Boolean" /> and has the same value as this instance; otherwise, false. </returns> <param name="obj"> An object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="F:System.Boolean.FalseString"> <summary> Represents the Boolean value false as a string. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Boolean.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A hash code for the current <see cref="T:System.Boolean" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Boolean.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Boolean" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.Boolean" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Boolean.Parse(System.String)"> <summary> Converts the specified string representation of a logical value to its <see cref="T:System.Boolean" /> equivalent. </summary> <returns>true if <paramref name="value" /> is equivalent to <see cref="F:System.Boolean.TrueString" />; otherwise, false. </returns> <param name="value"> A string containing the value to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="value" /> is not equivalent to <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Boolean.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true or false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns>true, coerced to byte, if the value of this instance is nonzero; otherwise, false, coerced to byte. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> You attempt to convert a <see cref="T:System.Boolean" /> value to a <see cref="T:System.Char" /> value. This conversion is not supported. </exception> </member> <member name="M:System.Boolean.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> You attempt to convert a <see cref="T:System.Boolean" /> value to a <see cref="T:System.DateTime" /> value. This conversion is not supported. </exception> </member> <member name="M:System.Boolean.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />.. </summary> <returns> 1 if this instance is nonzero (that is, true); otherwise, 0. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />.. </summary> <returns> 1 if this instance is nonzero (that is, true); otherwise, 0. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> 1 if this instance is nonzero (that is, true); otherwise, 0. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> 1 if this instance is nonzero (that is, true); otherwise, 0. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> 1 if this instance is nonzero (that is, true); otherwise, 0. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> 1 if this instance is nonzero (that is, true); otherwise, 0. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />.. </summary> <returns> 1 if this instance is nonzero (that is, true); otherwise, 0. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> An object of the specified type, with a value that is equivalent to the value of this Boolean object. </returns> <param name="type"> The desired type. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that supplies culture-specific information about the format of the returned value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The requested type conversion is not supported. </exception> </member> <member name="M:System.Boolean.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> 1 if this instance is nonzero (that is, true); otherwise, 0. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> 1 if this instance is nonzero (that is, true); otherwise, 0. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> 1 if this instance is nonzero (that is, true); otherwise, 0. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Boolean.ToString"> <summary> Converts the value of this instance to its equivalent string representation (either "True" or "False"). </summary> <returns> <see cref="F:System.Boolean.TrueString" /> if the value of this instance is true, or <see cref="F:System.Boolean.FalseString" /> if the value of this instance is false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Boolean.ToString(System.IFormatProvider)"> <summary> Converts the value of this instance to its equivalent string representation (either "True" or "False"). </summary> <returns> <see cref="F:System.Boolean.TrueString" /> if the value of this instance is true, or <see cref="F:System.Boolean.FalseString" /> if the value of this instance is false. </returns> <param name="provider"> (Reserved) An <see cref="T:System.IFormatProvider" /> object. </param> <filterpriority>2</filterpriority> </member> <member name="F:System.Boolean.TrueString"> <summary> Represents the Boolean value true as a string. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Boolean.TryParse(System.String,System.Boolean@)"> <summary> Converts the specified string representation of a logical value to its <see cref="T:System.Boolean" /> equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="value" /> was converted successfully; otherwise, false. </returns> <param name="value"> A string containing the value to convert. </param> <param name="result"> When this method returns, if the conversion succeeded, contains true if <paramref name="value" /> is equivalent to <see cref="F:System.Boolean.TrueString" /> or false if <paramref name="value" /> is equivalent to <see cref="F:System.Boolean.FalseString" />. If the conversion failed, contains false. The conversion fails if <paramref name="value" /> is null or is not equivalent to either <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.Buffer"> <summary> Manipulates arrays of primitive types. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Buffer.BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)"> <summary> Copies a specified number of bytes from a source array starting at a particular offset to a destination array starting at a particular offset. </summary> <param name="src"> The source buffer. </param> <param name="srcOffset"> The byte offset into <paramref name="src" />. </param> <param name="dst"> The destination buffer. </param> <param name="dstOffset"> The byte offset into <paramref name="dst" />. </param> <param name="count"> The number of bytes to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="src" /> or <paramref name="dst" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="src" /> or <paramref name="dst" /> is not an array of primitives. -or- The length of <paramref name="src" /> is less than <paramref name="srcOffset" /> plus <paramref name="count" />. -or- The length of <paramref name="dst" /> is less than <paramref name="dstOffset" /> plus <paramref name="count" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="srcOffset" />, <paramref name="dstOffset" />, or <paramref name="count" /> is less than 0. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Buffer.ByteLength(System.Array)"> <summary> Returns the number of bytes in the specified array. </summary> <returns> The number of bytes in the array. </returns> <param name="array"> An array. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is not a primitive. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Buffer.GetByte(System.Array,System.Int32)"> <summary> Retrieves the byte at a specified location in a specified array. </summary> <returns> Returns the <paramref name="index" /> byte in the array. </returns> <param name="array"> An array. </param> <param name="index"> A location in the array. </param> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is not a primitive. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is negative or greater than the length of <paramref name="array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Buffer.SetByte(System.Array,System.Int32,System.Byte)"> <summary> Assigns a specified value to a byte at a particular location in a specified array. </summary> <param name="array"> An array. </param> <param name="index"> A location in the array. </param> <param name="value"> A value to assign. </param> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is not a primitive. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is negative or greater than the length of <paramref name="array" />. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.Byte"> <summary> Represents an 8-bit unsigned integer. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.CompareTo(System.Byte)"> <summary> Compares this instance to a specified 8-bit unsigned integer and returns an indication of their relative values. </summary> <returns> A signed integer that indicates the relative order of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Byte.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an indication of their relative values. </summary> <returns> A signed integer that indicates the relative order of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.Byte" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Byte.Equals(System.Byte)"> <summary> Returns a value indicating whether this instance and a specified <see cref="T:System.Byte" /> object represent the same value. </summary> <returns>true if <paramref name="obj" /> is equal to this instance; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.Byte" /> object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Byte.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.Byte" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance, or null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Byte.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A hash code for the current <see cref="T:System.Byte" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Byte.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Byte" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.Byte" />. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.Byte.MaxValue"> <summary> Represents the largest possible value of a <see cref="T:System.Byte" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Byte.MinValue"> <summary> Represents the smallest possible value of a <see cref="T:System.Byte" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.Parse(System.String)"> <summary> Converts the string representation of a number to its <see cref="T:System.Byte" /> equivalent. </summary> <returns> The <see cref="T:System.Byte" /> value equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. The string is interpreted using the <see cref="F:System.Globalization.NumberStyles.Integer" /> style. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not of the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its <see cref="T:System.Byte" /> equivalent. </summary> <returns> The <see cref="T:System.Byte" /> value equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. The string is interpreted using the style specified by <paramref name="style" />. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not of the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. -or- <paramref name="s" /> includes non-zero, fractional digits. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its <see cref="T:System.Byte" /> equivalent. </summary> <returns> The <see cref="T:System.Byte" /> value equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. The string is interpreted using the style specified by <paramref name="style" />. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific information about the format of <paramref name="s" />. If <paramref name="provider" /> is null, the thread current culture is used. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not of the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. -or- <paramref name="s" /> includes non-zero, fractional digits. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified culture-specific format to its <see cref="T:System.Byte" /> equivalent. </summary> <returns> The <see cref="T:System.Byte" /> value equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. The string is interpreted using the <see cref="F:System.Globalization.NumberStyles.Integer" /> style. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific parsing information about <paramref name="s" />. If <paramref name="provider" /> is null, the thread current culture is used. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not of the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Char" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Byte.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Decimal" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Double" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.SByte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Single" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to <paramref name="type" />. </returns> <param name="type"> The type to which to convert this <see cref="T:System.Byte" /> value. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that supplies information about the format of the returned value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The requested type conversion is not supported. </exception> </member> <member name="M:System.Byte.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Byte.ToString"> <summary> Converts the value of the current <see cref="T:System.Byte" /> object to its equivalent string representation. </summary> <returns> The string representation of the value of this object, which consists of a sequence of digits that range from 0 to 9 with no leading zeroes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of the current <see cref="T:System.Byte" /> object to its equivalent string representation using the specified culture-specific formatting information. </summary> <returns> The string representation of the value of this object in the format specified by the <paramref name="provider" /> parameter. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.ToString(System.String)"> <summary> Converts the value of the current <see cref="T:System.Byte" /> object to its equivalent string representation using the specified format. </summary> <returns> The string representation of the current <see cref="T:System.Byte" /> object, formatted as specified by the <paramref name="format" /> parameter. </returns> <param name="format"> A numeric format string. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> includes an unsupported specifier. Supported format specifiers are listed in the Remarks section. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.ToString(System.String,System.IFormatProvider)"> <summary> Converts the value of the current <see cref="T:System.Byte" /> object to its equivalent string representation using the specified format and culture-specific formatting information. </summary> <returns> The string representation of the current <see cref="T:System.Byte" /> object, formatted as specified by the <paramref name="format" /> and <paramref name="provider" /> parameters. </returns> <param name="format"> A standard or custom numeric format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> includes an unsupported specifier. Supported format specifiers are listed in the Remarks section. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.TryParse(System.String,System.Byte@)"> <summary> Tries to convert the string representation of a number to its <see cref="T:System.Byte" /> equivalent, and returns a value that indicates whether the conversion succeeded. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string that contains a number to convert. The string is interpreted using the <see cref="F:System.Globalization.NumberStyles.Integer" /> style. </param> <param name="result"> When this method returns, contains the <see cref="T:System.Byte" /> value equivalent to the number contained in <paramref name="s" /> if the conversion succeeded, or zero if the conversion failed. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Byte.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Byte@)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its <see cref="T:System.Byte" /> equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a number to convert. The string is interpreted using the style specified by <paramref name="style" />. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="s" />. If <paramref name="provider" /> is null, the thread current culture is used. </param> <param name="result"> When this method returns, contains the 8-bit unsigned integer value equivalent to the number contained in <paramref name="s" /> if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not of the correct format, or represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.CannotUnloadAppDomainException"> <summary> The exception that is thrown when an attempt to unload an application domain fails. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.CannotUnloadAppDomainException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class. </summary> </member> <member name="M:System.CannotUnloadAppDomainException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class from serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.CannotUnloadAppDomainException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. </param> </member> <member name="M:System.CannotUnloadAppDomainException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Char"> <summary> Represents a Unicode character. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.CompareTo(System.Char)"> <summary> Compares this instance to a specified <see cref="T:System.Char" /> object and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified <see cref="T:System.Char" /> object. </summary> <returns> A signed number indicating the position of this instance in the sort order in relation to the <paramref name="value" /> parameter. Return Value Description Less than zero This instance precedes <paramref name="value" />. Zero This instance has the same position in the sort order as <paramref name="value" />. Greater than zero This instance follows <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.Char" /> object to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Char.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified <see cref="T:System.Object" />. </summary> <returns> A signed number indicating the position of this instance in the sort order in relation to the <paramref name="value" /> parameter. Return Value Description Less than zero This instance precedes <paramref name="value" />. Zero This instance has the same position in the sort order as <paramref name="value" />. Greater than zero This instance follows <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare this instance to, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.Char" /> object. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Char.ConvertFromUtf32(System.Int32)"> <summary> Converts the specified Unicode code point into a UTF-16 encoded string. </summary> <returns> A string consisting of one <see cref="T:System.Char" /> object or a surrogate pair of <see cref="T:System.Char" /> objects equivalent to the code point specified by the <paramref name="utf32" /> parameter. </returns> <param name="utf32"> A 21-bit Unicode code point. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="utf32" /> is not a valid 21-bit Unicode code point ranging from U+0 through U+10FFFF, excluding the surrogate pair range from U+D800 through U+DFFF. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.ConvertToUtf32(System.Char,System.Char)"> <summary> Converts the value of a UTF-16 encoded surrogate pair into a Unicode code point. </summary> <returns> The 21-bit Unicode code point represented by the <paramref name="highSurrogate" /> and <paramref name="lowSurrogate" /> parameters. </returns> <param name="highSurrogate"> A high surrogate character (that is, a code point ranging from U+D800 through U+DBFF). </param> <param name="lowSurrogate"> A low surrogate character (that is, a code point ranging from U+DC00 through U+DFFF). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="highSurrogate" /> is not in the range U+D800 through U+DBFF, or <paramref name="lowSurrogate" /> is not in the range U+DC00 through U+DFFF. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.ConvertToUtf32(System.String,System.Int32)"> <summary> Converts the value of a UTF-16 encoded character or surrogate pair at a specified position in a string into a Unicode code point. </summary> <returns> The 21-bit Unicode code point represented by the character or surrogate pair at the position in the <paramref name="s" /> parameter specified by the <paramref name="index" /> parameter. </returns> <param name="s"> A string that contains a character or surrogate pair. </param> <param name="index"> The index position of the character or surrogate pair in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a position within <paramref name="s" />. </exception> <exception cref="T:System.ArgumentException"> The specified index position contains a surrogate pair, and either the first character in the pair is not a valid high surrogate or the second character in the pair is not a valid low surrogate. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.Equals(System.Char)"> <summary> Returns a value indicating whether this instance is equal to the specified <see cref="T:System.Char" /> object. </summary> <returns>true if the <paramref name="value" /> parameter equals the value of this instance; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.Char" /> object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Char.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.Char" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance or null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Char.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Char.GetNumericValue(System.Char)"> <summary> Converts the specified numeric Unicode character to a double-precision floating point number. </summary> <returns> The numeric value of <paramref name="c" /> if that character represents a number; otherwise, -1.0. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.GetNumericValue(System.String,System.Int32)"> <summary> Converts the numeric Unicode character at the specified position in a specified string to a double-precision floating point number. </summary> <returns> The numeric value of the character at position <paramref name="index" /> in <paramref name="s" /> if that character represents a number; otherwise, -1. </returns> <param name="s"> A <see cref="T:System.String" />. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Char" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.Char" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Char.GetUnicodeCategory(System.Char)"> <summary> Categorizes a specified Unicode character into a group identified by one of the <see cref="T:System.Globalization.UnicodeCategory" /> values. </summary> <returns> A <see cref="T:System.Globalization.UnicodeCategory" /> value that identifies the group that contains <paramref name="c" />. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.GetUnicodeCategory(System.String,System.Int32)"> <summary> Categorizes the character at the specified position in a specified string into a group identified by one of the <see cref="T:System.Globalization.UnicodeCategory" /> values. </summary> <returns> A <see cref="T:System.Globalization.UnicodeCategory" /> enumerated constant that identifies the group that contains the character at position <paramref name="index" /> in <paramref name="s" />. </returns> <param name="s"> A <see cref="T:System.String" />. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsControl(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as a control character. </summary> <returns>true if <paramref name="c" /> is a control character; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsControl(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as a control character. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is a control character; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsDigit(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as a decimal digit. </summary> <returns>true if <paramref name="c" /> is a decimal digit; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsDigit(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as a decimal digit. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is a decimal digit; otherwise, false. </returns> <param name="s"> A <see cref="T:System.String" />. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsHighSurrogate(System.Char)"> <summary> Indicates whether the specified <see cref="T:System.Char" /> object is a high surrogate. </summary> <returns>true if the numeric value of the <paramref name="c" /> parameter ranges from U+D800 through U+DBFF; otherwise, false. </returns> <param name="c"> A character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsHighSurrogate(System.String,System.Int32)"> <summary> Indicates whether the <see cref="T:System.Char" /> object at the specified position in a string is a high surrogate. </summary> <returns>true if the numeric value of the specified character in the <paramref name="s" /> parameter ranges from U+D800 through U+DBFF; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> A position within <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a position within <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsLetter(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as an alphabetic letter. </summary> <returns>true if <paramref name="c" /> is an alphabetic letter; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsLetter(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as an alphabetic character. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is an alphabetic character; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsLetterOrDigit(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as an alphabetic letter or a decimal digit. </summary> <returns>true if <paramref name="c" /> is an alphabetic letter or a decimal digit; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsLetterOrDigit(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as an alphabetic character or a decimal digit. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is an alphabetic character or a decimal digit; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsLower(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as a lowercase letter. </summary> <returns>true if <paramref name="c" /> is a lowercase letter; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsLower(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as a lowercase letter. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is a lowercase letter; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsLowSurrogate(System.Char)"> <summary> Indicates whether the specified <see cref="T:System.Char" /> object is a low surrogate. </summary> <returns>true if the numeric value of the <paramref name="c" /> parameter ranges from U+DC00 through U+DFFF; otherwise, false. </returns> <param name="c"> A character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsLowSurrogate(System.String,System.Int32)"> <summary> Indicates whether the <see cref="T:System.Char" /> object at the specified position in a string is a low surrogate. </summary> <returns>true if the numeric value of the specified character in the <paramref name="s" /> parameter ranges from U+DC00 through U+DFFF; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> A position within <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a position within <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsNumber(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as a number. </summary> <returns>true if <paramref name="c" /> is a number; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsNumber(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as a number. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is a number; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsPunctuation(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as a punctuation mark. </summary> <returns>true if <paramref name="c" /> is a punctuation mark; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsPunctuation(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as a punctuation mark. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is a punctuation mark; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsSeparator(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as a separator character. </summary> <returns>true if <paramref name="c" /> is a separator character; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsSeparator(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as a separator character. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is a separator character; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsSurrogate(System.Char)"> <summary> Indicates whether the specified character has a surrogate code point. </summary> <returns>true if <paramref name="c" /> is either a high surrogate or a low surrogate; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsSurrogate(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string has a surrogate code point. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is a either a high surrogate or a low surrogate; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsSurrogatePair(System.Char,System.Char)"> <summary> Indicates whether the two specified <see cref="T:System.Char" /> objects form a surrogate pair. </summary> <returns>true if the numeric value of the <paramref name="highSurrogate" /> parameter ranges from U+D800 through U+DBFF, and the numeric value of the <paramref name="lowSurrogate" /> parameter ranges from U+DC00 through U+DFFF; otherwise, false. </returns> <param name="highSurrogate"> A character. </param> <param name="lowSurrogate"> A character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsSurrogatePair(System.String,System.Int32)"> <summary> Indicates whether two adjacent <see cref="T:System.Char" /> objects at a specified position in a string form a surrogate pair. </summary> <returns>true if the <paramref name="s" /> parameter and the <paramref name="index" /> parameter specify a pair of adjacent characters, and the numeric value of the character at position <paramref name="index" /> ranges from U+D800 through U+DBFF, and the numeric value of the character at position <paramref name="index" />+1 ranges from U+DC00 through U+DFFF; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> A position within <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a position within <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsSymbol(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as a symbol character. </summary> <returns>true if <paramref name="c" /> is a symbol character; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsSymbol(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as a symbol character. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is a symbol character; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsUpper(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as an uppercase letter. </summary> <returns>true if <paramref name="c" /> is an uppercase letter; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsUpper(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as an uppercase letter. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is an uppercase letter; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsWhiteSpace(System.Char)"> <summary> Indicates whether the specified Unicode character is categorized as white space. </summary> <returns>true if <paramref name="c" /> is white space; otherwise, false. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.IsWhiteSpace(System.String,System.Int32)"> <summary> Indicates whether the character at the specified position in a specified string is categorized as white space. </summary> <returns>true if the character at position <paramref name="index" /> in <paramref name="s" /> is white space; otherwise, false. </returns> <param name="s"> A string. </param> <param name="index"> The character position in <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the last position in <paramref name="s" />. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.Char.MaxValue"> <summary> Represents the largest possible value of a <see cref="T:System.Char" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Char.MinValue"> <summary> Represents the smallest possible value of a <see cref="T:System.Char" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.Parse(System.String)"> <summary> Converts the value of the specified string to its equivalent Unicode character. </summary> <returns> A Unicode character equivalent to the sole character in <paramref name="s" />. </returns> <param name="s"> A string containing a single character or null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> The length of <paramref name="s" /> is not 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary>Note This conversion is not supported. Attempting to do so throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> </member> <member name="M:System.Char.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.Char" /> object. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Char.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />. </summary> <returns> The value of the current <see cref="T:System.Char" /> object unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Char.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary>Note This conversion is not supported. Attempting to do so throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> </member> <member name="M:System.Char.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary>Note This conversion is not supported. Attempting to do so throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> </member> <member name="M:System.Char.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary>Note This conversion is not supported. Attempting to do so throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> </member> <member name="M:System.Char.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.Char" /> object. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Char.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.Char" /> object. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Char.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.Char" /> object. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Char.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.Char" /> object. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Char.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary>Note This conversion is not supported. Attempting to do so throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> </member> <member name="M:System.Char.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> An object of the specified type. </returns> <param name="type"> A <see cref="T:System.Type" /> object. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value of the current <see cref="T:System.Char" /> object cannot be converted to the type specified by the <paramref name="type" /> parameter. </exception> </member> <member name="M:System.Char.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.Char" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object. (Specify null because the <paramref name="provider" /> parameter is ignored.) </param> </member> <member name="M:System.Char.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.Char" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object. (Specify null because the <paramref name="provider" /> parameter is ignored.) </param> </member> <member name="M:System.Char.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.Char" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object. (Specify null because the <paramref name="provider" /> parameter is ignored.) </param> </member> <member name="M:System.Char.ToLower(System.Char)"> <summary> Converts the value of a Unicode character to its lowercase equivalent. </summary> <returns> The lowercase equivalent of <paramref name="c" />, or the unchanged value of <paramref name="c" />, if <paramref name="c" /> is already lowercase or not alphabetic. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.ToLower(System.Char,System.Globalization.CultureInfo)"> <summary> Converts the value of a specified Unicode character to its lowercase equivalent using specified culture-specific formatting information. </summary> <returns> The lowercase equivalent of <paramref name="c" />, modified according to <paramref name="culture" />, or the unchanged value of <paramref name="c" />, if <paramref name="c" /> is already lowercase or not alphabetic. </returns> <param name="c"> A Unicode character. </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> object that supplies culture-specific casing rules, or null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.ToLowerInvariant(System.Char)"> <summary> Converts the value of a Unicode character to its lowercase equivalent using the casing rules of the invariant culture. </summary> <returns> The lowercase equivalent of the <paramref name="c" /> parameter, or the unchanged value of <paramref name="c" />, if <paramref name="c" /> is already lowercase or not alphabetic. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.ToString"> <summary> Converts the value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.ToString(System.Char)"> <summary> Converts the specified Unicode character to its equivalent string representation. </summary> <returns> The string representation of the value of <paramref name="c" />. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.ToString(System.IFormatProvider)"> <summary> Converts the value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="provider" />. </returns> <param name="provider"> (Reserved) An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.ToUpper(System.Char)"> <summary> Converts the value of a Unicode character to its uppercase equivalent. </summary> <returns> The uppercase equivalent of <paramref name="c" />, or the unchanged value of <paramref name="c" />, if <paramref name="c" /> is already uppercase or not alphabetic. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.ToUpper(System.Char,System.Globalization.CultureInfo)"> <summary> Converts the value of a specified Unicode character to its uppercase equivalent using specified culture-specific formatting information. </summary> <returns> The uppercase equivalent of <paramref name="c" />, modified according to <paramref name="culture" />, or the unchanged value of <paramref name="c" />, if <paramref name="c" /> is already uppercase or not alphabetic. </returns> <param name="c"> A Unicode character. </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> object that supplies culture-specific casing rules, or null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.ToUpperInvariant(System.Char)"> <summary> Converts the value of a Unicode character to its uppercase equivalent using the casing rules of the invariant culture. </summary> <returns> The uppercase equivalent of the <paramref name="c" /> parameter, or the unchanged value of <paramref name="c" />, if <paramref name="c" /> is already uppercase or not alphabetic. </returns> <param name="c"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Char.TryParse(System.String,System.Char@)"> <summary> Converts the value of the specified string to its equivalent Unicode character. A return code indicates whether the conversion succeeded or failed. </summary> <returns>true if the <paramref name="s" /> parameter was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a single character or null. </param> <param name="result"> When this method returns, contains a Unicode character equivalent to the sole character in <paramref name="s" />, if the conversion succeeded, or an undefined value if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null or the length of <paramref name="s" /> is not 1. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.CharEnumerator"> <summary> Supports iterating over a <see cref="T:System.String" /> object and reading its individual characters. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.CharEnumerator.Clone"> <summary> Creates a copy of the current <see cref="T:System.CharEnumerator" /> object. </summary> <returns> An <see cref="T:System.Object" /> that is a copy of the current <see cref="T:System.CharEnumerator" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.CharEnumerator.Current"> <summary> Gets the currently referenced character in the string enumerated by this <see cref="T:System.CharEnumerator" /> object. </summary> <returns> The Unicode character currently referenced by this <see cref="T:System.CharEnumerator" /> object. </returns> <exception cref="T:System.InvalidOperationException"> The index is invalid; that is, it is before the first or after the last character of the enumerated string. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.CharEnumerator.MoveNext"> <summary> Increments the internal index of the current <see cref="T:System.CharEnumerator" /> object to the next character of the enumerated string. </summary> <returns>true if the index is successfully incremented and within the enumerated string; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.CharEnumerator.Reset"> <summary> Initializes the index to a position logically before the first character of the enumerated string. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.CharEnumerator.System#Collections#IEnumerator#Current"> <summary> Gets the currently referenced character in the string enumerated by this <see cref="T:System.CharEnumerator" /> object. For a description of this member, see <see cref="P:System.Collections.IEnumerator.Current" />. </summary> <returns> The boxed Unicode character currently referenced by this <see cref="T:System.CharEnumerator" /> object. </returns> <exception cref="T:System.InvalidOperationException"> Enumeration has not started. -or- Enumeration has ended. </exception> </member> <member name="M:System.CharEnumerator.System#IDisposable#Dispose"> <summary> Releases all resources used by the <see cref="T:System.CharEnumerator" /> class. </summary> </member> <member name="T:System.CLSCompliantAttribute"> <summary> Indicates whether a program element is compliant with the Common Language Specification (CLS). This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.CLSCompliantAttribute.#ctor(System.Boolean)"> <summary> Initializes an instance of the <see cref="T:System.CLSCompliantAttribute" /> class with a Boolean value indicating whether the indicated program element is CLS-compliant. </summary> <param name="isCompliant">true if CLS-compliant; otherwise, false. </param> </member> <member name="P:System.CLSCompliantAttribute.IsCompliant"> <summary> Gets the Boolean value indicating whether the indicated program element is CLS-compliant. </summary> <returns>true if the program element is CLS-compliant; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Comparison`1"> <summary> Represents the method that compares two objects of the same type. </summary> <returns> Value Condition Less than 0 <paramref name="x" /> is less than <paramref name="y" />. 0 <paramref name="x" /> equals <paramref name="y" />. Greater than 0 <paramref name="x" /> is greater than <paramref name="y" />. </returns> <param name="x"> The first object to compare. </param> <param name="y"> The second object to compare. </param> <typeparam name="T"> The type of the objects to compare. </typeparam> <filterpriority>1</filterpriority> </member> <member name="T:System.Console"> <summary> Represents the standard input, output, and error streams for console applications. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.BackgroundColor"> <summary> Gets or sets the background color of the console. </summary> <returns> A <see cref="T:System.ConsoleColor" /> that specifies the background color of the console; that is, the color that appears behind each character. The default is black. </returns> <exception cref="T:System.ArgumentException"> The color specified in a set operation is not a valid member of <see cref="T:System.ConsoleColor" />. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="M:System.Console.Beep"> <summary> Plays the sound of a beep through the console speaker. </summary> <exception cref="T:System.Security.HostProtectionException"> This method was executed on a server, such as SQL Server, that does not permit access to a user interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Beep(System.Int32,System.Int32)"> <summary> Plays the sound of a beep of a specified frequency and duration through the console speaker. </summary> <param name="frequency"> The frequency of the beep, ranging from 37 to 32767 hertz. </param> <param name="duration"> The duration of the beep measured in milliseconds. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="frequency" /> is less than 37 or more than 32767 hertz. -or- <paramref name="duration" /> is less than or equal to zero. </exception> <exception cref="T:System.Security.HostProtectionException"> This method was executed on a server, such as SQL Server, that does not permit access to the console. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.BufferHeight"> <summary> Gets or sets the height of the buffer area. </summary> <returns> The current height, in rows, of the buffer area. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value in a set operation is less than or equal to zero. -or- The value in a set operation is greater than or equal to <see cref="F:System.Int16.MaxValue" />. -or- The value in a set operation is less than <see cref="P:System.Console.WindowTop" /> + <see cref="P:System.Console.WindowHeight" />. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.BufferWidth"> <summary> Gets or sets the width of the buffer area. </summary> <returns> The current width, in columns, of the buffer area. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value in a set operation is less than or equal to zero. -or- The value in a set operation is greater than or equal to <see cref="F:System.Int16.MaxValue" />. -or- The value in a set operation is less than <see cref="P:System.Console.WindowLeft" /> + <see cref="P:System.Console.WindowWidth" />. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="E:System.Console.CancelKeyPress"> <summary> Occurs when the <see cref="F:System.ConsoleModifiers.Control" /> modifier key (CTRL) and <see cref="F:System.ConsoleKey.C" /> console key (C) are pressed simultaneously (CTRL+C). </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.CapsLock"> <summary> Gets a value indicating whether the CAPS LOCK keyboard toggle is turned on or turned off. </summary> <returns>true if CAPS LOCK is turned on; false if CAPS LOCK is turned off. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Clear"> <summary> Clears the console buffer and corresponding console window of display information. </summary> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.CursorLeft"> <summary> Gets or sets the column position of the cursor within the buffer area. </summary> <returns> The current position, in columns, of the cursor. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value in a set operation is less than zero. -or- The value in a set operation is greater than or equal to <see cref="P:System.Console.BufferWidth" />. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.CursorSize"> <summary> Gets or sets the height of the cursor within a character cell. </summary> <returns> The size of the cursor expressed as a percentage of the height of a character cell. The property value ranges from 1 to 100. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value specified in a set operation is less than 1 or greater than 100. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="P:System.Console.CursorTop"> <summary> Gets or sets the row position of the cursor within the buffer area. </summary> <returns> The current position, in rows, of the cursor. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value in a set operation is less than zero. -or- The value in a set operation is greater than or equal to <see cref="P:System.Console.BufferHeight" />. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.CursorVisible"> <summary> Gets or sets a value indicating whether the cursor is visible. </summary> <returns>true if the cursor is visible; otherwise, false. </returns> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="P:System.Console.Error"> <summary> Gets the standard error output stream. </summary> <returns> A <see cref="T:System.IO.TextWriter" /> that represents the standard error output stream. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.ForegroundColor"> <summary> Gets or sets the foreground color of the console. </summary> <returns> A <see cref="T:System.ConsoleColor" /> that specifies the foreground color of the console; that is, the color of each character that is displayed. The default is gray. </returns> <exception cref="T:System.ArgumentException"> The color specified in a set operation is not a valid member of <see cref="T:System.ConsoleColor" />. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="P:System.Console.In"> <summary> Gets the standard input stream. </summary> <returns> A <see cref="T:System.IO.TextReader" /> that represents the standard input stream. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.InputEncoding"> <summary> Gets or sets the encoding the console uses to read input. </summary> <returns> The encoding used to read console input. </returns> <exception cref="T:System.ArgumentNullException"> The property value in a set operation is null. </exception> <exception cref="T:System.PlatformNotSupportedException"> This property's set operation is not supported on Windows 98, Windows 98 Second Edition, or Windows Millennium Edition. </exception> <exception cref="T:System.IO.IOException"> An error occurred during the execution of this operation. </exception> <exception cref="T:System.Security.SecurityException"> Your application does not have permission to perform this operation. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.KeyAvailable"> <summary> Gets a value indicating whether a key press is available in the input stream. </summary> <returns>true if a key press is available; otherwise, false. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.InvalidOperationException"> Standard input is redirected to a file instead of the keyboard. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.LargestWindowHeight"> <summary> Gets the largest possible number of console window rows, based on the current font and screen resolution. </summary> <returns> The height of the largest possible console window measured in rows. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.LargestWindowWidth"> <summary> Gets the largest possible number of console window columns, based on the current font and screen resolution. </summary> <returns> The width of the largest possible console window measured in columns. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Copies a specified source area of the screen buffer to a specified destination area. </summary> <param name="sourceLeft"> The leftmost column of the source area. </param> <param name="sourceTop"> The topmost row of the source area. </param> <param name="sourceWidth"> The number of columns in the source area. </param> <param name="sourceHeight"> The number of rows in the source area. </param> <param name="targetLeft"> The leftmost column of the destination area. </param> <param name="targetTop"> The topmost row of the destination area. </param> <exception cref="T:System.ArgumentOutOfRangeException"> One or more of the parameters is less than zero. -or- <paramref name="sourceLeft" /> or <paramref name="targetLeft" /> is greater than or equal to <see cref="P:System.Console.BufferWidth" />. -or- <paramref name="sourceTop" /> or <paramref name="targetTop" /> is greater than or equal to <see cref="P:System.Console.BufferHeight" />. -or- <paramref name="sourceTop" /> + <paramref name="sourceHeight" /> is greater than or equal to <see cref="P:System.Console.BufferHeight" />. -or- <paramref name="sourceLeft" /> + <paramref name="sourceWidth" /> is greater than or equal to <see cref="P:System.Console.BufferWidth" />. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="M:System.Console.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Char,System.ConsoleColor,System.ConsoleColor)"> <summary> Copies a specified source area of the screen buffer to a specified destination area. </summary> <param name="sourceLeft"> The leftmost column of the source area. </param> <param name="sourceTop"> The topmost row of the source area. </param> <param name="sourceWidth"> The number of columns in the source area. </param> <param name="sourceHeight"> The number of rows in the source area. </param> <param name="targetLeft"> The leftmost column of the destination area. </param> <param name="targetTop"> The topmost row of the destination area. </param> <param name="sourceChar"> The character used to fill the source area. </param> <param name="sourceForeColor"> The foreground color used to fill the source area. </param> <param name="sourceBackColor"> The background color used to fill the source area. </param> <exception cref="T:System.ArgumentOutOfRangeException"> One or more of the parameters is less than zero. -or- <paramref name="sourceLeft" /> or <paramref name="targetLeft" /> is greater than or equal to <see cref="P:System.Console.BufferWidth" />. -or- <paramref name="sourceTop" /> or <paramref name="targetTop" /> is greater than or equal to <see cref="P:System.Console.BufferHeight" />. -or- <paramref name="sourceTop" /> + <paramref name="sourceHeight" /> is greater than or equal to <see cref="P:System.Console.BufferHeight" />. -or- <paramref name="sourceLeft" /> + <paramref name="sourceWidth" /> is greater than or equal to <see cref="P:System.Console.BufferWidth" />. </exception> <exception cref="T:System.ArgumentException"> One or both of the color parameters is not a member of the <see cref="T:System.ConsoleColor" /> enumeration. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="P:System.Console.NumberLock"> <summary> Gets a value indicating whether the NUM LOCK keyboard toggle is turned on or turned off. </summary> <returns>true if NUM LOCK is turned on; false if NUM LOCK is turned off. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.OpenStandardError"> <summary> Acquires the standard error stream. </summary> <returns> The standard error stream. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.OpenStandardError(System.Int32)"> <summary> Acquires the standard error stream, which is set to a specified buffer size. </summary> <returns> The standard error stream. </returns> <param name="bufferSize"> The internal stream buffer size. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is less than or equal to zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.OpenStandardInput"> <summary> Acquires the standard input stream. </summary> <returns> The standard input stream. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.OpenStandardInput(System.Int32)"> <summary> Acquires the standard input stream, which is set to a specified buffer size. </summary> <returns> The standard input stream. </returns> <param name="bufferSize"> The internal stream buffer size. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is less than or equal to zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.OpenStandardOutput"> <summary> Acquires the standard output stream. </summary> <returns> The standard output stream. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.OpenStandardOutput(System.Int32)"> <summary> Acquires the standard output stream, which is set to a specified buffer size. </summary> <returns> The standard output stream. </returns> <param name="bufferSize"> The internal stream buffer size. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is less than or equal to zero. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.Out"> <summary> Gets the standard output stream. </summary> <returns> A <see cref="T:System.IO.TextWriter" /> that represents the standard output stream. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.OutputEncoding"> <summary> Gets or sets the encoding the console uses to write output. </summary> <returns> The encoding used to write console output. </returns> <exception cref="T:System.ArgumentNullException"> The property value in a set operation is null. </exception> <exception cref="T:System.PlatformNotSupportedException"> This property's set operation is not supported on Windows 98, Windows 98 Second Edition, or Windows Millennium Edition. </exception> <exception cref="T:System.IO.IOException"> An error occurred during the execution of this operation. </exception> <exception cref="T:System.Security.SecurityException"> Your application does not have permission to perform this operation. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Read"> <summary> Reads the next character from the standard input stream. </summary> <returns> The next character from the input stream, or negative one (-1) if there are currently no more characters to be read. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.ReadKey"> <summary> Obtains the next character or function key pressed by the user. The pressed key is displayed in the console window. </summary> <returns> A <see cref="T:System.ConsoleKeyInfo" /> object that describes the <see cref="T:System.ConsoleKey" /> constant and Unicode character, if any, that correspond to the pressed console key. The <see cref="T:System.ConsoleKeyInfo" /> object also describes, in a bitwise combination of <see cref="T:System.ConsoleModifiers" /> values, whether one or more SHIFT, ALT, or CTRL modifier keys was pressed simultaneously with the console key. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="P:System.Console.In" /> property is redirected from some stream other than the console. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.ReadKey(System.Boolean)"> <summary> Obtains the next character or function key pressed by the user. The pressed key is optionally displayed in the console window. </summary> <returns> A <see cref="T:System.ConsoleKeyInfo" /> object that describes the <see cref="T:System.ConsoleKey" /> constant and Unicode character, if any, that correspond to the pressed console key. The <see cref="T:System.ConsoleKeyInfo" /> object also describes, in a bitwise combination of <see cref="T:System.ConsoleModifiers" /> values, whether one or more SHIFT, ALT, or CTRL modifier keys was pressed simultaneously with the console key. </returns> <param name="intercept"> Determines whether to display the pressed key in the console window. true to not display the pressed key; otherwise, false. </param> <exception cref="T:System.InvalidOperationException"> The <see cref="P:System.Console.In" /> property is redirected from some stream other than the console. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.ReadLine"> <summary> Reads the next line of characters from the standard input stream. </summary> <returns> The next line of characters from the input stream, or null if no more lines are available. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to allocate a buffer for the returned string. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The number of characters in the next line of characters is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.ResetColor"> <summary> Sets the foreground and background console colors to their defaults. </summary> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="M:System.Console.SetBufferSize(System.Int32,System.Int32)"> <summary> Sets the height and width of the screen buffer area to the specified values. </summary> <param name="width"> The width of the buffer area measured in columns. </param> <param name="height"> The height of the buffer area measured in rows. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="height" /> or <paramref name="width" /> is less than or equal to zero. -or- <paramref name="height" /> or <paramref name="width" /> is greater than or equal to <see cref="F:System.Int16.MaxValue" />. -or- <paramref name="width" /> is less than <see cref="P:System.Console.WindowLeft" /> + <see cref="P:System.Console.WindowWidth" />. -or- <paramref name="height" /> is less than <see cref="P:System.Console.WindowTop" /> + <see cref="P:System.Console.WindowHeight" />. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="M:System.Console.SetCursorPosition(System.Int32,System.Int32)"> <summary> Sets the position of the cursor. </summary> <param name="left"> The column position of the cursor. </param> <param name="top"> The row position of the cursor. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="left" /> or <paramref name="top" /> is less than zero. -or- <paramref name="left" /> is greater than or equal to <see cref="P:System.Console.BufferWidth" />. -or- <paramref name="top" /> is greater than or equal to <see cref="P:System.Console.BufferHeight" />. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="M:System.Console.SetError(System.IO.TextWriter)"> <summary> Sets the <see cref="P:System.Console.Error" /> property to the specified <see cref="T:System.IO.TextWriter" /> object. </summary> <param name="newError"> A <see cref="T:System.IO.TextWriter" /> stream that is the new standard error output. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="newError" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Console.SetIn(System.IO.TextReader)"> <summary> Sets the <see cref="P:System.Console.In" /> property to the specified <see cref="T:System.IO.TextReader" /> object. </summary> <param name="newIn"> A <see cref="T:System.IO.TextReader" /> stream that is the new standard input. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="newIn" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Console.SetOut(System.IO.TextWriter)"> <summary> Sets the <see cref="P:System.Console.Out" /> property to the specified <see cref="T:System.IO.TextWriter" /> object. </summary> <param name="newOut"> A <see cref="T:System.IO.TextWriter" /> stream that is the new standard output. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="newOut" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Console.SetWindowPosition(System.Int32,System.Int32)"> <summary> Sets the position of the console window relative to the screen buffer. </summary> <param name="left"> The column position of the upper left corner of the console window. </param> <param name="top"> The row position of the upper left corner of the console window. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="left" /> or <paramref name="top" /> is less than zero. -or- <paramref name="left" /> + <see cref="P:System.Console.WindowWidth" /> is greater than <see cref="P:System.Console.BufferWidth" />. -or- <paramref name="top" /> + <see cref="P:System.Console.WindowHeight" /> is greater than <see cref="P:System.Console.BufferHeight" />. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="M:System.Console.SetWindowSize(System.Int32,System.Int32)"> <summary> Sets the height and width of the console window to the specified values. </summary> <param name="width"> The width of the console window measured in columns. </param> <param name="height"> The height of the console window measured in rows. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="width" /> or <paramref name="height" /> is less than or equal to zero. -or- <paramref name="width" /> plus <see cref="P:System.Console.WindowLeft" /> or <paramref name="height" /> plus <see cref="P:System.Console.WindowTop" /> is greater than or equal to <see cref="F:System.Int16.MaxValue" />. -or- <paramref name="width" /> or <paramref name="height" /> is greater than the largest possible window width or height for the current screen resolution and console font. </exception> <exception cref="T:System.Security.SecurityException"> The user does not have permission to perform this action. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="P:System.Console.Title"> <summary> Gets or sets the title to display in the console title bar. </summary> <returns> The string to be displayed in the title bar of the console. The maximum length of the title string is 24500 characters. </returns> <exception cref="T:System.InvalidOperationException"> In a get operation, the retrieved title is longer than 24500 characters. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> In a set operation, the specified title is longer than 24500 characters. </exception> <exception cref="T:System.ArgumentNullException"> In a set operation, the specified title is null. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="P:System.Console.TreatControlCAsInput"> <summary> Gets or sets a value indicating whether the combination of the <see cref="F:System.ConsoleModifiers.Control" /> modifier key and <see cref="F:System.ConsoleKey.C" /> console key (CTRL+C) is treated as ordinary input or as an interruption that is handled by the operating system. </summary> <returns>true if CTRL+C is treated as ordinary input; otherwise, false. </returns> <exception cref="T:System.IO.IOException"> Unable to get or set the input mode of the console input buffer. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" /> </PermissionSet> </member> <member name="P:System.Console.WindowHeight"> <summary> Gets or sets the height of the console window area. </summary> <returns> The height of the console window measured in rows. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <see cref="P:System.Console.WindowWidth" /> property or the value of the <see cref="P:System.Console.WindowHeight" /> property is less than or equal to 0. -or- The value of the <see cref="P:System.Console.WindowHeight" /> property plus the value of the <see cref="P:System.Console.WindowTop" /> property is greater than or equal to <see cref="F:System.Int16.MaxValue" />. -or- The value of the <see cref="P:System.Console.WindowWidth" /> property or the value of the <see cref="P:System.Console.WindowHeight" /> property is greater than the largest possible window width or height for the current screen resolution and console font. </exception> <exception cref="T:System.IO.IOException"> Error reading or writing information. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.WindowLeft"> <summary> Gets or sets the leftmost position of the console window area relative to the screen buffer. </summary> <returns> The leftmost console window position measured in columns. </returns> <exception cref="T:System.IO.IOException"> Error reading or writing information. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.WindowTop"> <summary> Gets or sets the top position of the console window area relative to the screen buffer. </summary> <returns> The uppermost console window position measured in rows. </returns> <exception cref="T:System.IO.IOException"> Error reading or writing information. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Console.WindowWidth"> <summary> Gets or sets the width of the console window. </summary> <returns> The width of the console window measured in columns. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <see cref="P:System.Console.WindowWidth" /> property or the value of the <see cref="P:System.Console.WindowHeight" /> property is less than or equal to 0. -or- The value of the <see cref="P:System.Console.WindowHeight" /> property plus the value of the <see cref="P:System.Console.WindowTop" /> property is greater than or equal to <see cref="F:System.Int16.MaxValue" />. -or- The value of the <see cref="P:System.Console.WindowWidth" /> property or the value of the <see cref="P:System.Console.WindowHeight" /> property is greater than the largest possible window width or height for the current screen resolution and console font. </exception> <exception cref="T:System.IO.IOException"> Error reading or writing information. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.Boolean)"> <summary> Writes the text representation of the specified Boolean value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.Char)"> <summary> Writes the specified Unicode character value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.Char[])"> <summary> Writes the specified array of Unicode characters to the standard output stream. </summary> <param name="buffer"> A Unicode character array. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.Char[],System.Int32,System.Int32)"> <summary> Writes the specified subarray of Unicode characters to the standard output stream. </summary> <param name="buffer"> An array of Unicode characters. </param> <param name="index"> The starting position in <paramref name="buffer" />. </param> <param name="count"> The number of characters to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> plus <paramref name="count" /> specify a position that is not within <paramref name="buffer" />. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.Decimal)"> <summary> Writes the text representation of the specified <see cref="T:System.Decimal" /> value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.Double)"> <summary> Writes the text representation of the specified double-precision floating-point value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.Int32)"> <summary> Writes the text representation of the specified 32-bit signed integer value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.Int64)"> <summary> Writes the text representation of the specified 64-bit signed integer value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.Object)"> <summary> Writes the text representation of the specified object to the standard output stream. </summary> <param name="value"> The value to write, or null. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.Single)"> <summary> Writes the text representation of the specified single-precision floating-point value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.String)"> <summary> Writes the specified string value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.String,System.Object)"> <summary> Writes the text representation of the specified object to the standard output stream using the specified format information. </summary> <param name="format"> A composite format string. </param> <param name="arg0"> An object to write using <paramref name="format" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> The format specification in <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.String,System.Object,System.Object)"> <summary> Writes the text representation of the specified objects to the standard output stream using the specified format information. </summary> <param name="format"> A composite format string. </param> <param name="arg0"> The first object to write using <paramref name="format" />. </param> <param name="arg1"> The second object to write using <paramref name="format" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> The format specification in <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.String,System.Object,System.Object,System.Object)"> <summary> Writes the text representation of the specified objects to the standard output stream using the specified format information. </summary> <param name="format"> A composite format string. </param> <param name="arg0"> The first object to write using <paramref name="format" />. </param> <param name="arg1"> The second object to write using <paramref name="format" />. </param> <param name="arg2"> The third object to write using <paramref name="format" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> The format specification in <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.String,System.Object,System.Object,System.Object,System.Object)"> <summary> Writes the text representation of the specified objects and variable-length parameter list to the standard output stream using the specified format information. </summary> <param name="format"> A composite format string. </param> <param name="arg0"> The first object to write using <paramref name="format" />. </param> <param name="arg1"> The second object to write using <paramref name="format" />. </param> <param name="arg2"> The third object to write using <paramref name="format" />. </param> <param name="arg3"> The fourth object to write using <paramref name="format" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> The format specification in <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.String,System.Object[])"> <summary> Writes the text representation of the specified array of objects to the standard output stream using the specified format information. </summary> <param name="format"> A composite format string. </param> <param name="arg"> An array of objects to write using <paramref name="format" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> or <paramref name="arg" /> is null. </exception> <exception cref="T:System.FormatException"> The format specification in <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.UInt32)"> <summary> Writes the text representation of the specified 32-bit unsigned integer value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.Write(System.UInt64)"> <summary> Writes the text representation of the specified 64-bit unsigned integer value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine"> <summary> Writes the current line terminator to the standard output stream. </summary> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.Boolean)"> <summary> Writes the text representation of the specified Boolean value, followed by the current line terminator, to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.Char)"> <summary> Writes the specified Unicode character, followed by the current line terminator, value to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.Char[])"> <summary> Writes the specified array of Unicode characters, followed by the current line terminator, to the standard output stream. </summary> <param name="buffer"> A Unicode character array. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.Char[],System.Int32,System.Int32)"> <summary> Writes the specified subarray of Unicode characters, followed by the current line terminator, to the standard output stream. </summary> <param name="buffer"> An array of Unicode characters. </param> <param name="index"> The starting position in <paramref name="buffer" />. </param> <param name="count"> The number of characters to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> plus <paramref name="count" /> specify a position that is not within <paramref name="buffer" />. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.Decimal)"> <summary> Writes the text representation of the specified <see cref="T:System.Decimal" /> value, followed by the current line terminator, to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.Double)"> <summary> Writes the text representation of the specified double-precision floating-point value, followed by the current line terminator, to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.Int32)"> <summary> Writes the text representation of the specified 32-bit signed integer value, followed by the current line terminator, to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.Int64)"> <summary> Writes the text representation of the specified 64-bit signed integer value, followed by the current line terminator, to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.Object)"> <summary> Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.Single)"> <summary> Writes the text representation of the specified single-precision floating-point value, followed by the current line terminator, to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.String)"> <summary> Writes the specified string value, followed by the current line terminator, to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.String,System.Object)"> <summary> Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream using the specified format information. </summary> <param name="format"> A composite format string. </param> <param name="arg0"> An object to write using <paramref name="format" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> The format specification in <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.String,System.Object,System.Object)"> <summary> Writes the text representation of the specified objects, followed by the current line terminator, to the standard output stream using the specified format information. </summary> <param name="format"> A composite format string. </param> <param name="arg0"> The first object to write using <paramref name="format" />. </param> <param name="arg1"> The second object to write using <paramref name="format" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> The format specification in <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.String,System.Object,System.Object,System.Object)"> <summary> Writes the text representation of the specified objects, followed by the current line terminator, to the standard output stream using the specified format information. </summary> <param name="format"> A composite format string. </param> <param name="arg0"> The first object to write using <paramref name="format" />. </param> <param name="arg1"> The second object to write using <paramref name="format" />. </param> <param name="arg2"> The third object to write using <paramref name="format" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> The format specification in <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.String,System.Object,System.Object,System.Object,System.Object)"> <summary> Writes the text representation of the specified objects and variable-length parameter list, followed by the current line terminator, to the standard output stream using the specified format information. </summary> <param name="format"> A composite format string. </param> <param name="arg0"> The first object to write using <paramref name="format" />. </param> <param name="arg1"> The second object to write using <paramref name="format" />. </param> <param name="arg2"> The third object to write using <paramref name="format" />. </param> <param name="arg3"> The fourth object to write using <paramref name="format" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> The format specification in <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.String,System.Object[])"> <summary> Writes the text representation of the specified array of objects, followed by the current line terminator, to the standard output stream using the specified format information. </summary> <param name="format"> A composite format string. </param> <param name="arg"> An array of objects to write using <paramref name="format" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> or <paramref name="arg" /> is null. </exception> <exception cref="T:System.FormatException"> The format specification in <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.UInt32)"> <summary> Writes the text representation of the specified 32-bit unsigned integer value, followed by the current line terminator, to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Console.WriteLine(System.UInt64)"> <summary> Writes the text representation of the specified 64-bit unsigned integer value, followed by the current line terminator, to the standard output stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.ConsoleCancelEventArgs"> <summary> Provides data for the <see cref="E:System.Console.CancelKeyPress" /> event. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.ConsoleCancelEventArgs.Cancel"> <summary> Gets or sets a value indicating whether simultaneously pressing the <see cref="F:System.ConsoleModifiers.Control" /> modifier key and <see cref="F:System.ConsoleKey.C" /> console key (CTRL+C) terminates the current process. </summary> <returns>true if the current process should resume when the event handler concludes; false if the current process should terminate. </returns> <exception cref="T:System.InvalidOperationException">true was specified in a set operation and the event was caused by simultaneously pressing the <see cref="F:System.ConsoleModifiers.Control" /> modifier key and the BREAK console key (CTRL+BREAK). </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.ConsoleCancelEventArgs.SpecialKey"> <summary> Gets the combination of modifier and console keys that interrupted the current process. </summary> <returns> One of the <see cref="T:System.ConsoleSpecialKey" /> values. There is no default value. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.ConsoleCancelEventHandler"> <summary> Represents the method that will handle the <see cref="E:System.Console.CancelKeyPress" /> event of a <see cref="T:System.Console" />. </summary> <param name="sender"> The source of the event. </param> <param name="e"> A <see cref="T:System.ConsoleCancelEventArgs" /> object that contains the event data. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.ConsoleColor"> <summary> Specifies constants that define foreground and background colors for the console. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.ConsoleColor.Black"> <summary> The color black. </summary> </member> <member name="F:System.ConsoleColor.DarkBlue"> <summary> The color dark blue. </summary> </member> <member name="F:System.ConsoleColor.DarkGreen"> <summary> The color dark green. </summary> </member> <member name="F:System.ConsoleColor.DarkCyan"> <summary> The color dark cyan (dark blue-green). </summary> </member> <member name="F:System.ConsoleColor.DarkRed"> <summary> The color dark red. </summary> </member> <member name="F:System.ConsoleColor.DarkMagenta"> <summary> The color dark magenta (dark purplish-red). </summary> </member> <member name="F:System.ConsoleColor.DarkYellow"> <summary> The color dark yellow (ochre). </summary> </member> <member name="F:System.ConsoleColor.Gray"> <summary> The color gray. </summary> </member> <member name="F:System.ConsoleColor.DarkGray"> <summary> The color dark gray. </summary> </member> <member name="F:System.ConsoleColor.Blue"> <summary> The color blue. </summary> </member> <member name="F:System.ConsoleColor.Green"> <summary> The color green. </summary> </member> <member name="F:System.ConsoleColor.Cyan"> <summary> The color cyan (blue-green). </summary> </member> <member name="F:System.ConsoleColor.Red"> <summary> The color red. </summary> </member> <member name="F:System.ConsoleColor.Magenta"> <summary> The color magenta (purplish-red). </summary> </member> <member name="F:System.ConsoleColor.Yellow"> <summary> The color yellow. </summary> </member> <member name="F:System.ConsoleColor.White"> <summary> The color white. </summary> </member> <member name="T:System.ConsoleKey"> <summary> Specifies the standard keys on a console. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.ConsoleKey.Backspace"> <summary> The BACKSPACE key. </summary> </member> <member name="F:System.ConsoleKey.Tab"> <summary> The TAB key. </summary> </member> <member name="F:System.ConsoleKey.Clear"> <summary> The CLEAR key. </summary> </member> <member name="F:System.ConsoleKey.Enter"> <summary> The ENTER key. </summary> </member> <member name="F:System.ConsoleKey.Pause"> <summary> The PAUSE key. </summary> </member> <member name="F:System.ConsoleKey.Escape"> <summary> The ESC (ESCAPE) key. </summary> </member> <member name="F:System.ConsoleKey.Spacebar"> <summary> The SPACEBAR key. </summary> </member> <member name="F:System.ConsoleKey.PageUp"> <summary> The PAGE UP key. </summary> </member> <member name="F:System.ConsoleKey.PageDown"> <summary> The PAGE DOWN key. </summary> </member> <member name="F:System.ConsoleKey.End"> <summary> The END key. </summary> </member> <member name="F:System.ConsoleKey.Home"> <summary> The HOME key. </summary> </member> <member name="F:System.ConsoleKey.LeftArrow"> <summary> The LEFT ARROW key. </summary> </member> <member name="F:System.ConsoleKey.UpArrow"> <summary> The UP ARROW key. </summary> </member> <member name="F:System.ConsoleKey.RightArrow"> <summary> The RIGHT ARROW key. </summary> </member> <member name="F:System.ConsoleKey.DownArrow"> <summary> The DOWN ARROW key. </summary> </member> <member name="F:System.ConsoleKey.Select"> <summary> The SELECT key. </summary> </member> <member name="F:System.ConsoleKey.Print"> <summary> The PRINT key. </summary> </member> <member name="F:System.ConsoleKey.Execute"> <summary> The EXECUTE key. </summary> </member> <member name="F:System.ConsoleKey.PrintScreen"> <summary> The PRINT SCREEN key. </summary> </member> <member name="F:System.ConsoleKey.Insert"> <summary> The INS (INSERT) key. </summary> </member> <member name="F:System.ConsoleKey.Delete"> <summary> The DEL (DELETE) key. </summary> </member> <member name="F:System.ConsoleKey.Help"> <summary> The HELP key. </summary> </member> <member name="F:System.ConsoleKey.D0"> <summary> The 0 key. </summary> </member> <member name="F:System.ConsoleKey.D1"> <summary> The 1 key. </summary> </member> <member name="F:System.ConsoleKey.D2"> <summary> The 2 key. </summary> </member> <member name="F:System.ConsoleKey.D3"> <summary> The 3 key. </summary> </member> <member name="F:System.ConsoleKey.D4"> <summary> The 4 key. </summary> </member> <member name="F:System.ConsoleKey.D5"> <summary> The 5 key. </summary> </member> <member name="F:System.ConsoleKey.D6"> <summary> The 6 key. </summary> </member> <member name="F:System.ConsoleKey.D7"> <summary> The 7 key. </summary> </member> <member name="F:System.ConsoleKey.D8"> <summary> The 8 key. </summary> </member> <member name="F:System.ConsoleKey.D9"> <summary> The 9 key. </summary> </member> <member name="F:System.ConsoleKey.A"> <summary> The A key. </summary> </member> <member name="F:System.ConsoleKey.B"> <summary> The B key. </summary> </member> <member name="F:System.ConsoleKey.C"> <summary> The C key. </summary> </member> <member name="F:System.ConsoleKey.D"> <summary> The D key. </summary> </member> <member name="F:System.ConsoleKey.E"> <summary> The E key. </summary> </member> <member name="F:System.ConsoleKey.F"> <summary> The F key. </summary> </member> <member name="F:System.ConsoleKey.G"> <summary> The G key. </summary> </member> <member name="F:System.ConsoleKey.H"> <summary> The H key. </summary> </member> <member name="F:System.ConsoleKey.I"> <summary> The I key. </summary> </member> <member name="F:System.ConsoleKey.J"> <summary> The J key. </summary> </member> <member name="F:System.ConsoleKey.K"> <summary> The K key. </summary> </member> <member name="F:System.ConsoleKey.L"> <summary> The L key. </summary> </member> <member name="F:System.ConsoleKey.M"> <summary> The M key. </summary> </member> <member name="F:System.ConsoleKey.N"> <summary> The N key. </summary> </member> <member name="F:System.ConsoleKey.O"> <summary> The O key. </summary> </member> <member name="F:System.ConsoleKey.P"> <summary> The P key. </summary> </member> <member name="F:System.ConsoleKey.Q"> <summary> The Q key. </summary> </member> <member name="F:System.ConsoleKey.R"> <summary> The R key. </summary> </member> <member name="F:System.ConsoleKey.S"> <summary> The S key. </summary> </member> <member name="F:System.ConsoleKey.T"> <summary> The T key. </summary> </member> <member name="F:System.ConsoleKey.U"> <summary> The U key. </summary> </member> <member name="F:System.ConsoleKey.V"> <summary> The V key. </summary> </member> <member name="F:System.ConsoleKey.W"> <summary> The W key. </summary> </member> <member name="F:System.ConsoleKey.X"> <summary> The X key. </summary> </member> <member name="F:System.ConsoleKey.Y"> <summary> The Y key. </summary> </member> <member name="F:System.ConsoleKey.Z"> <summary> The Z key. </summary> </member> <member name="F:System.ConsoleKey.LeftWindows"> <summary> The left Windows logo key (Microsoft Natural Keyboard). </summary> </member> <member name="F:System.ConsoleKey.RightWindows"> <summary> The right Windows logo key (Microsoft Natural Keyboard). </summary> </member> <member name="F:System.ConsoleKey.Applications"> <summary> The Application key (Microsoft Natural Keyboard). </summary> </member> <member name="F:System.ConsoleKey.Sleep"> <summary> The Computer Sleep key. </summary> </member> <member name="F:System.ConsoleKey.NumPad0"> <summary> The 0 key on the numeric keypad. </summary> </member> <member name="F:System.ConsoleKey.NumPad1"> <summary> The 1 key on the numeric keypad. </summary> </member> <member name="F:System.ConsoleKey.NumPad2"> <summary> The 2 key on the numeric keypad. </summary> </member> <member name="F:System.ConsoleKey.NumPad3"> <summary> The 3 key on the numeric keypad. </summary> </member> <member name="F:System.ConsoleKey.NumPad4"> <summary> The 4 key on the numeric keypad. </summary> </member> <member name="F:System.ConsoleKey.NumPad5"> <summary> The 5 key on the numeric keypad. </summary> </member> <member name="F:System.ConsoleKey.NumPad6"> <summary> The 6 key on the numeric keypad. </summary> </member> <member name="F:System.ConsoleKey.NumPad7"> <summary> The 7 key on the numeric keypad. </summary> </member> <member name="F:System.ConsoleKey.NumPad8"> <summary> The 8 key on the numeric keypad. </summary> </member> <member name="F:System.ConsoleKey.NumPad9"> <summary> The 9 key on the numeric keypad. </summary> </member> <member name="F:System.ConsoleKey.Multiply"> <summary> The Multiply key. </summary> </member> <member name="F:System.ConsoleKey.Add"> <summary> The Add key. </summary> </member> <member name="F:System.ConsoleKey.Separator"> <summary> The Separator key. </summary> </member> <member name="F:System.ConsoleKey.Subtract"> <summary> The Subtract key. </summary> </member> <member name="F:System.ConsoleKey.Decimal"> <summary> The Decimal key. </summary> </member> <member name="F:System.ConsoleKey.Divide"> <summary> The Divide key. </summary> </member> <member name="F:System.ConsoleKey.F1"> <summary> The F1 key. </summary> </member> <member name="F:System.ConsoleKey.F2"> <summary> The F2 key. </summary> </member> <member name="F:System.ConsoleKey.F3"> <summary> The F3 key. </summary> </member> <member name="F:System.ConsoleKey.F4"> <summary> The F4 key. </summary> </member> <member name="F:System.ConsoleKey.F5"> <summary> The F5 key. </summary> </member> <member name="F:System.ConsoleKey.F6"> <summary> The F6 key. </summary> </member> <member name="F:System.ConsoleKey.F7"> <summary> The F7 key. </summary> </member> <member name="F:System.ConsoleKey.F8"> <summary> The F8 key. </summary> </member> <member name="F:System.ConsoleKey.F9"> <summary> The F9 key. </summary> </member> <member name="F:System.ConsoleKey.F10"> <summary> The F10 key. </summary> </member> <member name="F:System.ConsoleKey.F11"> <summary> The F11 key. </summary> </member> <member name="F:System.ConsoleKey.F12"> <summary> The F12 key. </summary> </member> <member name="F:System.ConsoleKey.F13"> <summary> The F13 key. </summary> </member> <member name="F:System.ConsoleKey.F14"> <summary> The F14 key. </summary> </member> <member name="F:System.ConsoleKey.F15"> <summary> The F15 key. </summary> </member> <member name="F:System.ConsoleKey.F16"> <summary> The F16 key. </summary> </member> <member name="F:System.ConsoleKey.F17"> <summary> The F17 key. </summary> </member> <member name="F:System.ConsoleKey.F18"> <summary> The F18 key. </summary> </member> <member name="F:System.ConsoleKey.F19"> <summary> The F19 key. </summary> </member> <member name="F:System.ConsoleKey.F20"> <summary> The F20 key. </summary> </member> <member name="F:System.ConsoleKey.F21"> <summary> The F21 key. </summary> </member> <member name="F:System.ConsoleKey.F22"> <summary> The F22 key. </summary> </member> <member name="F:System.ConsoleKey.F23"> <summary> The F23 key. </summary> </member> <member name="F:System.ConsoleKey.F24"> <summary> The F24 key. </summary> </member> <member name="F:System.ConsoleKey.BrowserBack"> <summary> The Browser Back key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.BrowserForward"> <summary> The Browser Forward key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.BrowserRefresh"> <summary> The Browser Refresh key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.BrowserStop"> <summary> The Browser Stop key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.BrowserSearch"> <summary> The Browser Search key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.BrowserFavorites"> <summary> The Browser Favorites key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.BrowserHome"> <summary> The Browser Home key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.VolumeMute"> <summary> The Volume Mute key (Microsoft Natural Keyboard, Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.VolumeDown"> <summary> The Volume Down key (Microsoft Natural Keyboard, Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.VolumeUp"> <summary> The Volume Up key (Microsoft Natural Keyboard, Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.MediaNext"> <summary> The Media Next Track key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.MediaPrevious"> <summary> The Media Previous Track key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.MediaStop"> <summary> The Media Stop key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.MediaPlay"> <summary> The Media Play/Pause key (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.LaunchMail"> <summary> The Start Mail key (Microsoft Natural Keyboard, Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.LaunchMediaSelect"> <summary> The Select Media key (Microsoft Natural Keyboard, Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.LaunchApp1"> <summary> The Start Application 1 key (Microsoft Natural Keyboard, Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.LaunchApp2"> <summary> The Start Application 2 key (Microsoft Natural Keyboard, Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.Oem1"> <summary> The OEM 1 key (OEM specific). </summary> </member> <member name="F:System.ConsoleKey.OemPlus"> <summary> The OEM Plus key on any country/region keyboard (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.OemComma"> <summary> The OEM Comma key on any country/region keyboard (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.OemMinus"> <summary> The OEM Minus key on any country/region keyboard (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.OemPeriod"> <summary> The OEM Period key on any country/region keyboard (Windows 2000 or later). </summary> </member> <member name="F:System.ConsoleKey.Oem2"> <summary> The OEM 2 key (OEM specific). </summary> </member> <member name="F:System.ConsoleKey.Oem3"> <summary> The OEM 3 key (OEM specific). </summary> </member> <member name="F:System.ConsoleKey.Oem4"> <summary> The OEM 4 key (OEM specific). </summary> </member> <member name="F:System.ConsoleKey.Oem5"> <summary> The OEM 5 (OEM specific). </summary> </member> <member name="F:System.ConsoleKey.Oem6"> <summary> The OEM 6 key (OEM specific). </summary> </member> <member name="F:System.ConsoleKey.Oem7"> <summary> The OEM 7 key (OEM specific). </summary> </member> <member name="F:System.ConsoleKey.Oem8"> <summary> The OEM 8 key (OEM specific). </summary> </member> <member name="F:System.ConsoleKey.Oem102"> <summary> The OEM 102 key (OEM specific). </summary> </member> <member name="F:System.ConsoleKey.Process"> <summary> The IME PROCESS key. </summary> </member> <member name="F:System.ConsoleKey.Packet"> <summary> The PACKET key (used to pass Unicode characters with keystrokes). </summary> </member> <member name="F:System.ConsoleKey.Attention"> <summary> The ATTN key. </summary> </member> <member name="F:System.ConsoleKey.CrSel"> <summary> The CRSEL (CURSOR SELECT) key. </summary> </member> <member name="F:System.ConsoleKey.ExSel"> <summary> The EXSEL (EXTEND SELECTION) key. </summary> </member> <member name="F:System.ConsoleKey.EraseEndOfFile"> <summary> The ERASE EOF key. </summary> </member> <member name="F:System.ConsoleKey.Play"> <summary> The PLAY key. </summary> </member> <member name="F:System.ConsoleKey.Zoom"> <summary> The ZOOM key. </summary> </member> <member name="F:System.ConsoleKey.NoName"> <summary> A constant reserved for future use. </summary> </member> <member name="F:System.ConsoleKey.Pa1"> <summary> The PA1 key. </summary> </member> <member name="F:System.ConsoleKey.OemClear"> <summary> The CLEAR key (OEM specific). </summary> </member> <member name="T:System.ConsoleKeyInfo"> <summary> Describes the console key that was pressed, including the character represented by the console key and the state of the SHIFT, ALT, and CTRL modifier keys. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.ConsoleKeyInfo.#ctor(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.ConsoleKeyInfo" /> structure using the specified character, console key, and modifier keys. </summary> <param name="keyChar"> The Unicode character that corresponds to the <paramref name="key" /> parameter. </param> <param name="key"> The console key that corresponds to the <paramref name="keyChar" /> parameter. </param> <param name="shift">true to indicate that a SHIFT key was pressed; otherwise, false. </param> <param name="alt">true to indicate that an ALT key was pressed; otherwise, false. </param> <param name="control">true to indicate that a CTRL key was pressed; otherwise, false. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The numeric value of the <paramref name="key" /> parameter is less than 0 or greater than 255. </exception> </member> <member name="M:System.ConsoleKeyInfo.Equals(System.ConsoleKeyInfo)"> <summary> Gets a value indicating whether the specified <see cref="T:System.ConsoleKeyInfo" /> object is equal to the current <see cref="T:System.ConsoleKeyInfo" /> object. </summary> <returns>true if <paramref name="obj" /> is equal to the current <see cref="T:System.ConsoleKeyInfo" /> object; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.ConsoleKeyInfo" /> object to compare to the current <see cref="T:System.ConsoleKeyInfo" /> object. </param> </member> <member name="M:System.ConsoleKeyInfo.Equals(System.Object)"> <summary> Gets a value indicating whether the specified object is equal to the current <see cref="T:System.ConsoleKeyInfo" /> object. </summary> <returns>true if <paramref name="value" /> is a <see cref="T:System.ConsoleKeyInfo" /> object and is equal to the current <see cref="T:System.ConsoleKeyInfo" /> object; otherwise, false. </returns> <param name="value"> An object to compare to the current <see cref="T:System.ConsoleKeyInfo" /> object. </param> </member> <member name="M:System.ConsoleKeyInfo.GetHashCode"> <summary> Returns the hash code for the current <see cref="T:System.ConsoleKeyInfo" /> object. </summary> <returns> A 32-bit signed integer hash code. </returns> </member> <member name="P:System.ConsoleKeyInfo.Key"> <summary> Gets the console key represented by the current <see cref="T:System.ConsoleKeyInfo" /> object. </summary> <returns> A <see cref="T:System.ConsoleKey" /> value that identifies the console key that was pressed. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.ConsoleKeyInfo.KeyChar"> <summary> Gets the Unicode character represented by the current <see cref="T:System.ConsoleKeyInfo" /> object. </summary> <returns> A <see cref="T:System.Char" /> object that corresponds to the console key represented by the current <see cref="T:System.ConsoleKeyInfo" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.ConsoleKeyInfo.Modifiers"> <summary> Gets a bitwise combination of <see cref="T:System.ConsoleModifiers" /> values that specifies one or more modifier keys pressed simultaneously with the console key. </summary> <returns> A bitwise combination of <see cref="T:System.ConsoleModifiers" /> values. There is no default value. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.ConsoleKeyInfo.op_Equality(System.ConsoleKeyInfo,System.ConsoleKeyInfo)"> <summary> Indicates whether the specified <see cref="T:System.ConsoleKeyInfo" /> objects are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> A <see cref="T:System.ConsoleKeyInfo" /> object. </param> <param name="b"> A <see cref="T:System.ConsoleKeyInfo" /> object. </param> </member> <member name="M:System.ConsoleKeyInfo.op_Inequality(System.ConsoleKeyInfo,System.ConsoleKeyInfo)"> <summary> Indicates whether the specified <see cref="T:System.ConsoleKeyInfo" /> objects are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> A <see cref="T:System.ConsoleKeyInfo" /> object. </param> <param name="b"> A <see cref="T:System.ConsoleKeyInfo" /> object. </param> </member> <member name="T:System.ConsoleModifiers"> <summary> Represents the SHIFT, ALT, and CTRL modifier keys on a keyboard. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.ConsoleModifiers.Alt"> <summary> The left or right ALT modifier key. </summary> </member> <member name="F:System.ConsoleModifiers.Shift"> <summary> The left or right SHIFT modifier key. </summary> </member> <member name="F:System.ConsoleModifiers.Control"> <summary> The left or right CTRL modifier key. </summary> </member> <member name="T:System.ConsoleSpecialKey"> <summary> Specifies combinations of modifier and console keys that can interrupt the current process. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.ConsoleSpecialKey.ControlC"> <summary> The <see cref="F:System.ConsoleModifiers.Control" /> modifier key plus the <see cref="F:System.ConsoleKey.C" /> console key. </summary> </member> <member name="F:System.ConsoleSpecialKey.ControlBreak"> <summary> The <see cref="F:System.ConsoleModifiers.Control" /> modifier key plus the BREAK console key. </summary> </member> <member name="T:System.ContextBoundObject"> <summary> Defines the base class for all context-bound classes. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ContextBoundObject.#ctor"> <summary> Instantiates an instance of the <see cref="T:System.ContextBoundObject" /> class. </summary> </member> <member name="T:System.ContextMarshalException"> <summary> The exception that is thrown when an attempt to marshal an object across a context boundary fails. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ContextMarshalException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ContextMarshalException" /> class with default properties. </summary> </member> <member name="M:System.ContextMarshalException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.ContextMarshalException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.ContextMarshalException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ContextMarshalException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.ContextMarshalException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.ContextMarshalException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.ContextStaticAttribute"> <summary> Indicates that the value of a static field is unique for a particular context. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.ContextStaticAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ContextStaticAttribute" /> class. </summary> </member> <member name="T:System.Convert"> <summary> Converts a base data type to another base data type. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ChangeType(System.Object,System.Type)"> <summary> Returns an <see cref="T:System.Object" /> with the specified <see cref="T:System.Type" /> and whose value is equivalent to the specified object. </summary> <returns> An object whose <see cref="T:System.Type" /> is <paramref name="conversionType" /> and whose value is equivalent to <paramref name="value" />. -or- null, if <paramref name="value" /> is null and <paramref name="conversionType" /> is not a value type. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="conversionType"> A <see cref="T:System.Type" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. -or- <paramref name="value" /> is null and <paramref name="conversionType" /> is a value type. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="conversionType" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ChangeType(System.Object,System.Type,System.IFormatProvider)"> <summary> Returns an <see cref="T:System.Object" /> with the specified <see cref="T:System.Type" /> and whose value is equivalent to the specified object. A parameter supplies culture-specific formatting information. </summary> <returns> An object whose <see cref="T:System.Type" /> is <paramref name="conversionType" /> and whose value is equivalent to <paramref name="value" />. -or- <paramref name="value" />, if the <see cref="T:System.Type" /> of <paramref name="value" /> and <paramref name="conversionType" /> are equal. -or- null, if <paramref name="value" /> is null and <paramref name="conversionType" /> is not a value type. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="conversionType"> A <see cref="T:System.Type" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. -or- <paramref name="value" /> is null and <paramref name="conversionType" /> is a value type. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="conversionType" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ChangeType(System.Object,System.TypeCode)"> <summary> Returns an <see cref="T:System.Object" /> with the specified <see cref="T:System.TypeCode" /> and whose value is equivalent to the specified object. </summary> <returns> An object whose underlying <see cref="T:System.TypeCode" /> is <paramref name="typeCode" /> and whose value is equivalent to <paramref name="value" />. -or- null, if <paramref name="value" /> equals null and <paramref name="typeCode" /> equals <see cref="F:System.TypeCode.Empty" />, <see cref="F:System.TypeCode.String" />, or <see cref="F:System.TypeCode.Object" />. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="typeCode"> A <see cref="T:System.TypeCode" /></param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. -or- <paramref name="value" /> is null and <paramref name="typeCode" /> specifies a value type. </exception> <exception cref="T:System.ArgumentException"> <paramref name="typeCode" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ChangeType(System.Object,System.TypeCode,System.IFormatProvider)"> <summary> Returns an <see cref="T:System.Object" /> with the specified <see cref="T:System.TypeCode" /> and whose value is equivalent to the specified object. A parameter supplies culture-specific formatting information. </summary> <returns> An object whose underlying <see cref="T:System.TypeCode" /> is <paramref name="typeCode" /> and whose value is equivalent to <paramref name="value" />. -or- null, if <paramref name="value" /> equals null and <paramref name="typeCode" /> equals <see cref="F:System.TypeCode.Empty" />, <see cref="F:System.TypeCode.String" />, or <see cref="F:System.TypeCode.Object" />. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="typeCode"> A <see cref="T:System.TypeCode" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. -or- <paramref name="value" /> is null and <paramref name="typeCode" /> specifies a value type. </exception> <exception cref="T:System.ArgumentException"> <paramref name="typeCode" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.Convert.DBNull"> <summary> A constant representing a database column absent of data; that is, database null. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.FromBase64CharArray(System.Char[],System.Int32,System.Int32)"> <summary> Converts a subset of a Unicode character array, which encodes binary data as base 64 digits, to an equivalent 8-bit unsigned integer array. Parameters specify the subset in the input array and the number of elements to convert. </summary> <returns> An array of 8-bit unsigned integers equivalent to <paramref name="length" /> elements at position <paramref name="offset" /> in <paramref name="inArray" />. </returns> <param name="inArray"> A Unicode character array. </param> <param name="offset"> A position within <paramref name="inArray" />. </param> <param name="length"> The number of elements in <paramref name="inArray" /> to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="inArray" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="length" /> is less than 0. -or- <paramref name="offset" /> plus <paramref name="length" /> indicates a position not within <paramref name="inArray" />. </exception> <exception cref="T:System.FormatException"> The length of <paramref name="inArray" />, ignoring white space characters, is not zero or a multiple of 4. -or- The format of <paramref name="inArray" /> is invalid. <paramref name="inArray" /> contains a non-base 64 character, more than two padding characters, or a non-white space character among the padding characters. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.FromBase64String(System.String)"> <summary> Converts the specified <see cref="T:System.String" />, which encodes binary data as base 64 digits, to an equivalent 8-bit unsigned integer array. </summary> <returns> An array of 8-bit unsigned integers equivalent to <paramref name="s" />. </returns> <param name="s"> A <see cref="T:System.String" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> The length of <paramref name="s" />, ignoring white space characters, is not zero or a multiple of 4. -or- The format of <paramref name="s" /> is invalid. <paramref name="s" /> contains a non-base 64 character, more than two padding characters, or a non-white space character among the padding characters. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.GetTypeCode(System.Object)"> <summary> Returns the <see cref="T:System.TypeCode" /> for the specified object. </summary> <returns> The <see cref="T:System.TypeCode" /> for <paramref name="value" />, or <see cref="F:System.TypeCode.Empty" /> if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.IsDBNull(System.Object)"> <summary> Returns an indication whether the specified object is of type <see cref="T:System.DBNull" />. </summary> <returns>true if <paramref name="value" /> is of type <see cref="T:System.DBNull" />; otherwise, false. </returns> <param name="value"> An object. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)"> <summary> Converts a subset of an 8-bit unsigned integer array to an equivalent subset of a Unicode character array encoded with base 64 digits. Parameters specify the subsets as offsets in the input and output arrays, and the number of elements in the input array to convert. </summary> <returns> A 32-bit signed integer containing the number of bytes in <paramref name="outArray" />. </returns> <param name="inArray"> An input array of 8-bit unsigned integers. </param> <param name="offsetIn"> A position within <paramref name="inArray" />. </param> <param name="length"> The number of elements of <paramref name="inArray" /> to convert. </param> <param name="outArray"> An output array of Unicode characters. </param> <param name="offsetOut"> A position within <paramref name="outArray" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="inArray" /> or <paramref name="outArray" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offsetIn" />, <paramref name="offsetOut" />, or <paramref name="length" /> is negative. -or- <paramref name="offsetIn" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />. -or- <paramref name="offsetOut" /> plus the number of elements to return is greater than the length of <paramref name="outArray" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Base64FormattingOptions)"> <summary> Converts a subset of an 8-bit unsigned integer array to an equivalent subset of a Unicode character array encoded with base 64 digits. Parameters specify the subsets as offsets in the input and output arrays, the number of elements in the input array to convert, and whether line breaks are inserted in the output array. </summary> <returns> A 32-bit signed integer containing the number of bytes in <paramref name="outArray" />. </returns> <param name="inArray"> An input array of 8-bit unsigned integers. </param> <param name="offsetIn"> A position within <paramref name="inArray" />. </param> <param name="length"> The number of elements of <paramref name="inArray" /> to convert. </param> <param name="outArray"> An output array of Unicode characters. </param> <param name="offsetOut"> A position within <paramref name="outArray" />. </param> <param name="options"> <see cref="F:System.Base64FormattingOptions.InsertLineBreaks" /> to insert a line break every 76 characters, or <see cref="F:System.Base64FormattingOptions.None" /> to not insert line breaks. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="inArray" /> or <paramref name="outArray" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offsetIn" />, <paramref name="offsetOut" />, or <paramref name="length" /> is negative. -or- <paramref name="offsetIn" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />. -or- <paramref name="offsetOut" /> plus the number of elements to return is greater than the length of <paramref name="outArray" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> is not a valid <see cref="T:System.Base64FormattingOptions" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBase64String(System.Byte[])"> <summary> Converts an array of 8-bit unsigned integers to its equivalent <see cref="T:System.String" /> representation encoded with base 64 digits. </summary> <returns> The <see cref="T:System.String" /> representation, in base 64, of the contents of <paramref name="inArray" />. </returns> <param name="inArray"> An array of 8-bit unsigned integers. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="inArray" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBase64String(System.Byte[],System.Base64FormattingOptions)"> <summary> Converts an array of 8-bit unsigned integers to its equivalent <see cref="T:System.String" /> representation encoded with base 64 digits. A parameter specifies whether to insert line breaks in the return value. </summary> <returns> The <see cref="T:System.String" /> representation in base 64 of the elements in <paramref name="inArray" />. </returns> <param name="inArray"> An array of 8-bit unsigned integers. </param> <param name="options"> <see cref="F:System.Base64FormattingOptions.InsertLineBreaks" /> to insert a line break every 76 characters, or <see cref="F:System.Base64FormattingOptions.None" /> to not insert line breaks. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="inArray" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> is not a valid <see cref="T:System.Base64FormattingOptions" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBase64String(System.Byte[],System.Int32,System.Int32)"> <summary> Converts a subset of an array of 8-bit unsigned integers to its equivalent <see cref="T:System.String" /> representation encoded with base 64 digits. Parameters specify the subset as an offset in the input array, and the number of elements in the array to convert. </summary> <returns> The <see cref="T:System.String" /> representation in base 64 of <paramref name="length" /> elements of <paramref name="inArray" /> starting at position <paramref name="offset" />. </returns> <param name="inArray"> An array of 8-bit unsigned integers. </param> <param name="offset"> An offset in <paramref name="inArray" />. </param> <param name="length"> The number of elements of <paramref name="inArray" /> to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="inArray" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="length" /> is negative. -or- <paramref name="offset" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBase64String(System.Byte[],System.Int32,System.Int32,System.Base64FormattingOptions)"> <summary> Converts a subset of an array of 8-bit unsigned integers to its equivalent <see cref="T:System.String" /> representation encoded with base 64 digits. Parameters specify the subset as an offset in the input array, the number of elements in the array to convert, and whether to insert line breaks in the return value. </summary> <returns> The <see cref="T:System.String" /> representation in base 64 of <paramref name="length" /> elements of <paramref name="inArray" /> starting at position <paramref name="offset" />. </returns> <param name="inArray"> An array of 8-bit unsigned integers. </param> <param name="offset"> An offset in <paramref name="inArray" />. </param> <param name="length"> The number of elements of <paramref name="inArray" /> to convert. </param> <param name="options"> <see cref="F:System.Base64FormattingOptions.InsertLineBreaks" /> to insert a line break every 76 characters, or <see cref="F:System.Base64FormattingOptions.None" /> to not insert line breaks. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="inArray" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="length" /> is negative. -or- <paramref name="offset" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> is not a valid <see cref="T:System.Base64FormattingOptions" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Boolean)"> <summary> Returns the specified Boolean value; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A Boolean. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Char)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A Unicode character. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> A double-precision floating point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> A 16-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> A 32-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> A 64-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Object)"> <summary> Converts the value of a specified <see cref="T:System.Object" /> to an equivalent Boolean value. </summary> <returns>true or false, which reflects the value returned by invoking the <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" /> method for the underlying type of <paramref name="value" />. If <paramref name="value" /> is null, the method returns false. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to an equivalent Boolean value using the specified culture-specific formatting information. </summary> <returns>true or false, which reflects the value returned by invoking the <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" /> method for the underlying type of <paramref name="value" />. If <paramref name="value" /> is null, the method returns false. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> An 8-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> A single-precision floating point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a logical value to its Boolean equivalent. </summary> <returns>true if <paramref name="value" /> equals <see cref="F:System.Boolean.TrueString" />, or false if <paramref name="value" /> equals <see cref="F:System.Boolean.FalseString" /> or null. </returns> <param name="value"> A <see cref="T:System.String" /> that contains the value of either <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not equal to <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a logical value to its Boolean equivalent using the specified culture-specific formatting information. </summary> <returns>true if <paramref name="value" /> equals <see cref="F:System.Boolean.TrueString" />, or false if <paramref name="value" /> equals <see cref="F:System.Boolean.FalseString" /> or null. </returns> <param name="value"> A string that contains the value of either <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. </param> <param name="provider"> (Reserved) An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not equal to <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> A 32-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToBoolean(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent Boolean value. </summary> <returns>true if <paramref name="value" /> is not zero; otherwise, false. </returns> <param name="value"> A 64-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent 8-bit unsigned integer. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Byte)"> <summary> Returns the specified 8-bit unsigned integer; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Char)"> <summary> Converts the value of the specified Unicode character to the equivalent 8-bit unsigned integer. </summary> <returns> The 8-bit unsigned integer equivalent to <paramref name="value" />. </returns> <param name="value"> A Unicode character. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent 8-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent 8-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A double-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to an equivalent 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to an 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to an 8-bit unsigned integer using the specified culture-specific formatting information. </summary> <returns> An 8-bit unsigned integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to an equivalent 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to an equivalent 8-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A single-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 8-bit signed integer using specified culture-specific formatting information. </summary> <returns> An 8-bit signed integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.String,System.Int32)"> <summary> Converts the string representation of a number in a specified base to an equivalent 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to the number in <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number. </param> <param name="fromBase"> The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or- <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. </exception> <exception cref="T:System.FormatException"> <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" />, which represents a base 10 unsigned number, is prefixed with a negative sign. -or- The return value is less than <see cref="F:System.Byte.MinValue" /> or larger than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to an equivalent 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToByte(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Boolean)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.Boolean" /> value. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to its equivalent Unicode character. </summary> <returns> The Unicode character equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Char)"> <summary> Returns the specified Unicode character value; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Decimal)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Double)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A double-precision floating-point number. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to its equivalent Unicode character. </summary> <returns> The Unicode character equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to its equivalent Unicode character. </summary> <returns> The Unicode character equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to its equivalent Unicode character. </summary> <returns> The Unicode character equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a Unicode character. </summary> <returns> The Unicode character equivalent to the value of <paramref name="value" />. -or- <see cref="F:System.Char.MinValue" /> if <paramref name="value" /> equals null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to its equivalent Unicode character using the specified culture-specific formatting information. </summary> <returns> The Unicode character equivalent to the value of <paramref name="value" />. -or- <see cref="F:System.Char.MinValue" /> if <paramref name="value" /> equals null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to its equivalent Unicode character. </summary> <returns> The Unicode character equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.Single)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A single-precision floating-point number. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.String)"> <summary> Converts the first character of a <see cref="T:System.String" /> to a Unicode character. </summary> <returns> The Unicode character equivalent to the first and only character in <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.String" /> of length 1 or null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.FormatException"> The length of <paramref name="value" /> is not 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.String,System.IFormatProvider)"> <summary> Converts the first character of a <see cref="T:System.String" /> to a Unicode character using specified culture-specific formatting information. </summary> <returns> The Unicode character equivalent to the first and only character in <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.String" /> of length 1 or null. </param> <param name="provider"> (Reserved) An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.FormatException"> The length of <paramref name="value" /> is not 1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to its equivalent Unicode character. </summary> <returns> The Unicode character equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to its equivalent Unicode character. </summary> <returns> The Unicode character equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Char.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToChar(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to its equivalent Unicode character. </summary> <returns> The Unicode character equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Char.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Boolean)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A Boolean value. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Byte)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> An 8-bit unsigned integer. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Char)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A Unicode character. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.DateTime)"> <summary> Returns the specified <see cref="T:System.DateTime" />; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Decimal)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.Decimal" /> value. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Double)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A double-precision floating point value. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Int16)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A 16-bit signed integer. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Int32)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A 32-bit signed integer. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Int64)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A 64-bit signed integer. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DateTime" /> equivalent to the value of <paramref name="value" />. -or- A <see cref="T:System.DateTime" /> equivalent to <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not a valid <see cref="T:System.DateTime" /> value. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. -or- The conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a <see cref="T:System.DateTime" /> using the specified culture-specific formatting information. </summary> <returns> A <see cref="T:System.DateTime" /> equivalent to the value of <paramref name="value" />. -or- A <see cref="T:System.DateTime" /> equivalent to <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.SByte)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> An 8-bit signed integer. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.Single)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A single-precision floating point value. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a date and time to an equivalent <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DateTime" /> equivalent to the value of <paramref name="value" />. -or- A <see cref="T:System.DateTime" /> equivalent to <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is null. </returns> <param name="value"> The string representation of a date and time. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not a properly formatted date and time string. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent <see cref="T:System.DateTime" /> using the specified culture-specific formatting information. </summary> <returns> A <see cref="T:System.DateTime" /> equivalent to the value of <paramref name="value" />. -or- A <see cref="T:System.DateTime" /> equivalent to <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a date and time to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not a properly formatted date and time string. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.UInt16)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A 16-bit unsigned integer. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.UInt32)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A 32-bit unsigned integer. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDateTime(System.UInt64)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A 64-bit unsigned integer. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to the equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> The <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Char)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A Unicode character. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Decimal)"> <summary> Returns the specified <see cref="T:System.Decimal" /> number; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A double-precision floating point number. </param> <exception cref="T:System.OverflowException"> The numeric value of <paramref name="value" /> is greater than <see cref="F:System.Decimal.MaxValue" /> or less than <see cref="F:System.Decimal.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to an equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a <see cref="T:System.Decimal" /> number. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to an <see cref="T:System.Decimal" /> number using the specified culture-specific formatting information. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to the equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> The 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to the equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A single-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Decimal.MaxValue" /> or less than <see cref="F:System.Decimal.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent <see cref="T:System.Decimal" /> number using the specified culture-specific formatting information. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to the equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> The <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDecimal(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent <see cref="T:System.Decimal" /> number. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent double-precision floating point number. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to the equivalent double-precision floating point number. </summary> <returns> The double-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Char)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A Unicode character. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent double-precision floating point number. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Double)"> <summary> Returns the specified double-precision floating point number; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A double-precision floating point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to an equivalent double-precision floating point number. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent double-precision floating point number. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent double-precision floating point number. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a double-precision floating point number. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to an double-precision floating point number using the specified culture-specific formatting information. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to the equivalent double-precision floating point number. </summary> <returns> The 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to an equivalent double-precision floating point number. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A single-precision floating point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent double-precision floating point number. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent double-precision floating point number using the specified culture-specific formatting information. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to the equivalent double-precision floating point number. </summary> <returns> The double-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent double-precision floating point number. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToDouble(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent double-precision floating point number. </summary> <returns> A double-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent 16-bit signed integer. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to the equivalent 16-bit signed integer. </summary> <returns> The 16-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Char)"> <summary> Converts the value of the specified Unicode character to the equivalent 16-bit signed integer. </summary> <returns> The 16-bit signed integer equivalent to <paramref name="value" />. </returns> <param name="value"> A Unicode character. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent 16-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent 16-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A double-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Int16)"> <summary> Returns the specified 16-bit signed integer; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A 16-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent 16-bit signed integer. </summary> <returns> The 16-bit signed integer equivalent of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent 16-bit signed integer. </summary> <returns> A 16-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 16-bit signed integer. </summary> <returns> A 16-bit signed integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 16-bit signed integer using the specified culture-specific formatting information. </summary> <returns> A 16-bit signed integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to the equivalent 16-bit signed integer. </summary> <returns> The 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to an equivalent 16-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A single-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 16-bit signed integer. </summary> <returns> A 16-bit signed integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 16-bit signed integer using specified culture-specific formatting information. </summary> <returns> A 16-bit signed integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.String,System.Int32)"> <summary> Converts the string representation of a number in a specified base to an equivalent 16-bit signed integer. </summary> <returns> A 16-bit signed integer equivalent to the number in <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A string containing a number. </param> <param name="fromBase"> The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or- <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. </exception> <exception cref="T:System.FormatException"> <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. -or- The return value is less than <see cref="F:System.Int16.MinValue" /> or larger than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to the equivalent 16-bit signed integer. </summary> <returns> The 16-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent 16-bit signed integer. </summary> <returns> A 16-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt16(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent 16-bit signed integer. </summary> <returns> A 16-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent 32-bit signed integer. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit signed integer. </summary> <returns> The 32-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Char)"> <summary> Converts the value of the specified Unicode character to the equivalent 32-bit signed integer. </summary> <returns> The 32-bit signed integer equivalent to <paramref name="value" />. </returns> <param name="value"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent 32-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent 32-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A double-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to an equivalent 32-bit signed integer. </summary> <returns> A 32-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Int32)"> <summary> Returns the specified 32-bit signed integer; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A 32-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent 32-bit signed integer. </summary> <returns> A 32-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 32-bit signed integer. </summary> <returns> A 32-bit signed integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 32-bit signed integer using the specified culture-specific formatting information. </summary> <returns> A 32-bit signed integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to the equivalent 32-bit signed integer. </summary> <returns> The 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to an equivalent 32-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A single-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 32-bit signed integer. </summary> <returns> A 32-bit signed integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 32-bit signed integer using specified culture-specific formatting information. </summary> <returns> A 32-bit signed integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.String,System.Int32)"> <summary> Converts the <see cref="T:System.String" /> representation of a number in a specified base to an equivalent 32-bit signed integer. </summary> <returns> A 32-bit signed integer equivalent to the number in <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number. </param> <param name="fromBase"> The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or- <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. </exception> <exception cref="T:System.FormatException"> <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. -or- The return value is less than <see cref="F:System.Int32.MinValue" /> or larger than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit signed integer. </summary> <returns> The 32-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent 32-bit signed integer. </summary> <returns> A 32-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt32(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit signed integer. </summary> <returns> A 32-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent 64-bit signed integer. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to the equivalent 64-bit signed integer. </summary> <returns> The 64-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Char)"> <summary> Converts the value of the specified Unicode character to the equivalent 64-bit signed integer. </summary> <returns> The 64-bit signed integer equivalent to <paramref name="value" />. </returns> <param name="value"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent 64-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent 64-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A double-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to an equivalent 64-bit signed integer. </summary> <returns> A 64-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent 64-bit signed integer. </summary> <returns> The 64-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Int64)"> <summary> Returns the specified 64-bit signed integer; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A 64-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 64-bit signed integer. </summary> <returns> A 64-bit signed integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 64-bit signed integer using the specified culture-specific formatting information. </summary> <returns> A 64-bit signed integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to the equivalent 64-bit signed integer. </summary> <returns> The 64-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to an equivalent 64-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A single-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 64-bit signed integer. </summary> <returns> A 64-bit signed integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 64-bit signed integer using the specified culture-specific formatting information. </summary> <returns> A 64-bit signed integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.String,System.Int32)"> <summary> Converts the string representation of a number in a specified base to an equivalent 64-bit signed integer. </summary> <returns> A 64-bit signed integer equivalent to the number in <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A string containing a number. </param> <param name="fromBase"> The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or- <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. </exception> <exception cref="T:System.FormatException"> <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. -or- The return value is less than <see cref="F:System.Int64.MinValue" /> or larger than <see cref="F:System.Int64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to the equivalent 64-bit signed integer. </summary> <returns> The 64-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent 64-bit signed integer. </summary> <returns> A 64-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToInt64(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent 64-bit signed integer. </summary> <returns> A 64-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent 8-bit signed integer. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to the equivalent 8-bit signed integer. </summary> <returns> The 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Char)"> <summary> Converts the value of the specified Unicode character to the equivalent 8-bit signed integer. </summary> <returns> The 8-bit signed integer equivalent to <paramref name="value" />. </returns> <param name="value"> A Unicode character. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent 8-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent 8-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A double-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to the equivalent 8-bit signed integer. </summary> <returns> The 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent 8-bit signed integer. </summary> <returns> The 8-bit signed integer equivalent of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent 8-bit signed integer. </summary> <returns> An 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to an 8-bit signed integer. </summary> <returns> An 8-bit signed integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to an 8-bit signed integer using the specified culture-specific formatting information. </summary> <returns> An 8-bit signed integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.SByte)"> <summary> Returns the specified 8-bit signed integer; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> An 8-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to an equivalent 8-bit signed integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A single-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 8-bit signed integer. </summary> <returns> An 8-bit signed integer equivalent to the value of <paramref name="value" />. -or- Zero if value is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 8-bit signed integer using specified culture-specific formatting information. </summary> <returns> An 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.String,System.Int32)"> <summary> Converts the string representation of a number in a specified base to an equivalent 8-bit signed integer. </summary> <returns> An 8-bit signed integer equivalent to the number in <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A string containing a number. </param> <param name="fromBase"> The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or- <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. </exception> <exception cref="T:System.FormatException"> <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. -or- The return value is less than <see cref="F:System.SByte.MinValue" /> or larger than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to the equivalent 8-bit signed integer. </summary> <returns> The 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent 8-bit signed integer. </summary> <returns> An 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSByte(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent 8-bit signed integer. </summary> <returns> An 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent single-precision floating point number. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to the equivalent single-precision floating point number. </summary> <returns> The single-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Char)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A Unicode character. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent single-precision floating point number. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />. <paramref name="value" /> is rounded using rounding to nearest. For example, when rounded to two decimals, the value 2.345 becomes 2.34 and the value 2.355 becomes 2.36. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent single-precision floating point number. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />. <paramref name="value" /> is rounded using rounding to nearest. For example, when rounded to two decimals, the value 2.345 becomes 2.34 and the value 2.355 becomes 2.36. </returns> <param name="value"> A double-precision floating point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to an equivalent single-precision floating point number. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent single-precision floating point number. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent single-precision floating point number. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a single-precision floating point number. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to an single-precision floating point number using the specified culture-specific formatting information. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to the equivalent single-precision floating point number. </summary> <returns> The 8-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.Single)"> <summary> Returns the specified single-precision floating point number; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A single-precision floating point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent single-precision floating point number. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent single-precision floating point number using the specified culture-specific formatting information. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to the equivalent single-precision floating point number. </summary> <returns> The single-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent single-precision floating point number. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToSingle(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent single-precision floating point number. </summary> <returns> A single-precision floating point number equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Boolean)"> <summary> Converts the value of the specified Boolean to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Boolean,System.IFormatProvider)"> <summary> Converts the value of the specified Boolean to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A Boolean value. </param> <param name="provider"> (Reserved) An instance of an <see cref="T:System.IFormatProvider" /> interface implementation. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Byte,System.IFormatProvider)"> <summary> Converts the value of the specified 8-bit unsigned integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Byte,System.Int32)"> <summary> Converts the value of an 8-bit unsigned integer to its equivalent string representation in a specified base. </summary> <returns> The string representation of <paramref name="value" /> in base <paramref name="toBase" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <param name="toBase"> The base of the return value, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="toBase" /> is not 2, 8, 10, or 16. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Char)"> <summary> Converts the value of the specified Unicode character to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Char,System.IFormatProvider)"> <summary> Converts the value of the specified Unicode character to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A Unicode character. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.DateTime)"> <summary> Converts the value of the specified <see cref="T:System.DateTime" /> to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.DateTime,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.DateTime" /> to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Decimal,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A double-precision floating point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Double,System.IFormatProvider)"> <summary> Converts the value of the specified double-precision floating point number to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. <paramref name="provider" /> is ignored; it does not participate in this operation. </returns> <param name="value"> A double-precision floating point number. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Int16,System.IFormatProvider)"> <summary> Converts the value of the specified 16-bit signed integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Int16,System.Int32)"> <summary> Converts the value of a 16-bit signed integer to its equivalent <see cref="T:System.String" /> representation in a specified base. </summary> <returns> The <see cref="T:System.String" /> representation of <paramref name="value" /> in base <paramref name="toBase" />. </returns> <param name="value"> A 16-bit signed integer. </param> <param name="toBase"> The base of the return value, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="toBase" /> is not 2, 8, 10, or 16. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Int32,System.IFormatProvider)"> <summary> Converts the value of the specified 32-bit signed integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Int32,System.Int32)"> <summary> Converts the value of a 32-bit signed integer to its equivalent <see cref="T:System.String" /> representation in a specified base. </summary> <returns> The <see cref="T:System.String" /> representation of <paramref name="value" /> in base <paramref name="toBase" />. </returns> <param name="value"> A 32-bit signed integer. </param> <param name="toBase"> The base of the return value, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="toBase" /> is not 2, 8, 10, or 16. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Int64,System.IFormatProvider)"> <summary> Converts the value of the specified 64-bit signed integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Int64,System.Int32)"> <summary> Converts the value of a 64-bit signed integer to its equivalent <see cref="T:System.String" /> representation in a specified base. </summary> <returns> The <see cref="T:System.String" /> representation of <paramref name="value" /> in base <paramref name="toBase" />. </returns> <param name="value"> A 64-bit signed integer. </param> <param name="toBase"> The base of the return value, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="toBase" /> is not 2, 8, 10, or 16. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to its <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> representation of the value of <paramref name="value" />, or <see cref="F:System.String.Empty" /> if value is null. </returns> <param name="value"> An <see cref="T:System.Object" /> or null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to its equivalent <see cref="T:System.String" /> representation using the specified culture-specific formatting information. </summary> <returns> The <see cref="T:System.String" /> representation of the value of <paramref name="value" />, or <see cref="F:System.String.Empty" /> if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> or null. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.SByte,System.IFormatProvider)"> <summary> Converts the value of the specified 8-bit signed integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A single-precision floating point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.Single,System.IFormatProvider)"> <summary> Converts the value of the specified single-precision floating point number to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A single-precision floating point number. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.String)"> <summary> Returns the specified instance of <see cref="T:System.String" />; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A <see cref="T:System.String" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.String,System.IFormatProvider)"> <summary> Returns the specified instance of <see cref="T:System.String" />; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A <see cref="T:System.String" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.UInt16,System.IFormatProvider)"> <summary> Converts the value of the specified 16-bit unsigned integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.UInt32,System.IFormatProvider)"> <summary> Converts the value of the specified 32-bit unsigned integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToString(System.UInt64,System.IFormatProvider)"> <summary> Converts the value of the specified 64-bit unsigned integer to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> equivalent of the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent 16-bit unsigned integer. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to the equivalent 16-bit unsigned integer. </summary> <returns> The 16-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Char)"> <summary> Converts the value of the specified Unicode character to the equivalent 16-bit unsigned integer. </summary> <returns> The 16-bit unsigned integer equivalent to <paramref name="value" />. </returns> <param name="value"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent 16-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent 16-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A double-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to the equivalent 16-bit unsigned integer. </summary> <returns> The 16-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent 16-bit unsigned integer. </summary> <returns> The 16-bit unsigned integer equivalent of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent 16-bit unsigned integer. </summary> <returns> A 16-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 16-bit unsigned integer. </summary> <returns> A 16-bit unsigned integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 16-bit unsigned integer using the specified culture-specific formatting information. </summary> <returns> A 16-bit unsigned integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to the equivalent 16-bit unsigned integer. </summary> <returns> The 16-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to an equivalent 16-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A single-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 16-bit unsigned integer. </summary> <returns> A 16-bit unsigned integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 16-bit unsigned integer using specified culture-specific formatting information. </summary> <returns> A 16-bit unsigned integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.String,System.Int32)"> <summary> Converts the string representation of a number in a specified base to an equivalent 16-bit unsigned integer. </summary> <returns> A 16-bit unsigned integer equivalent to the number in <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A string containing a number. </param> <param name="fromBase"> The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or- <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. </exception> <exception cref="T:System.FormatException"> <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. -or- The return value is less than <see cref="F:System.UInt16.MinValue" /> or larger than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.UInt16)"> <summary> Returns the specified 16-bit unsigned integer; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent 16-bit unsigned integer. </summary> <returns> A 16-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt16(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent 16-bit unsigned integer. </summary> <returns> A 16-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent 32-bit unsigned integer. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit unsigned integer. </summary> <returns> The 32-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Char)"> <summary> Converts the value of the specified Unicode character to the equivalent 32-bit unsigned integer. </summary> <returns> The 32-bit unsigned integer equivalent to <paramref name="value" />. </returns> <param name="value"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent 32-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent 32-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A double-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to the equivalent 32-bit unsigned integer. </summary> <returns> The 32-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent 32-bit unsigned integer. </summary> <returns> The 32-bit unsigned integer equivalent of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent 32-bit unsigned integer. </summary> <returns> A 32-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 32-bit unsigned integer. </summary> <returns> A 32-bit unsigned integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 32-bit unsigned integer using the specified culture-specific formatting information. </summary> <returns> A 32-bit unsigned integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to the equivalent 32-bit unsigned integer. </summary> <returns> The 8-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to an equivalent 32-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A single-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 32-bit unsigned integer. </summary> <returns> A 32-bit unsigned integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 32-bit unsigned integer using the specified culture-specific formatting information. </summary> <returns> A 32-bit unsigned integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.String,System.Int32)"> <summary> Converts the string representation of a number in a specified base to an equivalent 32-bit unsigned integer. </summary> <returns> A 32-bit unsigned integer equivalent to the number in <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A string containing a number. </param> <param name="fromBase"> The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or- <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. </exception> <exception cref="T:System.FormatException"> <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. -or- The return value is less than <see cref="F:System.UInt32.MinValue" /> or larger than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit unsigned integer. </summary> <returns> The 32-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.UInt32)"> <summary> Returns the specified 32-bit unsigned integer; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A 32-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt32(System.UInt64)"> <summary> Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit unsigned integer. </summary> <returns> A 32-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Boolean)"> <summary> Converts the value of the specified Boolean value to the equivalent 64-bit unsigned integer. </summary> <returns> The number 1 if <paramref name="value" /> is true; otherwise, 0. </returns> <param name="value"> A Boolean value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Byte)"> <summary> Converts the value of the specified 8-bit unsigned integer to the equivalent 64-bit signed integer. </summary> <returns> The 64-bit signed integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Char)"> <summary> Converts the value of the specified Unicode character to the equivalent 64-bit unsigned integer. </summary> <returns> The 64-bit unsigned integer equivalent to <paramref name="value" />. </returns> <param name="value"> A Unicode character. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.DateTime)"> <summary> Calling this method always throws <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="value"> A <see cref="T:System.DateTime" />. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> number to an equivalent 64-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A <see cref="T:System.Decimal" /> number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Double)"> <summary> Converts the value of the specified double-precision floating point number to an equivalent 64-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A double-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Int16)"> <summary> Converts the value of the specified 16-bit signed integer to the equivalent 64-bit unsigned integer. </summary> <returns> The 64-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Int32)"> <summary> Converts the value of the specified 32-bit signed integer to an equivalent 64-bit unsigned integer. </summary> <returns> The 64-bit unsigned integer equivalent of <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Int64)"> <summary> Converts the value of the specified 64-bit signed integer to an equivalent 64-bit unsigned integer. </summary> <returns> A 64-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Object)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 64-bit unsigned integer. </summary> <returns> A 64-bit unsigned integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Object,System.IFormatProvider)"> <summary> Converts the value of the specified <see cref="T:System.Object" /> to a 64-bit unsigned integer using the specified culture-specific formatting information. </summary> <returns> A 64-bit unsigned integer equivalent to the value of <paramref name="value" />, or zero if <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that implements the <see cref="T:System.IConvertible" /> interface. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.SByte)"> <summary> Converts the value of the specified 8-bit signed integer to the equivalent 64-bit unsigned integer. </summary> <returns> The 64-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.Single)"> <summary> Converts the value of the specified single-precision floating point number to an equivalent 64-bit unsigned integer. </summary> <returns> <paramref name="value" /> rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6. </returns> <param name="value"> A single-precision floating point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 64-bit signed integer. </summary> <returns> A 64-bit signed integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.String,System.IFormatProvider)"> <summary> Converts the specified <see cref="T:System.String" /> representation of a number to an equivalent 64-bit unsigned integer using the specified culture-specific formatting information. </summary> <returns> A 64-bit unsigned integer equivalent to the value of <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.String" /> containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="value" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.String,System.Int32)"> <summary> Converts the string representation of a number in a specified base to an equivalent 64-bit unsigned integer. </summary> <returns> A 64-bit unsigned integer equivalent to the number in <paramref name="value" />. -or- Zero if <paramref name="value" /> is null. </returns> <param name="value"> A string containing a number. </param> <param name="fromBase"> The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param> <exception cref="T:System.ArgumentException"> <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or- <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. </exception> <exception cref="T:System.FormatException"> <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters. </exception> <exception cref="T:System.OverflowException"> <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. -or- The return value is less than <see cref="F:System.UInt64.MinValue" /> or larger than <see cref="F:System.UInt64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.UInt16)"> <summary> Converts the value of the specified 16-bit unsigned integer to the equivalent 64-bit unsigned integer. </summary> <returns> The 64-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.UInt32)"> <summary> Converts the value of the specified 32-bit unsigned integer to an equivalent 64-bit unsigned integer. </summary> <returns> The 64-bit unsigned integer equivalent of <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Convert.ToUInt64(System.UInt64)"> <summary> Returns the specified 64-bit unsigned integer; no actual conversion is performed. </summary> <returns> Parameter <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A 64-bit unsigned integer. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.Converter`2"> <summary> Represents a method that converts an object from one type to another type. </summary> <returns> The <paramref name="TOutput" /> that represents the converted <paramref name="TInput" />. </returns> <param name="input"> The object to convert. </param> <typeparam name="TInput"> The type of object that is to be converted. </typeparam> <typeparam name="TOutput"> The type the input object is to be converted to. </typeparam> <filterpriority>1</filterpriority> </member> <member name="T:System.CrossAppDomainDelegate"> <summary> Used by <see cref="M:System.AppDomain.DoCallBack(System.CrossAppDomainDelegate)" /> for cross-application domain calls. </summary> <filterpriority>2</filterpriority> </member> <member name="T:System.DataMisalignedException"> <summary> The exception that is thrown when a unit of data is read from or written to an address that is not a multiple of the data size. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.DataMisalignedException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.DataMisalignedException" /> class. </summary> </member> <member name="M:System.DataMisalignedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.DataMisalignedException" /> class using the specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> object that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.DataMisalignedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.DataMisalignedException" /> class using the specified error message and underlying exception. </summary> <param name="message"> A <see cref="T:System.String" /> object that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="innerException"> The exception that is the cause of the current <see cref="T:System.DataMisalignedException" />. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.DateTime"> <summary> Represents an instant in time, typically expressed as a date and time of day. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, and day. </summary> <param name="year"> The year (1 through 9999). </param> <param name="month"> The month (1 through 12). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than 1 or greater than 9999. -or- <paramref name="month" /> is less than 1 or greater than 12. -or- <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />. </exception> <exception cref="T:System.ArgumentException"> The specified parameters evaluate to less than <see cref="F:System.DateTime.MinValue" /> or more than <see cref="F:System.DateTime.MaxValue" />. </exception> </member> <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Globalization.Calendar)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, and day for the specified calendar. </summary> <param name="year"> The year (1 through the number of years in <paramref name="calendar" />). </param> <param name="month"> The month (1 through the number of months in <paramref name="calendar" />). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="calendar"> The <see cref="T:System.Globalization.Calendar" /> that applies to this <see cref="T:System.DateTime" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="calendar" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is not in the range supported by <paramref name="calendar" />. -or- <paramref name="month" /> is less than 1 or greater than the number of months in <paramref name="calendar" />. -or- <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />. </exception> <exception cref="T:System.ArgumentException"> Specified parameters evaluate to less than <see cref="F:System.DateTime.MinValue" /> or more than <see cref="F:System.DateTime.MaxValue" />. </exception> </member> <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, and second. </summary> <param name="year"> The year (1 through 9999). </param> <param name="month"> The month (1 through 12). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="hour"> The hours (0 through 23). </param> <param name="minute"> The minutes (0 through 59). </param> <param name="second"> The seconds (0 through 59). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than 1 or greater than 9999. -or- <paramref name="month" /> is less than 1 or greater than 12. -or- <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />. -or- <paramref name="hour" /> is less than 0 or greater than 23. -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. </exception> <exception cref="T:System.ArgumentException"> Specified parameters evaluate to less than <see cref="F:System.DateTime.MinValue" /> or more than <see cref="F:System.DateTime.MaxValue" />. </exception> </member> <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, second, and Coordinated Universal Time (UTC) or local time. </summary> <param name="year"> The year (1 through 9999). </param> <param name="month"> The month (1 through 12). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="hour"> The hours (0 through 23). </param> <param name="minute"> The minutes (0 through 59). </param> <param name="second"> The seconds (0 through 59). </param> <param name="kind"> One of the <see cref="T:System.DateTimeKind" /> values that indicates whether <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, <paramref name="hour" />, <paramref name="minute" /> and <paramref name="second" /> specify a local time, Coordinated Universal Time (UTC), or neither. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than 1 or greater than 9999. -or- <paramref name="month" /> is less than 1 or greater than 12. -or- <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />. -or- <paramref name="hour" /> is less than 0 or greater than 23. -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. </exception> <exception cref="T:System.ArgumentException"> The specified time parameters evaluate to less than <see cref="F:System.DateTime.MinValue" /> or more than <see cref="F:System.DateTime.MaxValue" />. -or- <paramref name="kind" /> is not one of the <see cref="T:System.DateTimeKind" /> values. </exception> </member> <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, and second for the specified calendar. </summary> <param name="year"> The year (1 through the number of years in <paramref name="calendar" />). </param> <param name="month"> The month (1 through the number of months in <paramref name="calendar" />). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="hour"> The hours (0 through 23). </param> <param name="minute"> The minutes (0 through 59). </param> <param name="second"> The seconds (0 through 59). </param> <param name="calendar"> The <see cref="T:System.Globalization.Calendar" /> that applies to this <see cref="T:System.DateTime" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="calendar" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is not in the range supported by <paramref name="calendar" />. -or- <paramref name="month" /> is less than 1 or greater than the number of months in <paramref name="calendar" />. -or- <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />. -or- <paramref name="hour" /> is less than 0 or greater than 23 -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. </exception> <exception cref="T:System.ArgumentException"> Specified parameters evaluate to less than <see cref="F:System.DateTime.MinValue" /> or more than <see cref="F:System.DateTime.MaxValue" />. </exception> </member> <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, second, and millisecond. </summary> <param name="year"> The year (1 through 9999). </param> <param name="month"> The month (1 through 12). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="hour"> The hours (0 through 23). </param> <param name="minute"> The minutes (0 through 59). </param> <param name="second"> The seconds (0 through 59). </param> <param name="millisecond"> The milliseconds (0 through 999). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than 1 or greater than 9999. -or- <paramref name="month" /> is less than 1 or greater than 12. -or- <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />. -or- <paramref name="hour" /> is less than 0 or greater than 23. -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. -or- <paramref name="millisecond" /> is less than 0 or greater than 999. </exception> <exception cref="T:System.ArgumentException"> Specified parameters evaluate to less than <see cref="F:System.DateTime.MinValue" /> or more than <see cref="F:System.DateTime.MaxValue" />. </exception> </member> <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, second, millisecond, and Coordinated Universal Time (UTC) or local time. </summary> <param name="year"> The year (1 through 9999). </param> <param name="month"> The month (1 through 12). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="hour"> The hours (0 through 23). </param> <param name="minute"> The minutes (0 through 59). </param> <param name="second"> The seconds (0 through 59). </param> <param name="millisecond"> The milliseconds (0 through 999). </param> <param name="kind"> One of the <see cref="T:System.DateTimeKind" /> values that indicates whether <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, <paramref name="hour" />, <paramref name="minute" />, <paramref name="second" />, and <paramref name="millisecond" /> specify a local time, Coordinated Universal Time (UTC), or neither. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than 1 or greater than 9999. -or- <paramref name="month" /> is less than 1 or greater than 12. -or- <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />. -or- <paramref name="hour" /> is less than 0 or greater than 23. -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. -or- <paramref name="millisecond" /> is less than 0 or greater than 999. </exception> <exception cref="T:System.ArgumentException"> The specified time parameters evaluate to less than <see cref="F:System.DateTime.MinValue" /> or more than <see cref="F:System.DateTime.MaxValue" />. -or- <paramref name="kind" /> is not one of the <see cref="T:System.DateTimeKind" /> values. </exception> </member> <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, second, and millisecond for the specified calendar. </summary> <param name="year"> The year (1 through the number of years in <paramref name="calendar" />). </param> <param name="month"> The month (1 through the number of months in <paramref name="calendar" />). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="hour"> The hours (0 through 23). </param> <param name="minute"> The minutes (0 through 59). </param> <param name="second"> The seconds (0 through 59). </param> <param name="millisecond"> The milliseconds (0 through 999). </param> <param name="calendar"> The <see cref="T:System.Globalization.Calendar" /> that applies to this <see cref="T:System.DateTime" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="calendar" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is not in the range supported by <paramref name="calendar" />. -or- <paramref name="month" /> is less than 1 or greater than the number of months in <paramref name="calendar" />. -or- <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />. -or- <paramref name="hour" /> is less than 0 or greater than 23. -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. -or- <paramref name="millisecond" /> is less than 0 or greater than 999. </exception> <exception cref="T:System.ArgumentException"> Specified parameters evaluate to less than <see cref="F:System.DateTime.MinValue" /> or more than <see cref="F:System.DateTime.MaxValue" />. </exception> </member> <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar,System.DateTimeKind)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to the specified year, month, day, hour, minute, second, millisecond, and Coordinated Universal Time (UTC) or local time for the specified calendar. </summary> <param name="year"> The year (1 through the number of years in <paramref name="calendar" />). </param> <param name="month"> The month (1 through the number of months in <paramref name="calendar" />). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="hour"> The hours (0 through 23). </param> <param name="minute"> The minutes (0 through 59). </param> <param name="second"> The seconds (0 through 59). </param> <param name="millisecond"> The milliseconds (0 through 999). </param> <param name="calendar"> The <see cref="T:System.Globalization.Calendar" /> object that applies to this <see cref="T:System.DateTime" /> structure. </param> <param name="kind"> One of the <see cref="T:System.DateTimeKind" /> values that indicates whether <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, <paramref name="hour" />, <paramref name="minute" />, <paramref name="second" />, and <paramref name="millisecond" /> specify a local time, Coordinated Universal Time (UTC), or neither. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="calendar" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is not in the range supported by <paramref name="calendar" />. -or- <paramref name="month" /> is less than 1 or greater than the number of months in <paramref name="calendar" />. -or- <paramref name="day" /> is less than 1 or greater than the number of days in <paramref name="month" />. -or- <paramref name="hour" /> is less than 0 or greater than 23. -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. -or- <paramref name="millisecond" /> is less than 0 or greater than 999. </exception> <exception cref="T:System.ArgumentException"> The specified time parameters evaluate to less than <see cref="F:System.DateTime.MinValue" /> or more than <see cref="F:System.DateTime.MaxValue" />. -or- <paramref name="kind" /> is not one of the <see cref="T:System.DateTimeKind" /> values. </exception> </member> <member name="M:System.DateTime.#ctor(System.Int64)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to a specified number of ticks. </summary> <param name="ticks"> A date and time expressed in 100-nanosecond units. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="ticks" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> </member> <member name="M:System.DateTime.#ctor(System.Int64,System.DateTimeKind)"> <summary> Initializes a new instance of the <see cref="T:System.DateTime" /> structure to a specified number of ticks and to Coordinated Universal Time (UTC) or local time. </summary> <param name="ticks"> A date and time expressed in 100-nanosecond units. </param> <param name="kind"> One of the <see cref="T:System.DateTimeKind" /> values that indicates whether <paramref name="ticks" /> specifies a local time, Coordinated Universal Time (UTC), or neither. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="ticks" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="kind" /> is not one of the <see cref="T:System.DateTimeKind" /> values. </exception> </member> <member name="M:System.DateTime.Add(System.TimeSpan)"> <summary> Adds the value of the specified <see cref="T:System.TimeSpan" /> to the value of this instance. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the sum of the date and time represented by this instance and the time interval represented by <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.TimeSpan" /> object that represents a positive or negative time interval. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.AddDays(System.Double)"> <summary> Adds the specified number of days to the value of this instance. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the sum of the date and time represented by this instance and the number of days represented by <paramref name="value" />. </returns> <param name="value"> A number of whole and fractional days. The <paramref name="value" /> parameter can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.AddHours(System.Double)"> <summary> Adds the specified number of hours to the value of this instance. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the sum of the date and time represented by this instance and the number of hours represented by <paramref name="value" />. </returns> <param name="value"> A number of whole and fractional hours. The <paramref name="value" /> parameter can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.AddMilliseconds(System.Double)"> <summary> Adds the specified number of milliseconds to the value of this instance. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the sum of the date and time represented by this instance and the number of milliseconds represented by <paramref name="value" />. </returns> <param name="value"> A number of whole and fractional milliseconds. The <paramref name="value" /> parameter can be negative or positive. Note that this value is rounded to the nearest integer. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.AddMinutes(System.Double)"> <summary> Adds the specified number of minutes to the value of this instance. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the sum of the date and time represented by this instance and the number of minutes represented by <paramref name="value" />. </returns> <param name="value"> A number of whole and fractional minutes. The <paramref name="value" /> parameter can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.AddMonths(System.Int32)"> <summary> Adds the specified number of months to the value of this instance. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the sum of the date and time represented by this instance and <paramref name="months" />. </returns> <param name="months"> A number of months. The <paramref name="months" /> parameter can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. -or- <paramref name="months" /> is less than -120,000 or greater than 120,000. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.AddSeconds(System.Double)"> <summary> Adds the specified number of seconds to the value of this instance. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the sum of the date and time represented by this instance and the number of seconds represented by <paramref name="value" />. </returns> <param name="value"> A number of whole and fractional seconds. The <paramref name="value" /> parameter can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.AddTicks(System.Int64)"> <summary> Adds the specified number of ticks to the value of this instance. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the sum of the date and time represented by this instance and the time represented by <paramref name="value" />. </returns> <param name="value"> A number of 100-nanosecond ticks. The <paramref name="value" /> parameter can be positive or negative. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.AddYears(System.Int32)"> <summary> Adds the specified number of years to the value of this instance. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the sum of the date and time represented by this instance and the number of years represented by <paramref name="value" />. </returns> <param name="value"> A number of years. The <paramref name="value" /> parameter can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="value" /> or the resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.Compare(System.DateTime,System.DateTime)"> <summary> Compares two instances of <see cref="T:System.DateTime" /> and returns an integer that indicates whether the first instance is earlier than, the same as, or later than the second instance. </summary> <returns> A signed number indicating the relative values of <paramref name="t1" /> and <paramref name="t2" />. Value Type Condition Less than zero <paramref name="t1" /> is earlier than <paramref name="t2" />. Zero <paramref name="t1" /> is the same as <paramref name="t2" />. Greater than zero <paramref name="t1" /> is later than <paramref name="t2" />. </returns> <param name="t1"> The first <see cref="T:System.DateTime" />. </param> <param name="t2"> The second <see cref="T:System.DateTime" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.CompareTo(System.DateTime)"> <summary> Compares the value of this instance to a specified <see cref="T:System.DateTime" /> value and returns an integer that indicates whether this instance is earlier than, the same as, or later than the specified <see cref="T:System.DateTime" /> value. </summary> <returns> A signed number indicating the relative values of this instance and the <paramref name="value" /> parameter. Value Description Less than zero This instance is earlier than <paramref name="value" />. Zero This instance is the same as <paramref name="value" />. Greater than zero This instance is later than <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.DateTime" /> object to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.CompareTo(System.Object)"> <summary> Compares the value of this instance to a specified object that contains a specified <see cref="T:System.DateTime" /> value, and returns an integer that indicates whether this instance is earlier than, the same as, or later than the specified <see cref="T:System.DateTime" /> value. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Value Description Less than zero This instance is earlier than <paramref name="value" />. Zero This instance is the same as <paramref name="value" />. Greater than zero This instance is later than <paramref name="value" />, or <paramref name="value" /> is null. </returns> <param name="value"> A boxed <see cref="T:System.DateTime" /> object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.DateTime" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.DateTime.Date"> <summary> Gets the date component of this instance. </summary> <returns> A new <see cref="T:System.DateTime" /> with the same date as this instance, and the time value set to 12:00:00 midnight (00:00:00). </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.Day"> <summary> Gets the day of the month represented by this instance. </summary> <returns> The day component, expressed as a value between 1 and 31. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.DayOfWeek"> <summary> Gets the day of the week represented by this instance. </summary> <returns> A <see cref="T:System.DayOfWeek" /> enumerated constant that indicates the day of the week of this <see cref="T:System.DateTime" /> value. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.DayOfYear"> <summary> Gets the day of the year represented by this instance. </summary> <returns> The day of the year, expressed as a value between 1 and 366. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.DaysInMonth(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month and year. </summary> <returns> The number of days in <paramref name="month" /> for the specified <paramref name="year" />. For example, if <paramref name="month" /> equals 2 for February, the return value is 28 or 29 depending upon whether <paramref name="year" /> is a leap year. </returns> <param name="year"> The year. </param> <param name="month"> The month (a number ranging from 1 to 12). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="month" /> is less than 1 or greater than 12. -or- <paramref name="year" /> is less than 1 or greater than 9999. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.Equals(System.DateTime)"> <summary> Returns a value indicating whether this instance is equal to the specified <see cref="T:System.DateTime" /> instance. </summary> <returns>true if the <paramref name="value" /> parameter equals the value of this instance; otherwise, false. </returns> <param name="value"> A <see cref="T:System.DateTime" /> instance to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.Equals(System.DateTime,System.DateTime)"> <summary> Returns a value indicating whether two instances of <see cref="T:System.DateTime" /> are equal. </summary> <returns>true if the two <see cref="T:System.DateTime" /> values are equal; otherwise, false. </returns> <param name="t1"> The first <see cref="T:System.DateTime" /> instance. </param> <param name="t2"> The second <see cref="T:System.DateTime" /> instance. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="value" /> is an instance of <see cref="T:System.DateTime" /> and equals the value of this instance; otherwise, false. </returns> <param name="value"> An object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.FromBinary(System.Int64)"> <summary> Deserializes a 64-bit binary value and recreates an original serialized <see cref="T:System.DateTime" /> object. </summary> <returns> A <see cref="T:System.DateTime" /> object that is equivalent to the <see cref="T:System.DateTime" /> object that was serialized by the <see cref="M:System.DateTime.ToBinary" /> method. </returns> <param name="dateData"> A 64-bit signed integer that encodes the <see cref="P:System.DateTime.Kind" /> property in a 2-bit field and the <see cref="P:System.DateTime.Ticks" /> property in a 62-bit field. </param> <exception cref="T:System.ArgumentException"> <paramref name="dateData" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.FromFileTime(System.Int64)"> <summary> Converts the specified Windows file time to an equivalent local time. </summary> <returns> A <see cref="T:System.DateTime" /> object that represents a local time equivalent to the date and time represented by the <paramref name="fileTime" /> parameter. </returns> <param name="fileTime"> A Windows file time expressed in ticks. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="fileTime" /> is less than 0 or represents a time greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.FromFileTimeUtc(System.Int64)"> <summary> Converts the specified Windows file time to an equivalent UTC time. </summary> <returns> A <see cref="T:System.DateTime" /> object that represents a UTC time equivalent to the date and time represented by the <paramref name="fileTime" /> parameter. </returns> <param name="fileTime"> A Windows file time expressed in ticks. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="fileTime" /> is less than 0 or represents a time greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.FromOADate(System.Double)"> <summary> Returns a <see cref="T:System.DateTime" /> equivalent to the specified OLE Automation Date. </summary> <returns> A <see cref="T:System.DateTime" /> that represents the same date and time as <paramref name="d" />. </returns> <param name="d"> An OLE Automation Date value. </param> <exception cref="T:System.ArgumentException"> The date is not a valid OLE Automation Date value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.GetDateTimeFormats"> <summary> Converts the value of this instance to all the string representations supported by the standard <see cref="T:System.DateTime" /> format specifiers. </summary> <returns> A string array where each element is the representation of the value of this instance formatted with one of the standard <see cref="T:System.DateTime" /> formatting specifiers. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.GetDateTimeFormats(System.Char)"> <summary> Converts the value of this instance to all the string representations supported by the specified standard <see cref="T:System.DateTime" /> format specifier. </summary> <returns> A string array where each element is the representation of the value of this instance formatted with the <paramref name="format" /> standard <see cref="T:System.DateTime" /> formatting specifier. </returns> <param name="format"> A DateTime format string. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is not a valid standard date and time format specifier character. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.GetDateTimeFormats(System.Char,System.IFormatProvider)"> <summary> Converts the value of this instance to all the string representations supported by the specified standard <see cref="T:System.DateTime" /> format specifier and culture-specific formatting information. </summary> <returns> A string array where each element is the representation of the value of this instance formatted with one of the standard <see cref="T:System.DateTime" /> formatting specifiers. </returns> <param name="format"> A DateTime format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about this instance. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is not a valid standard date and time format specifier character. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.GetDateTimeFormats(System.IFormatProvider)"> <summary> Converts the value of this instance to all the string representations supported by the standard <see cref="T:System.DateTime" /> format specifiers and the specified culture-specific formatting information. </summary> <returns> A string array where each element is the representation of the value of this instance formatted with one of the standard <see cref="T:System.DateTime" /> formatting specifiers. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.DateTime" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.DateTime" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.DateTime.Hour"> <summary> Gets the hour component of the date represented by this instance. </summary> <returns> The hour component, expressed as a value between 0 and 23. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.IsDaylightSavingTime"> <summary> Indicates whether this instance of <see cref="T:System.DateTime" /> is within the Daylight Saving Time range for the current time zone. </summary> <returns>true if <see cref="P:System.DateTime.Kind" /> is <see cref="F:System.DateTimeKind.Local" /> or <see cref="F:System.DateTimeKind.Unspecified" /> and the value of this instance of <see cref="T:System.DateTime" /> is within the Daylight Saving Time range for the current time zone. false if <see cref="P:System.DateTime.Kind" /> is <see cref="F:System.DateTimeKind.Utc" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.IsLeapYear(System.Int32)"> <summary> Returns an indication whether the specified year is a leap year. </summary> <returns>true if <paramref name="year" /> is a leap year; otherwise, false. </returns> <param name="year"> A 4-digit year. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than 1 or greater than 9999. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.Kind"> <summary> Gets a value that indicates whether the time represented by this instance is based on local time, Coordinated Universal Time (UTC), or neither. </summary> <returns> One of the <see cref="T:System.DateTimeKind" /> values. The default is <see cref="F:System.DateTimeKind.Unspecified" />. </returns> <filterpriority>1</filterpriority> </member> <member name="F:System.DateTime.MaxValue"> <summary> Represents the largest possible value of <see cref="T:System.DateTime" />. This field is read-only. </summary> <exception cref="T:System.ArgumentOutOfRangeException"> <see cref="F:System.DateTime.MaxValue" /> is outside the range of the current culture's default calendar or of a specified culture's default calendar. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.Millisecond"> <summary> Gets the milliseconds component of the date represented by this instance. </summary> <returns> The milliseconds component, expressed as a value between 0 and 999. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.Minute"> <summary> Gets the minute component of the date represented by this instance. </summary> <returns> The minute component, expressed as a value between 0 and 59. </returns> <filterpriority>1</filterpriority> </member> <member name="F:System.DateTime.MinValue"> <summary> Represents the smallest possible value of <see cref="T:System.DateTime" />. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.Month"> <summary> Gets the month component of the date represented by this instance. </summary> <returns> The month component, expressed as a value between 1 and 12. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.Now"> <summary> Gets a <see cref="T:System.DateTime" /> object that is set to the current date and time on this computer, expressed as the local time. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the current local date and time. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.op_Addition(System.DateTime,System.TimeSpan)"> <summary> Adds a specified time interval to a specified date and time, yielding a new date and time. </summary> <returns> A <see cref="T:System.DateTime" /> that is the sum of the values of <paramref name="d" /> and <paramref name="t" />. </returns> <param name="d"> A <see cref="T:System.DateTime" />. </param> <param name="t"> A <see cref="T:System.TimeSpan" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.DateTime.op_Equality(System.DateTime,System.DateTime)"> <summary> Determines whether two specified instances of <see cref="T:System.DateTime" /> are equal. </summary> <returns>true if <paramref name="d1" /> and <paramref name="d2" /> represent the same date and time; otherwise, false. </returns> <param name="d1"> A <see cref="T:System.DateTime" />. </param> <param name="d2"> A <see cref="T:System.DateTime" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.DateTime.op_GreaterThan(System.DateTime,System.DateTime)"> <summary> Determines whether one specified <see cref="T:System.DateTime" /> is greater than another specified <see cref="T:System.DateTime" />. </summary> <returns>true if <paramref name="t1" /> is greater than <paramref name="t2" />; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.DateTime" />. </param> <param name="t2"> A <see cref="T:System.DateTime" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.DateTime.op_GreaterThanOrEqual(System.DateTime,System.DateTime)"> <summary> Determines whether one specified <see cref="T:System.DateTime" /> is greater than or equal to another specified <see cref="T:System.DateTime" />. </summary> <returns>true if <paramref name="t1" /> is greater than or equal to <paramref name="t2" />; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.DateTime" />. </param> <param name="t2"> A <see cref="T:System.DateTime" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.DateTime.op_Inequality(System.DateTime,System.DateTime)"> <summary> Determines whether two specified instances of <see cref="T:System.DateTime" /> are not equal. </summary> <returns>true if <paramref name="d1" /> and <paramref name="d2" /> do not represent the same date and time; otherwise, false. </returns> <param name="d1"> A <see cref="T:System.DateTime" />. </param> <param name="d2"> A <see cref="T:System.DateTime" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.DateTime.op_LessThan(System.DateTime,System.DateTime)"> <summary> Determines whether one specified <see cref="T:System.DateTime" /> is less than another specified <see cref="T:System.DateTime" />. </summary> <returns>true if <paramref name="t1" /> is less than <paramref name="t2" />; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.DateTime" />. </param> <param name="t2"> A <see cref="T:System.DateTime" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.DateTime.op_LessThanOrEqual(System.DateTime,System.DateTime)"> <summary> Determines whether one specified <see cref="T:System.DateTime" /> is less than or equal to another specified <see cref="T:System.DateTime" />. </summary> <returns>true if <paramref name="t1" /> is less than or equal to <paramref name="t2" />; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.DateTime" />. </param> <param name="t2"> A <see cref="T:System.DateTime" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.DateTime.op_Subtraction(System.DateTime,System.DateTime)"> <summary> Subtracts a specified date and time from another specified date and time and returns a time interval. </summary> <returns> A <see cref="T:System.TimeSpan" /> that is the time interval between <paramref name="d1" /> and <paramref name="d2" />; that is, <paramref name="d1" /> minus <paramref name="d2" />. </returns> <param name="d1"> A <see cref="T:System.DateTime" /> (the minuend). </param> <param name="d2"> A <see cref="T:System.DateTime" /> (the subtrahend). </param> <filterpriority>3</filterpriority> </member> <member name="M:System.DateTime.op_Subtraction(System.DateTime,System.TimeSpan)"> <summary> Subtracts a specified time interval from a specified date and time and returns a new date and time. </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the value of <paramref name="d" /> minus the value of <paramref name="t" />. </returns> <param name="d"> A <see cref="T:System.DateTime" />. </param> <param name="t"> A <see cref="T:System.TimeSpan" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTime" /> is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.DateTime.Parse(System.String)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent. </summary> <returns> A <see cref="T:System.DateTime" /> equivalent to the date and time contained in <paramref name="s" />. </returns> <param name="s"> A string containing a date and time to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> does not contain a valid string representation of a date and time. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.Parse(System.String,System.IFormatProvider)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified culture-specific format information. </summary> <returns> A <see cref="T:System.DateTime" /> equivalent to the date and time contained in <paramref name="s" /> as specified by <paramref name="provider" />. </returns> <param name="s"> A string containing a date and time to convert. </param> <param name="provider"> An object that supplies culture-specific format information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> does not contain a valid string representation of a date and time. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified culture-specific format information and formatting style. </summary> <returns> A <see cref="T:System.DateTime" /> equivalent to the date and time contained in <paramref name="s" /> as specified by <paramref name="provider" /> and <paramref name="styles" />. </returns> <param name="s"> A string containing a date and time to convert. </param> <param name="provider"> An object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="styles"> A bitwise combination of the enumeration values that indicates the style elements that can be present in <paramref name="s" /> for the parse operation to succeed and that defines how to interpret the parsed date in relation to the current time zone or the current date. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> does not contain a valid string representation of a date and time. </exception> <exception cref="T:System.ArgumentException"> <paramref name="styles" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values. For example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.ParseExact(System.String,System.String,System.IFormatProvider)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified format and culture-specific format information. The format of the string representation must match the specified format exactly. </summary> <returns> A <see cref="T:System.DateTime" /> equivalent to the date and time contained in <paramref name="s" /> as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="s"> A string that contains a date and time to convert. </param> <param name="format"> A format specifier that defines the required format of <paramref name="s" />. </param> <param name="provider"> An object that supplies culture-specific format information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> or <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> or <paramref name="format" /> is an empty string. -or- <paramref name="s" /> does not contain a date and time that corresponds to the pattern specified in <paramref name="format" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified format, culture-specific format information, and style. The format of the string representation must match the specified format exactly or an exception is thrown. </summary> <returns> A <see cref="T:System.DateTime" /> equivalent to the date and time contained in <paramref name="s" /> as specified by <paramref name="format" />, <paramref name="provider" />, and <paramref name="style" />. </returns> <param name="s"> A string containing a date and time to convert. </param> <param name="format"> A format specifier that defines the required format of <paramref name="s" />. </param> <param name="provider"> An object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="style"> A bitwise combination of the enumeration values that provides additional information about <paramref name="s" />, about style elements that may be present in <paramref name="s" />, or about the conversion from <paramref name="s" /> to a <see cref="T:System.DateTime" /> value. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> or <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> or <paramref name="format" /> is an empty string. -or- <paramref name="s" /> does not contain a date and time that corresponds to the pattern specified in <paramref name="format" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values. For example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified array of formats, culture-specific format information, and style. The format of the string representation must match at least one of the specified formats exactly or an exception is thrown. </summary> <returns> A <see cref="T:System.DateTime" /> equivalent to the date and time contained in <paramref name="s" /> as specified by <paramref name="formats" />, <paramref name="provider" />, and <paramref name="style" />. </returns> <param name="s"> A string containing one or more dates and times to convert. </param> <param name="formats"> An array of allowable formats of <paramref name="s" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific format information about <paramref name="s" />. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.DateTimeStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> or <paramref name="formats" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is an empty string. -or- an element of <paramref name="formats" /> is an empty string. -or- <paramref name="s" /> does not contain a date and time that corresponds to any element of <paramref name="formats" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values. For example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.DateTime.Second"> <summary> Gets the seconds component of the date represented by this instance. </summary> <returns> The seconds, between 0 and 59. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.SpecifyKind(System.DateTime,System.DateTimeKind)"> <summary> Creates a new <see cref="T:System.DateTime" /> object that represents the same time as the specified <see cref="T:System.DateTime" />, but is designated in either local time, Coordinated Universal Time (UTC), or neither, as indicated by the specified <see cref="T:System.DateTimeKind" /> value. </summary> <returns> A new <see cref="T:System.DateTime" /> object consisting of the same time represented by the <paramref name="value" /> parameter and the <see cref="T:System.DateTimeKind" /> value specified by the <paramref name="kind" /> parameter. </returns> <param name="value"> A <see cref="T:System.DateTime" /> object. </param> <param name="kind"> One of the <see cref="T:System.DateTimeKind" /> values. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.Subtract(System.DateTime)"> <summary> Subtracts the specified date and time from this instance. </summary> <returns> A <see cref="T:System.TimeSpan" /> interval equal to the date and time represented by this instance minus the date and time represented by <paramref name="value" />. </returns> <param name="value"> An instance of <see cref="T:System.DateTime" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The result is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.Subtract(System.TimeSpan)"> <summary> Subtracts the specified duration from this instance. </summary> <returns> A <see cref="T:System.DateTime" /> equal to the date and time represented by this instance minus the time interval represented by <paramref name="value" />. </returns> <param name="value"> An instance of <see cref="T:System.TimeSpan" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The result is less than <see cref="F:System.DateTime.MinValue" /> or greater than <see cref="F:System.DateTime.MaxValue" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> Returns the current <see cref="T:System.DateTime" /> object. </summary> <returns> The current <see cref="T:System.DateTime" /> object. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> </member> <member name="M:System.DateTime.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface or null. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> Converts the current <see cref="T:System.DateTime" /> object to an object of a specified type. </summary> <returns> An object of the type specified by the <paramref name="type" /> parameter, with a value equivalent to the current <see cref="T:System.DateTime" /> object. </returns> <param name="type"> The desired type. </param> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DateTime" /> type. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.DateTime.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data needed to serialize the current <see cref="T:System.DateTime" /> object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to populate with data. </param> <param name="context"> The destination for this serialization. (This parameter is not used; specify null.) </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="P:System.DateTime.Ticks"> <summary> Gets the number of ticks that represent the date and time of this instance. </summary> <returns> The number of ticks that represent the date and time of this instance. The value is between DateTime.MinValue.Ticks and DateTime.MaxValue.Ticks. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.TimeOfDay"> <summary> Gets the time of day for this instance. </summary> <returns> A <see cref="T:System.TimeSpan" /> that represents the fraction of the day that has elapsed since midnight. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.ToBinary"> <summary> Serializes the current <see cref="T:System.DateTime" /> object to a 64-bit binary value that subsequently can be used to recreate the <see cref="T:System.DateTime" /> object. </summary> <returns> A 64-bit signed integer that encodes the <see cref="P:System.DateTime.Kind" /> and <see cref="P:System.DateTime.Ticks" /> properties. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.DateTime.Today"> <summary> Gets the current date. </summary> <returns> A <see cref="T:System.DateTime" /> set to today's date, with the time component set to 00:00:00. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.ToFileTime"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to a Windows file time. </summary> <returns> The value of the current <see cref="T:System.DateTime" /> object expressed as a Windows file time. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting file time would represent a date and time before 12:00 midnight January 1, 1601 C.E. UTC. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.ToFileTimeUtc"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to a Windows file time. </summary> <returns> The value of the current <see cref="T:System.DateTime" /> object expressed as a Windows file time. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting file time would represent a date and time before 12:00 midnight January 1, 1601 C.E. UTC. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.ToLocalTime"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to local time. </summary> <returns> A <see cref="T:System.DateTime" /> object whose <see cref="P:System.DateTime.Kind" /> property is <see cref="F:System.DateTimeKind.Local" />, and whose value is the local time equivalent to the value of the current <see cref="T:System.DateTime" /> object, or <see cref="F:System.DateTime.MaxValue" /> if the converted value is too large to be represented by a <see cref="T:System.DateTime" /> object, or <see cref="F:System.DateTime.MinValue" /> if the converted value is too small to be represented as a <see cref="T:System.DateTime" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.ToLongDateString"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent long date string representation. </summary> <returns> A string that contains the long date string representation of the current <see cref="T:System.DateTime" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.ToLongTimeString"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent long time string representation. </summary> <returns> A string that contains the long time string representation of the current <see cref="T:System.DateTime" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.ToOADate"> <summary> Converts the value of this instance to the equivalent OLE Automation date. </summary> <returns> A double-precision floating-point number that contains an OLE Automation date equivalent to the value of this instance. </returns> <exception cref="T:System.OverflowException"> The value of this instance cannot be represented as an OLE Automation Date. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.ToShortDateString"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent short date string representation. </summary> <returns> A string that contains the short date string representation of the current <see cref="T:System.DateTime" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.ToShortTimeString"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent short time string representation. </summary> <returns> A string that contains the short time string representation of the current <see cref="T:System.DateTime" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.ToString"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent string representation. </summary> <returns> A string representation of the value of the current <see cref="T:System.DateTime" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.ToString(System.IFormatProvider)"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent string representation using the specified culture-specific format information. </summary> <returns> A string representation of value of the current <see cref="T:System.DateTime" /> object as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.ToString(System.String)"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent string representation using the specified format. </summary> <returns> A string representation of value of the current <see cref="T:System.DateTime" /> object as specified by <paramref name="format" />. </returns> <param name="format"> A DateTime format string. </param> <exception cref="T:System.FormatException"> The length of <paramref name="format" /> is 1, and it is not one of the format specifier characters defined for <see cref="T:System.Globalization.DateTimeFormatInfo" />. -or- <paramref name="format" /> does not contain a valid custom format pattern. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.ToString(System.String,System.IFormatProvider)"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> A string representation of value of the current <see cref="T:System.DateTime" /> object as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A DateTime format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> The length of <paramref name="format" /> is 1, and it is not one of the format specifier characters defined for <see cref="T:System.Globalization.DateTimeFormatInfo" />. -or- <paramref name="format" /> does not contain a valid custom format pattern. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.ToUniversalTime"> <summary> Converts the value of the current <see cref="T:System.DateTime" /> object to Coordinated Universal Time (UTC). </summary> <returns> A <see cref="T:System.DateTime" /> object whose <see cref="P:System.DateTime.Kind" /> property is <see cref="F:System.DateTimeKind.Utc" />, and whose value is the UTC equivalent to the value of the current <see cref="T:System.DateTime" /> object, or <see cref="F:System.DateTime.MaxValue" /> if the converted value is too large to be represented by a <see cref="T:System.DateTime" /> object, or <see cref="F:System.DateTime.MinValue" /> if the converted value is too small to be represented by a <see cref="T:System.DateTime" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTime.TryParse(System.String,System.DateTime@)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent and returns a value that indicates whether the conversion succeeded. </summary> <returns>true if the <paramref name="s" /> parameter was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a date and time to convert. </param> <param name="result"> When this method returns, contains the <see cref="T:System.DateTime" /> value equivalent to the date and time contained in <paramref name="s" />, if the conversion succeeded, or <see cref="F:System.DateTime.MinValue" /> if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is an empty string, or does not contain a valid string representation of a date and time. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.TryParse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified culture-specific format information and formatting style, and returns a value that indicates whether the conversion succeeded. </summary> <returns>true if the <paramref name="s" /> parameter was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a date and time to convert. </param> <param name="provider"> An object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="styles"> A bitwise combination of enumeration values that defines how to interpret the parsed date in relation to the current time zone or the current date. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />. </param> <param name="result"> When this method returns, contains the <see cref="T:System.DateTime" /> value equivalent to the date and time contained in <paramref name="s" />, if the conversion succeeded, or <see cref="F:System.DateTime.MinValue" /> if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is an empty string, or does not contain a valid string representation of a date and time. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="styles" /> is not a valid <see cref="T:System.Globalization.DateTimeStyles" /> value. -or- <paramref name="styles" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values (for example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="provider" /> is a neutral culture and cannot be used in a parsing operation. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified format, culture-specific format information, and style. The format of the string representation must match the specified format exactly. The method returns a value that indicates whether the conversion succeeded. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a date and time to convert. </param> <param name="format"> The required format of <paramref name="s" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="style"> A bitwise combination of one or more enumeration values that indicate the permitted format of <paramref name="s" />. </param> <param name="result"> When this method returns, contains the <see cref="T:System.DateTime" /> value equivalent to the date and time contained in <paramref name="s" />, if the conversion succeeded, or <see cref="F:System.DateTime.MinValue" /> if the conversion failed. The conversion fails if either the <paramref name="s" /> or <paramref name="format" /> parameter is null, is an empty string, or does not contain a date and time that correspond to the pattern specified in <paramref name="format" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="styles" /> is not a valid <see cref="T:System.Globalization.DateTimeStyles" /> value. -or- <paramref name="styles" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values (for example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />). </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.DateTime.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified array of formats, culture-specific format information, and style. The format of the string representation must match at least one of the specified formats exactly. The method returns a value that indicates whether the conversion succeeded. </summary> <returns>true if the <paramref name="s" /> parameter was converted successfully; otherwise, false. </returns> <param name="s"> A string containing one or more dates and times to convert. </param> <param name="formats"> An array of allowable formats of <paramref name="s" />. </param> <param name="provider"> An object that supplies culture-specific format information about <paramref name="s" />. </param> <param name="style"> A bitwise combination of enumeration values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />. </param> <param name="result"> When this method returns, contains the <see cref="T:System.DateTime" /> value equivalent to the date and time contained in <paramref name="s" />, if the conversion succeeded, or <see cref="F:System.DateTime.MinValue" /> if the conversion failed. The conversion fails if <paramref name="s" /> or <paramref name="formats" /> is null, <paramref name="s" /> or an element of <paramref name="formats" /> is an empty string, or the format of <paramref name="s" /> is not exactly as specified by at least one of the format patterns in <paramref name="formats" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="styles" /> is not a valid <see cref="T:System.Globalization.DateTimeStyles" /> value. -or- <paramref name="styles" /> contains an invalid combination of <see cref="T:System.Globalization.DateTimeStyles" /> values (for example, both <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" /> and <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />). </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.UtcNow"> <summary> Gets a <see cref="T:System.DateTime" /> object that is set to the current date and time on this computer, expressed as the Coordinated Universal Time (UTC). </summary> <returns> A <see cref="T:System.DateTime" /> whose value is the current UTC date and time. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.DateTime.Year"> <summary> Gets the year component of the date represented by this instance. </summary> <returns> The year, between 1 and 9999. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.DateTimeKind"> <summary> Specifies whether a <see cref="T:System.DateTime" /> object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.DateTimeKind.Unspecified"> <summary> The time represented is not specified as either local time or Coordinated Universal Time (UTC). </summary> </member> <member name="F:System.DateTimeKind.Utc"> <summary> The time represented is UTC. </summary> </member> <member name="F:System.DateTimeKind.Local"> <summary> The time represented is local time. </summary> </member> <member name="T:System.DayOfWeek"> <summary> Specifies the day of the week. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.DayOfWeek.Sunday"> <summary> Indicates Sunday. </summary> </member> <member name="F:System.DayOfWeek.Monday"> <summary> Indicates Monday. </summary> </member> <member name="F:System.DayOfWeek.Tuesday"> <summary> Indicates Tuesday. </summary> </member> <member name="F:System.DayOfWeek.Wednesday"> <summary> Indicates Wednesday. </summary> </member> <member name="F:System.DayOfWeek.Thursday"> <summary> Indicates Thursday. </summary> </member> <member name="F:System.DayOfWeek.Friday"> <summary> Indicates Friday. </summary> </member> <member name="F:System.DayOfWeek.Saturday"> <summary> Indicates Saturday. </summary> </member> <member name="T:System.DBNull"> <summary> Represents a nonexistent value. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.DBNull.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.DBNull" /> object. </summary> <param name="info"> A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing information required to serialize the <see cref="T:System.DBNull" /> object. </param> <param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object containing the source and destination of the serialized stream associated with the <see cref="T:System.DBNull" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.DBNull.GetTypeCode"> <summary> Gets the <see cref="T:System.TypeCode" /> value for <see cref="T:System.DBNull" />. </summary> <returns> The <see cref="T:System.TypeCode" /> value for <see cref="T:System.DBNull" />, which is <see cref="F:System.TypeCode.DBNull" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DBNull.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> Converts the current <see cref="T:System.DBNull" /> object to the specified type. </summary> <returns> The boxed equivalent of the current <see cref="T:System.DBNull" /> object, if that conversion is supported; otherwise, an exception is thrown and no value is returned. </returns> <param name="type"> The type to convert the current <see cref="T:System.DBNull" /> object to. </param> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface and is used to augment the conversion. If null is specified, format information is obtained from the current culture. </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to make this conversion throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> None. The return value for this member is not used. </returns> <param name="provider"> An object that implements the <see cref="T:System.IFormatProvider" /> interface. (This parameter is not used; specify null.) </param> <exception cref="T:System.InvalidCastException"> This conversion is not supported for the <see cref="T:System.DBNull" /> type. </exception> </member> <member name="M:System.DBNull.ToString"> <summary> Returns an empty string (<see cref="F:System.String.Empty" />). </summary> <returns> An empty string (<see cref="F:System.String.Empty" />). </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.DBNull.ToString(System.IFormatProvider)"> <summary> Returns an empty string using the specified <see cref="T:System.IFormatProvider" />. </summary> <returns> An empty string (<see cref="F:System.String.Empty" />). </returns> <param name="provider"> The <see cref="T:System.IFormatProvider" /> to be used to format the return value. -or- null to obtain the format information from the current locale setting of the operating system. </param> <filterpriority>2</filterpriority> </member> <member name="F:System.DBNull.Value"> <summary> Represents the sole instance of the <see cref="T:System.DBNull" /> class. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.Decimal"> <summary> Represents a decimal number. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.#ctor(System.Double)"> <summary> Initializes a new instance of <see cref="T:System.Decimal" /> to the value of the specified double-precision floating-point number. </summary> <param name="value"> The value to represent as a <see cref="T:System.Decimal" />. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Decimal.MaxValue" /> or less than <see cref="F:System.Decimal.MinValue" />. -or- <paramref name="value" /> is <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.PositiveInfinity" />, or <see cref="F:System.Double.NegativeInfinity" />. </exception> </member> <member name="M:System.Decimal.#ctor(System.Int32)"> <summary> Initializes a new instance of <see cref="T:System.Decimal" /> to the value of the specified 32-bit signed integer. </summary> <param name="value"> The value to represent as a <see cref="T:System.Decimal" />. </param> </member> <member name="M:System.Decimal.#ctor(System.Int32,System.Int32,System.Int32,System.Boolean,System.Byte)"> <summary> Initializes a new instance of <see cref="T:System.Decimal" /> from parameters specifying the instance's constituent parts. </summary> <param name="lo"> The low 32 bits of a 96-bit integer. </param> <param name="mid"> The middle 32 bits of a 96-bit integer. </param> <param name="hi"> The high 32 bits of a 96-bit integer. </param> <param name="isNegative"> The sign of the number; 1 is negative, 0 is positive. </param> <param name="scale"> A power of 10 ranging from 0 to 28. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="scale" /> is greater than 28. </exception> </member> <member name="M:System.Decimal.#ctor(System.Int32[])"> <summary> Initializes a new instance of <see cref="T:System.Decimal" /> to a decimal value represented in binary and contained in a specified array. </summary> <param name="bits"> An array of 32-bit signed integers containing a representation of a decimal value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bits" /> is null. </exception> <exception cref="T:System.ArgumentException"> The length of the <paramref name="bits" /> is not 4. -or- The representation of the decimal value in <paramref name="bits" /> is not valid. </exception> </member> <member name="M:System.Decimal.#ctor(System.Int64)"> <summary> Initializes a new instance of <see cref="T:System.Decimal" /> to the value of the specified 64-bit signed integer. </summary> <param name="value"> The value to represent as a <see cref="T:System.Decimal" />. </param> </member> <member name="M:System.Decimal.#ctor(System.Single)"> <summary> Initializes a new instance of <see cref="T:System.Decimal" /> to the value of the specified single-precision floating-point number. </summary> <param name="value"> The value to represent as a <see cref="T:System.Decimal" />. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.Decimal.MaxValue" /> or less than <see cref="F:System.Decimal.MinValue" />. -or- <paramref name="value" /> is <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.PositiveInfinity" />, or <see cref="F:System.Single.NegativeInfinity" />. </exception> </member> <member name="M:System.Decimal.#ctor(System.UInt32)"> <summary> Initializes a new instance of <see cref="T:System.Decimal" /> to the value of the specified 32-bit unsigned integer. </summary> <param name="value"> The value to represent as a <see cref="T:System.Decimal" />. </param> </member> <member name="M:System.Decimal.#ctor(System.UInt64)"> <summary> Initializes a new instance of <see cref="T:System.Decimal" /> to the value of the specified 64-bit unsigned integer. </summary> <param name="value"> The value to represent as a <see cref="T:System.Decimal" />. </param> </member> <member name="M:System.Decimal.Add(System.Decimal,System.Decimal)"> <summary> Adds two specified <see cref="T:System.Decimal" /> values. </summary> <returns> A <see cref="T:System.Decimal" /> value that is the sum of <paramref name="d1" /> and <paramref name="d2" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <exception cref="T:System.OverflowException"> The sum of <paramref name="d1" /> and <paramref name="d2" /> is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Ceiling(System.Decimal)"> <summary> Returns the smallest integer greater than or equal to the specified decimal number. </summary> <returns> The smallest integer greater than or equal to the <paramref name="d" /> parameter. </returns> <param name="d"> A decimal number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Compare(System.Decimal,System.Decimal)"> <summary> Compares two specified <see cref="T:System.Decimal" /> values. </summary> <returns> A signed number indicating the relative values of <paramref name="d1" /> and <paramref name="d2" />. Return Value Meaning Less than zero <paramref name="d1" /> is less than <paramref name="d2" />. Zero <paramref name="d1" /> and <paramref name="d2" /> are equal. Greater than zero <paramref name="d1" /> is greater than <paramref name="d2" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.CompareTo(System.Decimal)"> <summary> Compares this instance to a specified <see cref="T:System.Decimal" /> object. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Meaning Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> object. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Decimal.CompareTo(System.Object)"> <summary> Compares this instance to a specified <see cref="T:System.Object" />. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Meaning Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.Decimal" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Decimal.Divide(System.Decimal,System.Decimal)"> <summary> Divides two specified <see cref="T:System.Decimal" /> values. </summary> <returns> The <see cref="T:System.Decimal" /> that is the result of dividing <paramref name="d1" /> by <paramref name="d2" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" /> (the dividend). </param> <param name="d2"> A <see cref="T:System.Decimal" /> (the divisor). </param> <exception cref="T:System.DivideByZeroException"> <paramref name="d2" /> is zero. </exception> <exception cref="T:System.OverflowException"> The return value (that is, the quotient) is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Equals(System.Decimal)"> <summary> Returns a value indicating whether this instance and a specified <see cref="T:System.Decimal" /> object represent the same value. </summary> <returns>true if <paramref name="value" /> is equal to this instance; otherwise, false. </returns> <param name="value"> A <see cref="T:System.Decimal" /> object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Decimal.Equals(System.Decimal,System.Decimal)"> <summary> Returns a value indicating whether two specified instances of <see cref="T:System.Decimal" /> represent the same value. </summary> <returns>true if <paramref name="d1" /> and <paramref name="d2" /> are equal; otherwise, false. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Equals(System.Object)"> <summary> Returns a value indicating whether this instance and a specified <see cref="T:System.Object" /> represent the same type and value. </summary> <returns>true if <paramref name="value" /> is a <see cref="T:System.Decimal" /> and equal to this instance; otherwise, false. </returns> <param name="value"> An <see cref="T:System.Object" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Decimal.Floor(System.Decimal)"> <summary> Rounds a specified <see cref="T:System.Decimal" /> number to the closest integer toward negative infinity. </summary> <returns> If <paramref name="d" /> has a fractional part, the next whole <see cref="T:System.Decimal" /> number toward negative infinity that is less than <paramref name="d" />. -or- If <paramref name="d" /> doesn't have a fractional part, <paramref name="d" /> is returned unchanged. </returns> <param name="d"> A <see cref="T:System.Decimal" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.FromOACurrency(System.Int64)"> <summary> Converts the specified 64-bit signed integer, which contains an OLE Automation Currency value, to the equivalent <see cref="T:System.Decimal" /> value. </summary> <returns> A <see cref="T:System.Decimal" /> that contains the equivalent of <paramref name="cy" />. </returns> <param name="cy"> An OLE Automation Currency value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.GetBits(System.Decimal)"> <summary> Converts the value of a specified instance of <see cref="T:System.Decimal" /> to its equivalent binary representation. </summary> <returns> A 32-bit signed integer array with four elements that contain the binary representation of <paramref name="d" />. </returns> <param name="d"> A <see cref="T:System.Decimal" /> value. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Decimal.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Decimal" />. </summary> <returns> The enumerated constant <see cref="F:System.TypeCode.Decimal" />. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.Decimal.MaxValue"> <summary> Represents the largest possible value of <see cref="T:System.Decimal" />. This field is constant and read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Decimal.MinusOne"> <summary> Represents the number negative one (-1). </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Decimal.MinValue"> <summary> Represents the smallest possible value of <see cref="T:System.Decimal" />. This field is constant and read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Multiply(System.Decimal,System.Decimal)"> <summary> Multiplies two specified <see cref="T:System.Decimal" /> values. </summary> <returns> A <see cref="T:System.Decimal" /> that is the result of multiplying <paramref name="d1" /> and <paramref name="d2" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" /> (the multiplicand). </param> <param name="d2"> A <see cref="T:System.Decimal" /> (the multiplier). </param> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Negate(System.Decimal)"> <summary> Returns the result of multiplying the specified <see cref="T:System.Decimal" /> value by negative one. </summary> <returns> A <see cref="T:System.Decimal" /> with the value of <paramref name="d" />, but the opposite sign. -or- Zero, if <paramref name="d" /> is zero. </returns> <param name="d"> A <see cref="T:System.Decimal" />. </param> <filterpriority>1</filterpriority> </member> <member name="F:System.Decimal.One"> <summary> Represents the number one (1). </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.op_Addition(System.Decimal,System.Decimal)"> <summary> Adds two specified <see cref="T:System.Decimal" /> values. </summary> <returns> The <see cref="T:System.Decimal" /> result of adding <paramref name="d1" /> and <paramref name="d2" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Decrement(System.Decimal)"> <summary> Decrements the <see cref="T:System.Decimal" /> operand by one. </summary> <returns> The value of <paramref name="d" /> decremented by 1. </returns> <param name="d"> The <see cref="T:System.Decimal" /> operand. </param> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Division(System.Decimal,System.Decimal)"> <summary> Divides two specified <see cref="T:System.Decimal" /> values. </summary> <returns> The <see cref="T:System.Decimal" /> result of <paramref name="d1" /> by <paramref name="d2" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" /> (the dividend). </param> <param name="d2"> A <see cref="T:System.Decimal" /> (the divisor). </param> <exception cref="T:System.DivideByZeroException"> <paramref name="d2" /> is zero. </exception> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Equality(System.Decimal,System.Decimal)"> <summary> Returns a value indicating whether two instances of <see cref="T:System.Decimal" /> are equal. </summary> <returns>true if <paramref name="d1" /> and <paramref name="d2" /> are equal; otherwise, false. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.Int32"> <summary> Converts a <see cref="T:System.Decimal" /> to a 32-bit signed integer. </summary> <returns> A 32-bit signed integer that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.UInt32"> <summary> Converts a <see cref="T:System.Decimal" /> to a 32-bit unsigned integer. </summary> <returns> A 32-bit unsigned integer that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is negative or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.Int64"> <summary> Converts a <see cref="T:System.Decimal" /> to a 64-bit signed integer. </summary> <returns> A 64-bit signed integer that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.Char"> <summary> Converts a <see cref="T:System.Decimal" /> to a Unicode character. </summary> <returns> A Unicode character that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.Int16"> <summary> Converts a <see cref="T:System.Decimal" /> to a 16-bit signed integer. </summary> <returns> A 16-bit signed integer that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.UInt16"> <summary> Converts a <see cref="T:System.Decimal" /> to a 16-bit unsigned integer. </summary> <returns> A 16-bit unsigned integer that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.UInt16.MaxValue" /> or less than <see cref="F:System.UInt16.MinValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.SByte"> <summary> Converts a <see cref="T:System.Decimal" /> to an 8-bit signed integer. </summary> <returns> An 8-bit signed integer that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.Byte"> <summary> Converts a <see cref="T:System.Decimal" /> to an 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.Double"> <summary> Converts a <see cref="T:System.Decimal" /> to a double-precision floating-point number. </summary> <returns> A double-precision floating-point number that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.UInt64"> <summary> Converts a <see cref="T:System.Decimal" /> to a 64-bit unsigned integer. </summary> <returns> A 64-bit unsigned integer that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is negative or greater than <see cref="F:System.UInt64.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Decimal)~System.Single"> <summary> Converts a <see cref="T:System.Decimal" /> to a single-precision floating-point number. </summary> <returns> A single-precision floating-point number that represents the converted <see cref="T:System.Decimal" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> to convert. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Double)~System.Decimal"> <summary> Converts a double-precision floating-point number to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted double-precision floating point number. </returns> <param name="value"> A double-precision floating-point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. -or- <paramref name="value" /> is <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.PositiveInfinity" />, or <see cref="F:System.Double.NegativeInfinity" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Explicit(System.Single)~System.Decimal"> <summary> Converts a single-precision floating-point number to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted single-precision floating point number. </returns> <param name="value"> A single-precision floating-point number. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. -or- <paramref name="value" /> is <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.PositiveInfinity" />, or <see cref="F:System.Single.NegativeInfinity" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_GreaterThan(System.Decimal,System.Decimal)"> <summary> Returns a value indicating whether a specified <see cref="T:System.Decimal" /> is greater than another specified <see cref="T:System.Decimal" />. </summary> <returns>true if <paramref name="d1" /> is greater than <paramref name="d2" />; otherwise, false. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_GreaterThanOrEqual(System.Decimal,System.Decimal)"> <summary> Returns a value indicating whether a specified <see cref="T:System.Decimal" /> is greater than or equal to another specified <see cref="T:System.Decimal" />. </summary> <returns>true if <paramref name="d1" /> is greater than or equal to <paramref name="d2" />; otherwise, false. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Implicit(System.Byte)~System.Decimal"> <summary> Converts an 8-bit unsigned integer to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted 8-bit unsigned integer. </returns> <param name="value"> An 8-bit unsigned integer. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Implicit(System.Char)~System.Decimal"> <summary> Converts a Unicode character to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted Unicode character. </returns> <param name="value"> A Unicode character. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Implicit(System.Int16)~System.Decimal"> <summary> Converts a 16-bit signed integer to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted 16-bit signed integer. </returns> <param name="value"> A 16-bit signed integer. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Implicit(System.Int32)~System.Decimal"> <summary> Converts a 32-bit signed integer to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted 32-bit signed integer. </returns> <param name="value"> A 32-bit signed integer. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Implicit(System.Int64)~System.Decimal"> <summary> Converts a 64-bit signed integer to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted 64-bit signed integer. </returns> <param name="value"> A 64-bit signed integer. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Implicit(System.SByte)~System.Decimal"> <summary> Converts an 8-bit signed integer to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted 8-bit signed integer. </returns> <param name="value"> An 8-bit signed integer. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Implicit(System.UInt16)~System.Decimal"> <summary> Converts a 16-bit unsigned integer to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted 16-bit unsigned integer. </returns> <param name="value"> A 16-bit unsigned integer. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Implicit(System.UInt32)~System.Decimal"> <summary> Converts a 32-bit unsigned integer to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted 32-bit unsigned integer. </returns> <param name="value"> A 32-bit unsigned integer. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Implicit(System.UInt64)~System.Decimal"> <summary> Converts a 64-bit unsigned integer to a <see cref="T:System.Decimal" />. </summary> <returns> A <see cref="T:System.Decimal" /> that represents the converted 64-bit unsigned integer. </returns> <param name="value"> A 64-bit unsigned integer. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Increment(System.Decimal)"> <summary> Increments the <see cref="T:System.Decimal" /> operand by 1. </summary> <returns> The value of <paramref name="d" /> incremented by 1. </returns> <param name="d"> The <see cref="T:System.Decimal" /> operand. </param> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Inequality(System.Decimal,System.Decimal)"> <summary> Returns a value indicating whether two instances of <see cref="T:System.Decimal" /> are not equal. </summary> <returns>true if <paramref name="d1" /> and <paramref name="d2" /> are not equal; otherwise, false. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_LessThan(System.Decimal,System.Decimal)"> <summary> Returns a value indicating whether a specified <see cref="T:System.Decimal" /> is less than another specified <see cref="T:System.Decimal" />. </summary> <returns>true if <paramref name="d1" /> is less than <paramref name="d2" />; otherwise, false. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_LessThanOrEqual(System.Decimal,System.Decimal)"> <summary> Returns a value indicating whether a specified <see cref="T:System.Decimal" /> is less than or equal to another specified <see cref="T:System.Decimal" />. </summary> <returns>true if <paramref name="d1" /> is less than or equal to <paramref name="d2" />; otherwise, false. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Modulus(System.Decimal,System.Decimal)"> <summary> Returns the remainder resulting from dividing two specified <see cref="T:System.Decimal" /> values. </summary> <returns> The <see cref="T:System.Decimal" /> remainder resulting from dividing <paramref name="d1" /> by <paramref name="d2" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" /> (the dividend). </param> <param name="d2"> A <see cref="T:System.Decimal" /> (the divisor). </param> <exception cref="T:System.DivideByZeroException"> <paramref name="d2" /> is zero. </exception> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Multiply(System.Decimal,System.Decimal)"> <summary> Multiplies two specified <see cref="T:System.Decimal" /> values. </summary> <returns> The <see cref="T:System.Decimal" /> result of multiplying <paramref name="d1" /> by <paramref name="d2" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_Subtraction(System.Decimal,System.Decimal)"> <summary> Subtracts two specified <see cref="T:System.Decimal" /> values. </summary> <returns> The <see cref="T:System.Decimal" /> result of subtracting <paramref name="d2" /> from <paramref name="d1" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" />. </param> <param name="d2"> A <see cref="T:System.Decimal" />. </param> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_UnaryNegation(System.Decimal)"> <summary> Negates the value of the specified <see cref="T:System.Decimal" /> operand. </summary> <returns> The result of <paramref name="d" /> multiplied by negative one (-1). </returns> <param name="d"> The <see cref="T:System.Decimal" /> operand. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.op_UnaryPlus(System.Decimal)"> <summary> Returns the value of the <see cref="T:System.Decimal" /> operand (the sign of the operand is unchanged). </summary> <returns> The value of the operand, <paramref name="d" />. </returns> <param name="d"> The <see cref="T:System.Decimal" /> operand. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Decimal.Parse(System.String)"> <summary> Converts the string representation of a number to its <see cref="T:System.Decimal" /> equivalent. </summary> <returns> The <see cref="T:System.Decimal" /> number equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> The string representation of the number to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its <see cref="T:System.Decimal" /> equivalent. </summary> <returns> The <see cref="T:System.Decimal" /> number equivalent to the number contained in <paramref name="s" /> as specified by <paramref name="style" />. </returns> <param name="s"> The string representation of the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Number" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> value. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" /></exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number to its <see cref="T:System.Decimal" /> equivalent using the specified style and culture-specific format. </summary> <returns> The <see cref="T:System.Decimal" /> number equivalent to the number contained in <paramref name="s" /> as specified by <paramref name="style" /> and <paramref name="provider" />. </returns> <param name="s"> The string representation of the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Number" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific information about the format of <paramref name="s" />. </param> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number to its <see cref="T:System.Decimal" /> equivalent using the specified culture-specific format information. </summary> <returns> The <see cref="T:System.Decimal" /> number equivalent to the number contained in <paramref name="s" /> as specified by <paramref name="provider" />. </returns> <param name="s"> The string representation of the number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific parsing information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not of the correct format </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" /></exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Remainder(System.Decimal,System.Decimal)"> <summary> Computes the remainder after dividing two <see cref="T:System.Decimal" /> values. </summary> <returns> The <see cref="T:System.Decimal" /> that is the remainder after dividing <paramref name="d1" /> by <paramref name="d2" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" /> (the dividend). </param> <param name="d2"> A <see cref="T:System.Decimal" /> (the divisor). </param> <exception cref="T:System.DivideByZeroException"> <paramref name="d2" /> is zero. </exception> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Round(System.Decimal)"> <summary> Rounds a decimal value to the nearest integer. </summary> <returns> The integer that is nearest to the <paramref name="d" /> parameter. If <paramref name="d" /> is halfway between two integers, one of which is even and the other odd, the even number is returned. </returns> <param name="d"> A decimal number to round. </param> <exception cref="T:System.OverflowException"> The result is outside the range of a <see cref="T:System.Decimal" /> object. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Round(System.Decimal,System.Int32)"> <summary> Rounds a <see cref="T:System.Decimal" /> value to a specified number of decimal places. </summary> <returns> The <see cref="T:System.Decimal" /> number equivalent to <paramref name="d" /> rounded to <paramref name="decimals" /> number of decimal places. </returns> <param name="d"> A <see cref="T:System.Decimal" /> value to round. </param> <param name="decimals"> A value from 0 to 28 that specifies the number of decimal places to round to. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="decimals" /> is not a value from 0 to 28. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Round(System.Decimal,System.Int32,System.MidpointRounding)"> <summary> Rounds a decimal value to a specified precision. A parameter specifies how to round the value if it is midway between two other numbers. </summary> <returns> The number that is nearest to the <paramref name="d" /> parameter with a precision equal to the <paramref name="decimals" /> parameter. If <paramref name="d" /> is halfway between two numbers, one of which is even and the other odd, the <paramref name="mode" /> parameter determines which of the two numbers is returned. If the precision of <paramref name="d" /> is less than <paramref name="decimals" />, <paramref name="d" /> is returned unchanged. </returns> <param name="d"> A decimal number to round. </param> <param name="decimals"> The number of significant decimal places (precision) in the return value. </param> <param name="mode"> A value that specifies how to round <paramref name="d" /> if it is midway between two other numbers. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="decimals" /> is less than 0 or greater than 28. </exception> <exception cref="T:System.ArgumentException"> <paramref name="mode" /> is not a <see cref="T:System.MidpointRounding" /> value. </exception> <exception cref="T:System.OverflowException"> The result is outside the range of a <see cref="T:System.Decimal" /> object. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Round(System.Decimal,System.MidpointRounding)"> <summary> Rounds a decimal value to the nearest integer. A parameter specifies how to round the value if it is midway between two other numbers. </summary> <returns> The integer that is nearest to the <paramref name="d" /> parameter. If <paramref name="d" /> is halfway between two numbers, one of which is even and the other odd, the <paramref name="mode" /> parameter determines which of the two numbers is returned. </returns> <param name="d"> A decimal number to round. </param> <param name="mode"> A value that specifies how to round <paramref name="d" /> if it is midway between two other numbers. </param> <exception cref="T:System.ArgumentException"> <paramref name="mode" /> is not a <see cref="T:System.MidpointRounding" /> value. </exception> <exception cref="T:System.OverflowException"> The result is outside the range of a <see cref="T:System.Decimal" /> object. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Subtract(System.Decimal,System.Decimal)"> <summary> Subtracts one specified <see cref="T:System.Decimal" /> value from another. </summary> <returns> The <see cref="T:System.Decimal" /> result of subtracting <paramref name="d2" /> from <paramref name="d1" />. </returns> <param name="d1"> A <see cref="T:System.Decimal" /> (the minuend). </param> <param name="d2"> A <see cref="T:System.Decimal" /> (the subtrahend). </param> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Decimal.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Byte" />. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.OverflowException"> The resulting integer value is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception> </member> <member name="M:System.Decimal.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Decimal.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Decimal.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Decimal.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Double" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Decimal.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Int16" />. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.OverflowException"> The resulting integer value is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception> </member> <member name="M:System.Decimal.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Int32" />. </returns> <param name="provider"> The parameter is ignored. </param> <exception cref="T:System.OverflowException"> The resulting integer value is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception> </member> <member name="M:System.Decimal.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Int64" />. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.OverflowException"> The resulting integer value is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception> </member> <member name="M:System.Decimal.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.SByte" />. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.OverflowException"> The resulting integer value is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception> </member> <member name="M:System.Decimal.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Single" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Decimal.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <paramref name="type" />. </returns> <param name="type"> The type to which to convert the value of this <see cref="T:System.Decimal" /> instance. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that supplies culture-specific information about the format of the returned value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The requested type conversion is not supported. </exception> </member> <member name="M:System.Decimal.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt16" />. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.OverflowException"> The resulting integer value is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />. </exception> </member> <member name="M:System.Decimal.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt32" />. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.OverflowException"> The resulting integer value is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> </member> <member name="M:System.Decimal.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt64" />. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.OverflowException"> The resulting integer value is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. </exception> </member> <member name="M:System.Decimal.ToByte(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> to the equivalent 8-bit unsigned integer. </summary> <returns> An 8-bit unsigned integer equivalent to <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.Decimal" /> value. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToDouble(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> to the equivalent double-precision floating-point number. </summary> <returns> A double-precision floating-point number equivalent to <paramref name="d" />. </returns> <param name="d"> The <see cref="T:System.Decimal" /> value to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToInt16(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> to the equivalent 16-bit signed integer. </summary> <returns> A 16-bit signed integer equivalent to <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> value. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToInt32(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> to the equivalent 32-bit signed integer. </summary> <returns> A 32-bit signed integer equivalent to the value of <paramref name="d" />. </returns> <param name="d"> The <see cref="T:System.Decimal" /> value to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="d" /> is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToInt64(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> to the equivalent 64-bit signed integer. </summary> <returns> A 64-bit signed integer equivalent to the value of <paramref name="d" />. </returns> <param name="d"> The <see cref="T:System.Decimal" /> value to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="d" /> is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToOACurrency(System.Decimal)"> <summary> Converts the specified <see cref="T:System.Decimal" /> value to the equivalent OLE Automation Currency value, which is contained in a 64-bit signed integer. </summary> <returns> A 64-bit signed integer that contains the OLE Automation equivalent of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> value. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Decimal.ToSByte(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> to the equivalent 8-bit signed integer. </summary> <returns> An 8-bit signed integer equivalent to <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> value. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToSingle(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> to the equivalent single-precision floating-point number. </summary> <returns> A single-precision floating-point number equivalent to the value of <paramref name="d" />. </returns> <param name="d"> A <see cref="T:System.Decimal" /> value to convert. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> A string that represents the value of this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToString(System.String)"> <summary> Converts the numeric value of this instance to its equivalent string representation, using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A numeric format string. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToString(System.String,System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A numeric format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToUInt16(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> to the equivalent 16-bit unsigned integer. </summary> <returns> A 16-bit unsigned integer equivalent to the value of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.Decimal" /> value to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is greater than <see cref="F:System.UInt16.MaxValue" /> or less than <see cref="F:System.UInt16.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToUInt32(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> to the equivalent 32-bit unsigned integer. </summary> <returns> A 32-bit unsigned integer equivalent to the value of <paramref name="d" />. </returns> <param name="d"> A <see cref="T:System.Decimal" /> value to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="d" /> is negative or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.ToUInt64(System.Decimal)"> <summary> Converts the value of the specified <see cref="T:System.Decimal" /> to the equivalent 64-bit unsigned integer. </summary> <returns> A 64-bit unsigned integer equivalent to the value of <paramref name="d" />. </returns> <param name="d"> A <see cref="T:System.Decimal" /> value to convert. </param> <exception cref="T:System.OverflowException"> <paramref name="d" /> is negative or greater than <see cref="F:System.UInt64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.Truncate(System.Decimal)"> <summary> Returns the integral digits of the specified <see cref="T:System.Decimal" />; any fractional digits are discarded. </summary> <returns> The <see cref="T:System.Decimal" /> result of <paramref name="d" /> rounded toward zero, to the nearest whole number. </returns> <param name="d"> A <see cref="T:System.Decimal" /> to truncate. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.TryParse(System.String,System.Decimal@)"> <summary> Converts the string representation of a number to its <see cref="T:System.Decimal" /> equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> The string representation of the number to convert. </param> <param name="result"> When this method returns, contains the <see cref="T:System.Decimal" /> number that is equivalent to the numeric value contained in <paramref name="s" />, if the conversion succeeded, or is zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not a number in a valid format, or represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Decimal.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Decimal@)"> <summary> Converts the string representation of a number to its <see cref="T:System.Decimal" /> equivalent using the specified style and culture-specific format. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> The string representation of the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Number" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific parsing information about <paramref name="s" />. </param> <param name="result"> When this method returns, contains the <see cref="T:System.Decimal" /> number that is equivalent to the numeric value contained in <paramref name="s" />, if the conversion succeeded, or is zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in a format compliant with <paramref name="style" />, or represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.Decimal.Zero"> <summary> Represents the number zero (0). </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.Delegate"> <summary> Represents a delegate, which is a data structure that refers to a static method or to a class instance and an instance method of that class. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Delegate.#ctor(System.Object,System.String)"> <summary> Initializes a delegate that invokes the specified instance method on the specified class instance. </summary> <param name="target"> The class instance on which the delegate invokes <paramref name="method" />. </param> <param name="method"> The name of the instance method that the delegate represents. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="target" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> There was an error binding to the target method. </exception> </member> <member name="M:System.Delegate.#ctor(System.Type,System.String)"> <summary> Initializes a delegate that invokes the specified static method from the specified class. </summary> <param name="target"> The <see cref="T:System.Type" /> representing the class that defines <paramref name="method" />. </param> <param name="method"> The name of the static method that the delegate represents. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="target" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="target" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="target" /> represents an open generic type. </exception> </member> <member name="M:System.Delegate.Clone"> <summary> Creates a shallow copy of the delegate. </summary> <returns> A shallow copy of the delegate. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Delegate.Combine(System.Delegate,System.Delegate)"> <summary> Concatenates the invocation lists of two delegates. </summary> <returns> A new delegate with an invocation list that concatenates the invocation lists of <paramref name="a" /> and <paramref name="b" /> in that order. Returns <paramref name="a" /> if <paramref name="b" /> is null, returns <paramref name="b" /> if <paramref name="a" /> is a null reference, and returns a null reference if both <paramref name="a" /> and <paramref name="b" /> are null references. </returns> <param name="a"> The delegate whose invocation list comes first. </param> <param name="b"> The delegate whose invocation list comes last. </param> <exception cref="T:System.ArgumentException"> Both <paramref name="a" /> and <paramref name="b" /> are not null, and <paramref name="a" /> and <paramref name="b" /> are not instances of the same delegate type. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Delegate.Combine(System.Delegate[])"> <summary> Concatenates the invocation lists of an array of delegates. </summary> <returns> A new delegate with an invocation list that concatenates the invocation lists of the delegates in the <paramref name="delegates" /> array. Returns null if <paramref name="delegates" /> is null, if <paramref name="delegates" /> contains zero elements, or if every entry in <paramref name="delegates" /> is null. </returns> <param name="delegates"> The array of delegates to combine. </param> <exception cref="T:System.ArgumentException"> Not all the non-null entries in <paramref name="delegates" /> are instances of the same delegate type. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Delegate.CombineImpl(System.Delegate)"> <summary> Concatenates the invocation lists of the specified multicast (combinable) delegate and the current multicast (combinable) delegate. </summary> <returns> A new multicast (combinable) delegate with an invocation list that concatenates the invocation list of the current multicast (combinable) delegate and the invocation list of <paramref name="d" />, or the current multicast (combinable) delegate if <paramref name="d" /> is null. </returns> <param name="d"> The multicast (combinable) delegate whose invocation list to append to the end of the invocation list of the current multicast (combinable) delegate. </param> <exception cref="T:System.MulticastNotSupportedException"> Always thrown. </exception> </member> <member name="M:System.Delegate.CreateDelegate(System.Type,System.Object,System.Reflection.MethodInfo)"> <summary> Creates a delegate of the specified type that represents the specified static or instance method, with the specified first argument. </summary> <returns> A delegate of the specified type that represents the specified static or instance method. </returns> <param name="type"> The <see cref="T:System.Type" /> of delegate to create. </param> <param name="firstArgument"> The object to which the delegate is bound, or null to treat <paramref name="method" /> as static (Shared in Visual Basic). </param> <param name="method"> The <see cref="T:System.Reflection.MethodInfo" /> describing the static or instance method the delegate is to represent. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not inherit <see cref="T:System.MulticastDelegate" />. -or- <paramref name="type" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="method" /> cannot be bound. -or- <paramref name="method" /> is not a RuntimeMethodInfo. See Runtime Types in Reflection. </exception> <exception cref="T:System.MissingMethodException"> The Invoke method of <paramref name="type" /> is not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have the permissions necessary to access <paramref name="method" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Delegate.CreateDelegate(System.Type,System.Object,System.Reflection.MethodInfo,System.Boolean)"> <summary> Creates a delegate of the specified type that represents the specified static or instance method, with the specified first argument and the specified behavior on failure to bind. </summary> <returns> A delegate of the specified type that represents the specified static or instance method, or null if <paramref name="throwOnBindFailure" /> is false and the delegate cannot be bound to <paramref name="method" />. </returns> <param name="type"> A <see cref="T:System.Type" /> representing the type of delegate to create. </param> <param name="firstArgument"> An <see cref="T:System.Object" /> that is the first argument of the method the delegate represents. For instance methods, it must be compatible with the instance type. </param> <param name="method"> The <see cref="T:System.Reflection.MethodInfo" /> describing the static or instance method the delegate is to represent. </param> <param name="throwOnBindFailure">true to throw an exception if <paramref name="method" /> cannot be bound; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not inherit <see cref="T:System.MulticastDelegate" />. -or- <paramref name="type" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="method" /> cannot be bound, and <paramref name="throwOnBindFailure" /> is true. -or- <paramref name="method" /> is not a RuntimeMethodInfo. See Runtime Types in Reflection. </exception> <exception cref="T:System.MissingMethodException"> The Invoke method of <paramref name="type" /> is not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have the permissions necessary to access <paramref name="method" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Delegate.CreateDelegate(System.Type,System.Object,System.String)"> <summary> Creates a delegate of the specified type that represents the specified instance method to invoke on the specified class instance. </summary> <returns> A delegate of the specified type that represents the specified instance method to invoke on the specified class instance. </returns> <param name="type"> The <see cref="T:System.Type" /> of delegate to create. </param> <param name="target"> The class instance on which <paramref name="method" /> is invoked. </param> <param name="method"> The name of the instance method that the delegate is to represent. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. -or- <paramref name="target" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not inherit <see cref="T:System.MulticastDelegate" />. -or- <paramref name="type" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="method" /> is not an instance method. -or- <paramref name="method" /> cannot be bound, for example because it cannot be found. </exception> <exception cref="T:System.MissingMethodException"> The Invoke method of <paramref name="type" /> is not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have the permissions necessary to access <paramref name="method" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Delegate.CreateDelegate(System.Type,System.Object,System.String,System.Boolean)"> <summary> Creates a delegate of the specified type that represents the specified instance method to invoke on the specified class instance with the specified case-sensitivity. </summary> <returns> A delegate of the specified type that represents the specified instance method to invoke on the specified class instance. </returns> <param name="type"> The <see cref="T:System.Type" /> of delegate to create. </param> <param name="target"> The class instance on which <paramref name="method" /> is invoked. </param> <param name="method"> The name of the instance method that the delegate is to represent. </param> <param name="ignoreCase"> A Boolean indicating whether to ignore the case when comparing the name of the method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. -or- <paramref name="target" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not inherit <see cref="T:System.MulticastDelegate" />. -or- <paramref name="type" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="method" /> is not an instance method. -or- <paramref name="method" /> cannot be bound, for example because it cannot be found. </exception> <exception cref="T:System.MissingMethodException"> The Invoke method of <paramref name="type" /> is not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have the permissions necessary to access <paramref name="method" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Delegate.CreateDelegate(System.Type,System.Object,System.String,System.Boolean,System.Boolean)"> <summary> Creates a delegate of the specified type that represents the specified instance method to invoke on the specified class instance, with the specified case-sensitivity and the specified behavior on failure to bind. </summary> <returns> A delegate of the specified type that represents the specified instance method to invoke on the specified class instance. </returns> <param name="type"> The <see cref="T:System.Type" /> of delegate to create. </param> <param name="target"> The class instance on which <paramref name="method" /> is invoked. </param> <param name="method"> The name of the instance method that the delegate is to represent. </param> <param name="ignoreCase"> A Boolean indicating whether to ignore the case when comparing the name of the method. </param> <param name="throwOnBindFailure">true to throw an exception if <paramref name="method" /> cannot be bound; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. -or- <paramref name="target" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not inherit <see cref="T:System.MulticastDelegate" />. -or- <paramref name="type" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="method" /> is not an instance method. -or- <paramref name="method" /> cannot be bound, for example because it cannot be found, and <paramref name="throwOnBindFailure" /> is true. </exception> <exception cref="T:System.MissingMethodException"> The Invoke method of <paramref name="type" /> is not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have the permissions necessary to access <paramref name="method" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Delegate.CreateDelegate(System.Type,System.Reflection.MethodInfo)"> <summary> Creates a delegate of the specified type to represent the specified static method. </summary> <returns> A delegate of the specified type to represent the specified static method. </returns> <param name="type"> The <see cref="T:System.Type" /> of delegate to create. </param> <param name="method"> The <see cref="T:System.Reflection.MethodInfo" /> describing the static or instance method the delegate is to represent. Only static methods are supported in the .NET Framework version 1.0 and 1.1. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not inherit <see cref="T:System.MulticastDelegate" />. -or- <paramref name="type" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="method" /> is not a static method, and the .NET Framework version is 1.0 or 1.1. -or- <paramref name="method" /> cannot be bound. -or- <paramref name="method" /> is not a RuntimeMethodInfo. See Runtime Types in Reflection. </exception> <exception cref="T:System.MissingMethodException"> The Invoke method of <paramref name="type" /> is not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have the permissions necessary to access <paramref name="method" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Delegate.CreateDelegate(System.Type,System.Reflection.MethodInfo,System.Boolean)"> <summary> Creates a delegate of the specified type to represent the specified static method, with the specified behavior on failure to bind. </summary> <returns> A delegate of the specified type to represent the specified static method. </returns> <param name="type"> The <see cref="T:System.Type" /> of delegate to create. </param> <param name="method"> The <see cref="T:System.Reflection.MethodInfo" /> describing the static or instance method the delegate is to represent. </param> <param name="throwOnBindFailure">true to throw an exception if <paramref name="method" /> cannot be bound; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not inherit <see cref="T:System.MulticastDelegate" />. -or- <paramref name="type" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="method" /> cannot be bound, and <paramref name="throwOnBindFailure" /> is true. -or- <paramref name="method" /> is not a RuntimeMethodInfo. See Runtime Types in Reflection. </exception> <exception cref="T:System.MissingMethodException"> The Invoke method of <paramref name="type" /> is not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have the permissions necessary to access <paramref name="method" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String)"> <summary> Creates a delegate of the specified type that represents the specified static method of the specified class. </summary> <returns> A delegate of the specified type that represents the specified static method of the specified class. </returns> <param name="type"> The <see cref="T:System.Type" /> of delegate to create. </param> <param name="target"> The <see cref="T:System.Type" /> representing the class that implements <paramref name="method" />. </param> <param name="method"> The name of the static method that the delegate is to represent. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. -or- <paramref name="target" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not inherit <see cref="T:System.MulticastDelegate" />. -or- <paramref name="type" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="target" /> is not a RuntimeType. -or- <paramref name="target" /> is an open generic type. That is, its <see cref="P:System.Type.ContainsGenericParameters" /> property is true. -or- <paramref name="method" /> is not a static method (Shared method in Visual Basic). -or- <paramref name="method" /> cannot be bound, for example because it cannot be found, and <paramref name="throwOnBindFailure" /> is true. </exception> <exception cref="T:System.MissingMethodException"> The Invoke method of <paramref name="type" /> is not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have the permissions necessary to access <paramref name="method" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean)"> <summary> Creates a delegate of the specified type that represents the specified static method of the specified class, with the specified case-sensitivity. </summary> <returns> A delegate of the specified type that represents the specified static method of the specified class. </returns> <param name="type"> The <see cref="T:System.Type" /> of delegate to create. </param> <param name="target"> The <see cref="T:System.Type" /> representing the class that implements <paramref name="method" />. </param> <param name="method"> The name of the static method that the delegate is to represent. </param> <param name="ignoreCase"> A Boolean indicating whether to ignore the case when comparing the name of the method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. -or- <paramref name="target" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not inherit <see cref="T:System.MulticastDelegate" />. -or- <paramref name="type" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="target" /> is not a RuntimeType. -or- <paramref name="target" /> is an open generic type. That is, its <see cref="P:System.Type.ContainsGenericParameters" /> property is true. -or- <paramref name="method" /> is not a static method (Shared method in Visual Basic). -or- <paramref name="method" /> cannot be bound, for example because it cannot be found. </exception> <exception cref="T:System.MissingMethodException"> The Invoke method of <paramref name="type" /> is not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have the permissions necessary to access <paramref name="method" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean,System.Boolean)"> <summary> Creates a delegate of the specified type that represents the specified static method of the specified class, with the specified case-sensitivity and the specified behavior on failure to bind. </summary> <returns> A delegate of the specified type that represents the specified static method of the specified class. </returns> <param name="type"> The <see cref="T:System.Type" /> of delegate to create. </param> <param name="target"> The <see cref="T:System.Type" /> representing the class that implements <paramref name="method" />. </param> <param name="method"> The name of the static method that the delegate is to represent. </param> <param name="ignoreCase"> A Boolean indicating whether to ignore the case when comparing the name of the method. </param> <param name="throwOnBindFailure">true to throw an exception if <paramref name="method" /> cannot be bound; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. -or- <paramref name="target" /> is null. -or- <paramref name="method" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not inherit <see cref="T:System.MulticastDelegate" />. -or- <paramref name="type" /> is not a RuntimeType. See Runtime Types in Reflection. -or- <paramref name="target" /> is not a RuntimeType. -or- <paramref name="target" /> is an open generic type. That is, its <see cref="P:System.Type.ContainsGenericParameters" /> property is true. -or- <paramref name="method" /> is not a static method (Shared method in Visual Basic). -or- <paramref name="method" /> cannot be bound, for example because it cannot be found, and <paramref name="throwOnBindFailure" /> is true. </exception> <exception cref="T:System.MissingMethodException"> The Invoke method of <paramref name="type" /> is not found. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have the permissions necessary to access <paramref name="method" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Delegate.DynamicInvoke(System.Object[])"> <summary> Dynamically invokes (late-bound) the method represented by the current delegate. </summary> <returns> The object returned by the method represented by the delegate. </returns> <param name="args"> An array of objects that are the arguments to pass to the method represented by the current delegate. -or- null, if the method represented by the current delegate does not require arguments. </param> <exception cref="T:System.MemberAccessException"> The caller does not have access to the method represented by the delegate (for example, if the method is private). -or- The number, order, or type of parameters listed in <paramref name="args" /> is invalid. </exception> <exception cref="T:System.Reflection.TargetException"> The method represented by the delegate is an instance method and the target object is null. -or- The method represented by the delegate is invoked on an object or a class that does not support it. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> One of the encapsulated methods throws an exception. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Delegate.DynamicInvokeImpl(System.Object[])"> <summary> Dynamically invokes (late-bound) the method represented by the current delegate. </summary> <returns> The object returned by the method represented by the delegate. </returns> <param name="args"> An array of objects that are the arguments to pass to the method represented by the current delegate. -or- null, if the method represented by the current delegate does not require arguments. </param> <exception cref="T:System.MemberAccessException"> The caller does not have access to the method represented by the delegate (for example, if the method is private). -or- The number, order, or type of parameters listed in <paramref name="args" /> is invalid. </exception> <exception cref="T:System.Reflection.TargetException"> The method represented by the delegate is an instance method and the target object is null. -or- The method represented by the delegate is invoked on an object or a class that does not support it. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> One of the encapsulated methods throws an exception. </exception> </member> <member name="M:System.Delegate.Equals(System.Object)"> <summary> Determines whether the specified object and the current delegate are of the same type and share the same targets, methods, and invocation list. </summary> <returns>true if <paramref name="obj" /> and the current delegate have the same targets, methods, and invocation list; otherwise, false. </returns> <param name="obj"> The object to compare with the current delegate. </param> <exception cref="T:System.MemberAccessException"> The caller does not have access to the method represented by the delegate (for example, if the method is private). </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Delegate.GetHashCode"> <summary> Returns a hash code for the delegate. </summary> <returns> A hash code for the delegate. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Delegate.GetInvocationList"> <summary> Returns the invocation list of the delegate. </summary> <returns> An array of delegates representing the invocation list of the current delegate. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Delegate.GetMethodImpl"> <summary> Gets the static method represented by the current delegate. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> describing the static method represented by the current delegate. </returns> <exception cref="T:System.MemberAccessException"> The caller does not have access to the method represented by the delegate (for example, if the method is private). </exception> </member> <member name="M:System.Delegate.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Not supported. </summary> <param name="info"> Not supported. </param> <param name="context"> Not supported. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Delegate.Method"> <summary> Gets the method represented by the delegate. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> describing the method represented by the delegate. </returns> <exception cref="T:System.MemberAccessException"> The caller does not have access to the method represented by the delegate (for example, if the method is private). </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Delegate.op_Equality(System.Delegate,System.Delegate)"> <summary> Determines whether the specified delegates are equal. </summary> <returns>true if <paramref name="d1" /> is equal to <paramref name="d2" />; otherwise, false. </returns> <param name="d1"> The first delegate to compare. </param> <param name="d2"> The second delegate to compare. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Delegate.op_Inequality(System.Delegate,System.Delegate)"> <summary> Determines whether the specified delegates are not equal. </summary> <returns>true if <paramref name="d1" /> is not equal to <paramref name="d2" />; otherwise, false. </returns> <param name="d1"> The first delegate to compare. </param> <param name="d2"> The second delegate to compare. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Delegate.Remove(System.Delegate,System.Delegate)"> <summary> Removes the last occurrence of the invocation list of a delegate from the invocation list of another delegate. </summary> <returns> A new delegate with an invocation list formed by taking the invocation list of <paramref name="source" /> and removing the last occurrence of the invocation list of <paramref name="value" />, if the invocation list of <paramref name="value" /> is found within the invocation list of <paramref name="source" />. Returns <paramref name="source" /> if <paramref name="value" /> is null or if the invocation list of <paramref name="value" /> is not found within the invocation list of <paramref name="source" />. Returns a null reference if the invocation list of <paramref name="value" /> is equal to the invocation list of <paramref name="source" /> or if <paramref name="source" /> is a null reference. </returns> <param name="source"> The delegate from which to remove the invocation list of <paramref name="value" />. </param> <param name="value"> The delegate that supplies the invocation list to remove from the invocation list of <paramref name="source" />. </param> <exception cref="T:System.MemberAccessException"> The caller does not have access to the method represented by the delegate (for example, if the method is private). </exception> <exception cref="T:System.ArgumentException"> The delegate types do not match. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Delegate.RemoveAll(System.Delegate,System.Delegate)"> <summary> Removes all occurrences of the invocation list of a delegate from the invocation list of another delegate. </summary> <returns> A new delegate with an invocation list formed by taking the invocation list of <paramref name="source" /> and removing all occurrences of the invocation list of <paramref name="value" />, if the invocation list of <paramref name="value" /> is found within the invocation list of <paramref name="source" />. Returns <paramref name="source" /> if <paramref name="value" /> is null or if the invocation list of <paramref name="value" /> is not found within the invocation list of <paramref name="source" />. Returns a null reference if the invocation list of <paramref name="value" /> is equal to the invocation list of <paramref name="source" />, if <paramref name="source" /> contains only a series of invocation lists that are equal to the invocation list of <paramref name="value" />, or if <paramref name="source" /> is a null reference. </returns> <param name="source"> The delegate from which to remove the invocation list of <paramref name="value" />. </param> <param name="value"> The delegate that supplies the invocation list to remove from the invocation list of <paramref name="source" />. </param> <exception cref="T:System.MemberAccessException"> The caller does not have access to the method represented by the delegate (for example, if the method is private). </exception> <exception cref="T:System.ArgumentException"> The delegate types do not match. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Delegate.RemoveImpl(System.Delegate)"> <summary> Removes the invocation list of a delegate from the invocation list of another delegate. </summary> <returns> A new delegate with an invocation list formed by taking the invocation list of the current delegate and removing the invocation list of <paramref name="value" />, if the invocation list of <paramref name="value" /> is found within the current delegate's invocation list. Returns the current delegate if <paramref name="value" /> is null or if the invocation list of <paramref name="value" /> is not found within the current delegate's invocation list. Returns null if the invocation list of <paramref name="value" /> is equal to the current delegate's invocation list. </returns> <param name="d"> The delegate that supplies the invocation list to remove from the invocation list of the current delegate. </param> <exception cref="T:System.MemberAccessException"> The caller does not have access to the method represented by the delegate (for example, if the method is private). </exception> </member> <member name="P:System.Delegate.Target"> <summary> Gets the class instance on which the current delegate invokes the instance method. </summary> <returns> The object on which the current delegate invokes the instance method, if the delegate represents an instance method; null if the delegate represents a static method. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.DivideByZeroException"> <summary> The exception that is thrown when there is an attempt to divide an integral or decimal value by zero. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.DivideByZeroException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.DivideByZeroException" /> class. </summary> </member> <member name="M:System.DivideByZeroException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.DivideByZeroException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.DivideByZeroException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.DivideByZeroException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. </param> </member> <member name="M:System.DivideByZeroException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.DivideByZeroException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.DllNotFoundException"> <summary> The exception that is thrown when a DLL specified in a DLL import cannot be found. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.DllNotFoundException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with default properties. </summary> </member> <member name="M:System.DllNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.DllNotFoundException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.DllNotFoundException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Double"> <summary> Represents a double-precision floating-point number. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.CompareTo(System.Double)"> <summary> Compares this instance to a specified double-precision floating-point number and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified double-precision floating-point number. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. -or- This instance is not a number (<see cref="F:System.Double.NaN" />) and <paramref name="value" /> is a number. Zero This instance is equal to <paramref name="value" />. -or- Both this instance and <paramref name="value" /> are not a number (<see cref="F:System.Double.NaN" />), <see cref="F:System.Double.PositiveInfinity" />, or <see cref="F:System.Double.NegativeInfinity" />. Greater than zero This instance is greater than <paramref name="value" />. -or- This instance is a number and <paramref name="value" /> is not a number (<see cref="F:System.Double.NaN" />). </returns> <param name="value"> A double-precision floating-point number to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Double.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified object. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Value Description A negative integer This instance is less than <paramref name="value" />. -or- This instance is not a number (<see cref="F:System.Double.NaN" />) and <paramref name="value" /> is a number. Zero This instance is equal to <paramref name="value" />. -or- This instance and <paramref name="value" /> are both Double.NaN, <see cref="F:System.Double.PositiveInfinity" />, or <see cref="F:System.Double.NegativeInfinity" /> A positive integer This instance is greater than <paramref name="value" />. -or- This instance is a number and <paramref name="value" /> is not a number (<see cref="F:System.Double.NaN" />). -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.Double" />. </exception> <filterpriority>2</filterpriority> </member> <member name="F:System.Double.Epsilon"> <summary> Represents the smallest positive <see cref="T:System.Double" /> value greater than zero. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.Equals(System.Double)"> <summary> Returns a value indicating whether this instance and a specified <see cref="T:System.Double" /> object represent the same value. </summary> <returns>true if <paramref name="obj" /> is equal to this instance; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.Double" /> object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Double.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.Double" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Double.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Double.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Double" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.Double" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Double.IsInfinity(System.Double)"> <summary> Returns a value indicating whether the specified number evaluates to negative or positive infinity </summary> <returns>true if <paramref name="d" /> evaluates to <see cref="F:System.Double.PositiveInfinity" /> or <see cref="F:System.Double.NegativeInfinity" />; otherwise, false. </returns> <param name="d"> A double-precision floating-point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.IsNaN(System.Double)"> <summary> Returns a value indicating whether the specified number evaluates to a value that is not a number (<see cref="F:System.Double.NaN" />). </summary> <returns>true if <paramref name="d" /> evaluates to <see cref="F:System.Double.NaN" />; otherwise, false. </returns> <param name="d"> A double-precision floating-point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.IsNegativeInfinity(System.Double)"> <summary> Returns a value indicating whether the specified number evaluates to negative infinity. </summary> <returns>true if <paramref name="d" /> evaluates to <see cref="F:System.Double.NegativeInfinity" />; otherwise, false. </returns> <param name="d"> A double-precision floating-point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.IsPositiveInfinity(System.Double)"> <summary> Returns a value indicating whether the specified number evaluates to positive infinity. </summary> <returns>true if <paramref name="d" /> evaluates to <see cref="F:System.Double.PositiveInfinity" />; otherwise, false. </returns> <param name="d"> A double-precision floating-point number. </param> <filterpriority>1</filterpriority> </member> <member name="F:System.Double.MaxValue"> <summary> Represents the largest possible value of a <see cref="T:System.Double" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Double.MinValue"> <summary> Represents the smallest possible value of a <see cref="T:System.Double" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Double.NaN"> <summary> Represents a value that is not a number (NaN). This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Double.NegativeInfinity"> <summary> Represents negative infinity. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.Parse(System.String)"> <summary> Converts the string representation of a number to its double-precision floating-point number equivalent. </summary> <returns> A double-precision floating-point number equivalent to the numeric value or symbol specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its double-precision floating-point number equivalent. </summary> <returns> A double-precision floating-point number equivalent to the numeric value or symbol specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is a combination of <see cref="F:System.Globalization.NumberStyles.Float" /> and <see cref="F:System.Globalization.NumberStyles.AllowThousands" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its double-precision floating-point number equivalent. </summary> <returns> A double-precision floating-point number equivalent to the numeric value or symbol specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Float" /> combined with <see cref="F:System.Globalization.NumberStyles.AllowThousands" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not a numeric value. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> value. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified culture-specific format to its double-precision floating-point number equivalent. </summary> <returns> A double-precision floating-point number equivalent to the numeric value or symbol specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.Double.PositiveInfinity"> <summary> Represents positive infinity. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Byte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Double.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" /></summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Double.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Decimal" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.SByte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Single" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to <paramref name="type" />. </returns> <param name="type"> The type to which to convert this <see cref="T:System.Double" /> value. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that supplies culture-specific information about the format of the returned value. </param> </member> <member name="M:System.Double.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Double.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.ToString(System.String)"> <summary> Converts the numeric value of this instance to its equivalent string representation, using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A numeric format string. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.ToString(System.String,System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A numeric format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.TryParse(System.String,System.Double@)"> <summary> Converts the string representation of a number to its double-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a number to convert. </param> <param name="result"> When this method returns, contains the double-precision floating-point number equivalent to the <paramref name="s" /> parameter, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not a number in a valid format, or represents a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Double.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Double@)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its double-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Float" /> combined with <see cref="F:System.Globalization.NumberStyles.AllowThousands" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="result"> When this method returns, contains a double-precision floating-point number equivalent to the numeric value or symbol contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in a format compliant with <paramref name="style" />, represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />, or if <paramref name="style" /> is not a valid combination of <see cref="T:System.Globalization.NumberStyles" /> enumerated constants. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> includes the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.DuplicateWaitObjectException"> <summary> The exception that is thrown when an object appears more than once in an array of synchronization objects. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.DuplicateWaitObjectException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.DuplicateWaitObjectException" /> class. </summary> </member> <member name="M:System.DuplicateWaitObjectException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.DuplicateWaitObjectException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.DuplicateWaitObjectException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.DuplicateWaitObjectException" /> class with the name of the parameter that causes this exception. </summary> <param name="parameterName"> The name of the parameter that caused the exception. </param> </member> <member name="M:System.DuplicateWaitObjectException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.DuplicateWaitObjectException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.DuplicateWaitObjectException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.DuplicateWaitObjectException" /> class with a specified error message and the name of the parameter that causes this exception. </summary> <param name="parameterName"> The name of the parameter that caused the exception. </param> <param name="message"> The message that describes the error. </param> </member> <member name="T:System.EntryPointNotFoundException"> <summary> The exception that is thrown when an attempt to load a class fails due to the absence of an entry method. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.EntryPointNotFoundException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.EntryPointNotFoundException" /> class. </summary> </member> <member name="M:System.EntryPointNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.EntryPointNotFoundException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.EntryPointNotFoundException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.EntryPointNotFoundException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.EntryPointNotFoundException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.EntryPointNotFoundException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Enum"> <summary> Provides the base class for enumerations. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Enum.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Enum" /> class. </summary> </member> <member name="M:System.Enum.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="target" />. Return Value Description Less than zero The value of this instance is less than the value of <paramref name="target" />. Zero The value of this instance is equal to the value of <paramref name="target" />. Greater than zero The value of this instance is greater than the value of <paramref name="target" />. -or- <paramref name="target" /> is null. </returns> <param name="target"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="target" /> and this instance are not the same type. </exception> <exception cref="T:System.InvalidOperationException"> This instance is not type <see cref="T:System.SByte" />, <see cref="T:System.Int16" />, <see cref="T:System.Int32" />, <see cref="T:System.Int64" />, <see cref="T:System.Byte" />, <see cref="T:System.UInt16" />, <see cref="T:System.UInt32" />, or <see cref="T:System.UInt64" />. </exception> <exception cref="T:System.NullReferenceException"> This instance is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Enum.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an <see cref="T:System.Enum" /> with the same underlying type and value as this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance, or null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Enum.Format(System.Type,System.Object,System.String)"> <summary> Converts the specified value of a specified enumerated type to its equivalent string representation according to the specified format. </summary> <returns> A string representation of <paramref name="value" />. </returns> <param name="enumType"> The enumeration type of the value to convert. </param> <param name="value"> The value to convert. </param> <param name="format"> The output format to use. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="enumType" />, <paramref name="value" />, or <paramref name="format" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="enumType" /> parameter is not an <see cref="T:System.Enum" /> type. -or- The <paramref name="value" /> is from an enumeration that differs in type from <paramref name="enumType" />. -or- The type of <paramref name="value" /> is not an underlying type of <paramref name="enumType" />. </exception> <exception cref="T:System.FormatException"> The <paramref name="format" /> parameter contains an invalid value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.GetHashCode"> <summary> Returns the hash code for the value of this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Enum.GetName(System.Type,System.Object)"> <summary> Retrieves the name of the constant in the specified enumeration that has the specified value. </summary> <returns> A string containing the name of the enumerated constant in <paramref name="enumType" /> whose value is <paramref name="value" />, or null if no such constant is found. </returns> <param name="enumType"> An enumeration type. </param> <param name="value"> The value of a particular enumerated constant in terms of its underlying type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> or <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. -or- <paramref name="value" /> is neither of type <paramref name="enumType" /> nor does it have the same underlying type as <paramref name="enumType" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.GetNames(System.Type)"> <summary> Retrieves an array of the names of the constants in a specified enumeration. </summary> <returns> A string array of the names of the constants in <paramref name="enumType" />. </returns> <param name="enumType"> An enumeration type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> parameter is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.GetTypeCode"> <summary> Returns the underlying <see cref="T:System.TypeCode" /> for this instance. </summary> <returns> The <see cref="T:System.TypeCode" /> for this instance. </returns> <exception cref="T:System.InvalidOperationException"> The enumeration type is unknown. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Enum.GetUnderlyingType(System.Type)"> <summary> Returns the underlying type of the specified enumeration. </summary> <returns> The underlying <see cref="T:System.Type" /> of <paramref name="enumType" />. </returns> <param name="enumType"> An enumeration type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.GetValues(System.Type)"> <summary> Retrieves an array of the values of the constants in a specified enumeration. </summary> <returns> An <see cref="T:System.Array" /> of the values of the constants in <paramref name="enumType" />. The elements of the array are sorted by the binary values of the enumeration constants. </returns> <param name="enumType"> An enumeration type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.IsDefined(System.Type,System.Object)"> <summary> Returns an indication whether a constant with a specified value exists in a specified enumeration. </summary> <returns>true if a constant in <paramref name="enumType" /> has a value equal to <paramref name="value" />; otherwise, false. </returns> <param name="enumType"> An enumeration type. </param> <param name="value"> The value or name of a constant in <paramref name="enumType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> or <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an Enum. -or- The type of <paramref name="value" /> is not an <paramref name="enumType" />. -or- The type of <paramref name="value" /> is not an underlying type of <paramref name="enumType" />. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="value" /> is not type <see cref="T:System.SByte" />, <see cref="T:System.Int16" />, <see cref="T:System.Int32" />, <see cref="T:System.Int64" />, <see cref="T:System.Byte" />, <see cref="T:System.UInt16" />, <see cref="T:System.UInt32" />, or <see cref="T:System.UInt64" />, or <see cref="T:System.String" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.Parse(System.Type,System.String)"> <summary> Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent enumerated object. </summary> <returns> An object of type <paramref name="enumType" /> whose value is represented by <paramref name="value" />. </returns> <param name="enumType"> The <see cref="T:System.Type" /> of the enumeration. </param> <param name="value"> A string containing the name or value to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> or <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. -or- <paramref name="value" /> is either an empty string or only contains white space. -or- <paramref name="value" /> is a name, but not one of the named constants defined for the enumeration. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.Parse(System.Type,System.String,System.Boolean)"> <summary> Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent enumerated object. A parameter specifies whether the operation is case-sensitive. </summary> <returns> An object of type <paramref name="enumType" /> whose value is represented by <paramref name="value" />. </returns> <param name="enumType"> The <see cref="T:System.Type" /> of the enumeration. </param> <param name="value"> A string containing the name or value to convert. </param> <param name="ignoreCase"> If true, ignore case; otherwise, regard case. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> or <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. -or- <paramref name="value" /> is either an empty string ("") or only contains white space. -or- <paramref name="value" /> is a name, but not one of the named constants defined for the enumeration. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> Converts the current value to a Boolean value based on the underlying type. </summary> <returns> This member always throws an exception. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Enum.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> Converts the current value to an 8-bit unsigned integer based on the underlying type. </summary> <returns> The converted value. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> </member> <member name="M:System.Enum.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> Converts the current value to a Unicode character based on the underlying type. </summary> <returns> This member always throws an exception. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Enum.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> Converts the current value to a <see cref="T:System.DateTime" /> based on the underlying type. </summary> <returns> This member always throws an exception. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Enum.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> Converts the current value to a <see cref="T:System.Decimal" /> based on the underlying type. </summary> <returns> This member always throws an exception. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Enum.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> Converts the current value to a double-precision floating point number based on the underlying type. </summary> <returns> This member always throws an exception. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Enum.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> Converts the current value to a 16-bit signed integer based on the underlying type. </summary> <returns> The converted value. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> </member> <member name="M:System.Enum.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> Converts the current value to a 32-bit signed integer based on the underlying type. </summary> <returns> The converted value. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> </member> <member name="M:System.Enum.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> Converts the current value to a 64-bit signed integer based on the underlying type. </summary> <returns> The converted value. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> </member> <member name="M:System.Enum.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> Converts the current value to an 8-bit signed integer based on the underlying type. </summary> <returns> The converted value. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> </member> <member name="M:System.Enum.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> Converts the current value to a single-precision floating point number based on the underlying type. </summary> <returns> This member always throws an exception. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Enum.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> Converts the current value to a specified type based on the underlying type. </summary> <returns> The converted value. </returns> <param name="type"> The type to convert to. </param> <param name="provider"> An object that supplies culture-specific formatting information. </param> </member> <member name="M:System.Enum.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> Converts the current value to a 16-bit unsigned integer based on the underlying type. </summary> <returns> The converted value. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> </member> <member name="M:System.Enum.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> Converts the current value to a 32-bit unsigned integer based on the underlying type. </summary> <returns> The converted value. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> </member> <member name="M:System.Enum.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> Converts the current value to a 64-bit unsigned integer based on the underlying type. </summary> <returns> The converted value. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> </member> <member name="M:System.Enum.ToObject(System.Type,System.Byte)"> <summary> Returns an instance of the specified enumeration type set to the specified 8-bit unsigned integer value. </summary> <returns> An instance of the enumeration set to <paramref name="value" />. </returns> <param name="enumType"> The enumeration for which to create a value. </param> <param name="value"> The value to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.ToObject(System.Type,System.Int16)"> <summary> Returns an instance of the specified enumeration type set to the specified 16-bit signed integer value. </summary> <returns> An instance of the enumeration set to <paramref name="value" />. </returns> <param name="enumType"> The enumeration for which to create a value. </param> <param name="value"> The value to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.ToObject(System.Type,System.Int32)"> <summary> Returns an instance of the specified enumeration type set to the specified 32-bit signed integer value. </summary> <returns> An instance of the enumeration set to <paramref name="value" />. </returns> <param name="enumType"> The enumeration for which to create a value. </param> <param name="value"> The value to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.ToObject(System.Type,System.Int64)"> <summary> Returns an instance of the specified enumeration type set to the specified 64-bit signed integer value. </summary> <returns> An instance of the enumeration set to <paramref name="value" />. </returns> <param name="enumType"> The enumeration for which to create a value. </param> <param name="value"> The value to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.ToObject(System.Type,System.Object)"> <summary> Returns an instance of the specified enumeration set to the specified value. </summary> <returns> An enumeration object whose value is <paramref name="value" />. </returns> <param name="enumType"> An enumeration. </param> <param name="value"> The value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. -or- <paramref name="value" /> is not type <see cref="T:System.SByte" />, <see cref="T:System.Int16" />, <see cref="T:System.Int32" />, <see cref="T:System.Int64" />, <see cref="T:System.Byte" />, <see cref="T:System.UInt16" />, <see cref="T:System.UInt32" />, or <see cref="T:System.UInt64" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.ToObject(System.Type,System.SByte)"> <summary> Returns an instance of the specified enumeration type set to the specified 8-bit signed integer value. </summary> <returns> An instance of the enumeration set to <paramref name="value" />. </returns> <param name="enumType"> The enumeration for which to create a value. </param> <param name="value"> The value to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.ToObject(System.Type,System.UInt16)"> <summary> Returns an instance of the specified enumeration type set to the specified 16-bit unsigned integer value. </summary> <returns> An instance of the enumeration set to <paramref name="value" />. </returns> <param name="enumType"> The enumeration for which to create a value. </param> <param name="value"> The value to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.ToObject(System.Type,System.UInt32)"> <summary> Returns an instance of the specified enumeration type set to the specified 32-bit unsigned integer value. </summary> <returns> An instance of the enumeration set to <paramref name="value" />. </returns> <param name="enumType"> The enumeration for which to create a value. </param> <param name="value"> The value to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.ToObject(System.Type,System.UInt64)"> <summary> Returns an instance of the specified enumeration type set to the specified 64-bit unsigned integer value. </summary> <returns> An instance of the enumeration set to <paramref name="value" />. </returns> <param name="enumType"> The enumeration for which to create a value. </param> <param name="value"> The value to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="enumType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="enumType" /> is not an <see cref="T:System.Enum" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Enum.ToString"> <summary> Converts the value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Enum.ToString(System.IFormatProvider)"> <summary> This method overload is obsolete; use <see cref="M:System.Enum.ToString" />. </summary> <param name="provider"> (obsolete) </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Enum.ToString(System.String)"> <summary> Converts the value of this instance to its equivalent string representation using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A format string. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> contains an invalid specification. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Enum.ToString(System.String,System.IFormatProvider)"> <summary> This method overload is obsolete; use <see cref="M:System.Enum.ToString(System.String)" />. </summary> <param name="format"> A format specification. </param> <param name="provider"> (obsolete) </param> <exception cref="T:System.FormatException"> <paramref name="format" /> does not contain a valid format specification. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Environment"> <summary> Provides information about, and means to manipulate, the current environment and platform. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.Environment.CommandLine"> <summary> Gets the command line for this process. </summary> <returns> A string containing command-line arguments. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="Path" /> </PermissionSet> </member> <member name="P:System.Environment.CurrentDirectory"> <summary> Gets or sets the fully qualified path of the current working directory. </summary> <returns> A string containing a directory path. </returns> <exception cref="T:System.ArgumentException"> Attempted to set to an empty string (""). </exception> <exception cref="T:System.ArgumentNullException"> Attempted to set to null. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> Attempted to set a local path that cannot be found. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the appropriate permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Environment.Exit(System.Int32)"> <summary> Terminates this process and gives the underlying operating system the specified exit code. </summary> <param name="exitCode"> Exit code to be given to the operating system. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have sufficient security permission to perform this function. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Environment.ExitCode"> <summary> Gets or sets the exit code of the process. </summary> <returns> A 32-bit signed integer containing the exit code. The default value is zero. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Environment.ExpandEnvironmentVariables(System.String)"> <summary> Replaces the name of each environment variable embedded in the specified string with the string equivalent of the value of the variable, then returns the resulting string. </summary> <returns> A string with each environment variable replaced by its value. </returns> <param name="name"> A string containing the names of zero or more environment variables. Each environment variable is quoted with the percent sign character (%). </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Environment.FailFast(System.String)"> <summary> Terminates a process but does not execute any active try-finally blocks or finalizers. </summary> <param name="message"> A message that explains why the process was terminated, or null if no explanation is provided. </param> </member> <member name="M:System.Environment.GetCommandLineArgs"> <summary> Returns a string array containing the command-line arguments for the current process. </summary> <returns> An array of string where each element contains a command-line argument. The first element is the executable file name, and the following zero or more elements contain the remaining command-line arguments. </returns> <exception cref="T:System.NotSupportedException"> The system does not support command-line arguments. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="Path" /> </PermissionSet> </member> <member name="M:System.Environment.GetEnvironmentVariable(System.String)"> <summary> Retrieves the value of an environment variable from the current process. </summary> <returns> The value of the environment variable specified by <paramref name="variable" />, or null if the environment variable is not found. </returns> <param name="variable"> The name of the environment variable. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="variable" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission to perform this operation. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Environment.GetEnvironmentVariable(System.String,System.EnvironmentVariableTarget)"> <summary> Retrieves the value of an environment variable from the current process or from the Windows operating system registry key for the current user or local machine. </summary> <returns> The value of the environment variable specified by the <paramref name="variable" /> and <paramref name="target" /> parameters, or null if the environment variable is not found. </returns> <param name="variable"> The name of an environment variable. </param> <param name="target"> One of the <see cref="T:System.EnvironmentVariableTarget" /> values. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="variable" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="target" /> is <see cref="F:System.EnvironmentVariableTarget.User" /> or <see cref="F:System.EnvironmentVariableTarget.Machine" /> and the current operating system is Windows 95, Windows 98, or Windows Me. </exception> <exception cref="T:System.ArgumentException"> <paramref name="target" /> is not a valid <see cref="T:System.EnvironmentVariableTarget" /> value. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission to perform this operation. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Environment.GetEnvironmentVariables"> <summary> Retrieves all environment variable names and their values from the current process. </summary> <returns> An <see cref="T:System.Collections.IDictionary" /> that contains all environment variable names and their values; otherwise, an empty dictionary if no environment variables are found. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission to perform this operation. </exception> <exception cref="T:System.OutOfMemoryException"> The buffer is out of memory. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Environment.GetEnvironmentVariables(System.EnvironmentVariableTarget)"> <summary> Retrieves all environment variable names and their values from the current process, or from the Windows operating system registry key for the current user or local machine. </summary> <returns> An <see cref="T:System.Collections.IDictionary" /> object that contains all environment variable names and their values from the source specified by the <paramref name="target" /> parameter; otherwise, an empty dictionary if no environment variables are found. </returns> <param name="target"> One of the <see cref="T:System.EnvironmentVariableTarget" /> values. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission to perform this operation for the specified value of <paramref name="target" />. </exception> <exception cref="T:System.NotSupportedException"> This method cannot be used on Windows 95 or Windows 98 platforms. </exception> <exception cref="T:System.ArgumentException"> <paramref name="target" /> contains an illegal value. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Environment.GetFolderPath(System.Environment.SpecialFolder)"> <summary> Gets the path to the system special folder identified by the specified enumeration. </summary> <returns> The path to the specified system special folder, if that folder physically exists on your computer; otherwise, the empty string (""). A folder will not physically exist if the operating system did not create it, the existing folder was deleted, or the folder is a virtual directory, such as My Computer, which does not correspond to a physical path. </returns> <param name="folder"> An enumerated constant that identifies a system special folder. </param> <exception cref="T:System.ArgumentException"> <paramref name="folder" /> is not a member of <see cref="T:System.Environment.SpecialFolder" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Environment.GetLogicalDrives"> <summary> Returns an array of string containing the names of the logical drives on the current computer. </summary> <returns> An array of string where each element contains the name of a logical drive. For example, if the computer's hard drive is the first logical drive, the first element returned is "C:\". </returns> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permissions. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Environment.HasShutdownStarted"> <summary> Gets a value indicating whether the common language runtime is shutting down or the current application domain is unloading. </summary> <returns>true if the common language runtime is shutting down or the current <see cref="T:System.AppDomain" /> is unloading; otherwise, false. The current application domain is the <see cref="T:System.AppDomain" /> that contains the object that is calling <see cref="P:System.Environment.HasShutdownStarted" />. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Environment.MachineName"> <summary> Gets the NetBIOS name of this local computer. </summary> <returns> A string containing the name of this computer. </returns> <exception cref="T:System.InvalidOperationException"> The name of this computer cannot be obtained. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="COMPUTERNAME" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Environment.NewLine"> <summary> Gets the newline string defined for this environment. </summary> <returns> A string containing "\r\n" for non-Unix platforms, or a string containing "\n" for Unix platforms. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Environment.OSVersion"> <summary> Gets an <see cref="T:System.OperatingSystem" /> object that contains the current platform identifier and version number. </summary> <returns> An <see cref="T:System.OperatingSystem" /> object. </returns> <exception cref="T:System.InvalidOperationException"> This property was unable to obtain the system version. -or- The obtained platform identifier is not a member of <see cref="T:System.PlatformID" />. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Environment.ProcessorCount"> <summary> Gets the number of processors on the current machine. </summary> <returns> The 32-bit signed integer that specifies the number of processors on the current machine. There is no default. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="NUMBER_OF_PROCESSORS" /> </PermissionSet> </member> <member name="M:System.Environment.SetEnvironmentVariable(System.String,System.String)"> <summary> Creates, modifies, or deletes an environment variable stored in the current process. </summary> <param name="variable"> The name of an environment variable. </param> <param name="value"> A value to assign to <paramref name="variable" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="variable" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="variable" /> contains a zero-length string, an initial hexadecimal zero character (0x00), or an equal sign ("="). -or- The length of <paramref name="variable" /> or <paramref name="value" /> is greater than or equal to 32,767 characters. -or- An error occurred during the execution of this operation. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission to perform this operation. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Environment.SetEnvironmentVariable(System.String,System.String,System.EnvironmentVariableTarget)"> <summary> Creates, modifies, or deletes an environment variable stored in the current process or in the Windows operating system registry key reserved for the current user or local machine. </summary> <param name="variable"> The name of an environment variable. </param> <param name="value"> A value to assign to <paramref name="variable" />. </param> <param name="target"> One of the <see cref="T:System.EnvironmentVariableTarget" /> values. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="variable" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="variable" /> contains a zero-length string, an initial hexadecimal zero character (0x00), or an equal sign ("="). -or- The length of <paramref name="variable" /> is greater than or equal to 32,767 characters. -or- <paramref name="target" /> is not a member of the <see cref="T:System.EnvironmentVariableTarget" /> enumeration. -or- <paramref name="target" /> is <see cref="F:System.EnvironmentVariableTarget.Machine" /> or <see cref="F:System.EnvironmentVariableTarget.User" /> and the length of <paramref name="variable" /> is greater than or equal to 255. -or- <paramref name="target" /> is <see cref="F:System.EnvironmentVariableTarget.Process" /> and the length of <paramref name="value" /> is greater than or equal to 32,767 characters. -or- An error occurred during the execution of this operation. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="target" /> is <see cref="F:System.EnvironmentVariableTarget.User" /> or <see cref="F:System.EnvironmentVariableTarget.Machine" /> and the current operating system is Windows 95, Windows 98, or Windows Me. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission to perform this operation. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Environment.StackTrace"> <summary> Gets current stack trace information. </summary> <returns> A string containing stack trace information. This value can be <see cref="F:System.String.Empty" />. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The requested stack trace information is out of range. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.Environment.SystemDirectory"> <summary> Gets the fully qualified path of the system directory. </summary> <returns> A string containing a directory path. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Environment.TickCount"> <summary> Gets the number of milliseconds elapsed since the system started. </summary> <returns> A 32-bit signed integer containing the amount of time in milliseconds that has passed since the last time the computer was started. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Environment.UserDomainName"> <summary> Gets the network domain name associated with the current user. </summary> <returns> The network domain name associated with the current user. </returns> <exception cref="T:System.PlatformNotSupportedException"> The operating system does not support retrieving the network domain name. </exception> <exception cref="T:System.InvalidOperationException"> The network domain name cannot be retrieved. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="UserName;UserDomainName" /> </PermissionSet> </member> <member name="P:System.Environment.UserInteractive"> <summary> Gets a value indicating whether the current process is running in user interactive mode. </summary> <returns>true if the current process is running in user interactive mode; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Environment.UserName"> <summary> Gets the user name of the person who is currently logged on to the Windows operating system. </summary> <returns> The user name of the person who is logged on to Windows. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="UserName" /> </PermissionSet> </member> <member name="P:System.Environment.Version"> <summary> Gets a <see cref="T:System.Version" /> object that describes the major, minor, build, and revision numbers of the common language runtime. </summary> <returns> A <see cref="T:System.Version" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Environment.WorkingSet"> <summary> Gets the amount of physical memory mapped to the process context. </summary> <returns> A 64-bit signed integer containing the number of bytes of physical memory mapped to the process context. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Environment.SpecialFolder"> <summary> Specifies enumerated constants used to retrieve directory paths to system special folders. </summary> </member> <member name="F:System.Environment.SpecialFolder.ApplicationData"> <summary> The directory that serves as a common repository for application-specific data for the current roaming user. </summary> </member> <member name="F:System.Environment.SpecialFolder.CommonApplicationData"> <summary> The directory that serves as a common repository for application-specific data that is used by all users. </summary> </member> <member name="F:System.Environment.SpecialFolder.LocalApplicationData"> <summary> The directory that serves as a common repository for application-specific data that is used by the current, non-roaming user. </summary> </member> <member name="F:System.Environment.SpecialFolder.Cookies"> <summary> The directory that serves as a common repository for Internet cookies. </summary> </member> <member name="F:System.Environment.SpecialFolder.Desktop"> <summary> The logical Desktop rather than the physical file system location. </summary> </member> <member name="F:System.Environment.SpecialFolder.Favorites"> <summary> The directory that serves as a common repository for the user's favorite items. </summary> </member> <member name="F:System.Environment.SpecialFolder.History"> <summary> The directory that serves as a common repository for Internet history items. </summary> </member> <member name="F:System.Environment.SpecialFolder.InternetCache"> <summary> The directory that serves as a common repository for temporary Internet files. </summary> </member> <member name="F:System.Environment.SpecialFolder.Programs"> <summary> The directory that contains the user's program groups. </summary> </member> <member name="F:System.Environment.SpecialFolder.MyComputer"> <summary> The "My Computer" folder. </summary> </member> <member name="F:System.Environment.SpecialFolder.MyMusic"> <summary> The "My Music" folder. </summary> </member> <member name="F:System.Environment.SpecialFolder.MyPictures"> <summary> The "My Pictures" folder. </summary> </member> <member name="F:System.Environment.SpecialFolder.Recent"> <summary> The directory that contains the user's most recently used documents. </summary> </member> <member name="F:System.Environment.SpecialFolder.SendTo"> <summary> The directory that contains the Send To menu items. </summary> </member> <member name="F:System.Environment.SpecialFolder.StartMenu"> <summary> The directory that contains the Start menu items. </summary> </member> <member name="F:System.Environment.SpecialFolder.Startup"> <summary> The directory that corresponds to the user's Startup program group. </summary> </member> <member name="F:System.Environment.SpecialFolder.System"> <summary> The System directory. </summary> </member> <member name="F:System.Environment.SpecialFolder.Templates"> <summary> The directory that serves as a common repository for document templates. </summary> </member> <member name="F:System.Environment.SpecialFolder.DesktopDirectory"> <summary> The directory used to physically store file objects on the desktop. </summary> </member> <member name="F:System.Environment.SpecialFolder.Personal"> <summary> The directory that serves as a common repository for documents. </summary> </member> <member name="F:System.Environment.SpecialFolder.MyDocuments"> <summary> The "My Documents" folder. </summary> </member> <member name="F:System.Environment.SpecialFolder.ProgramFiles"> <summary> The program files directory. </summary> </member> <member name="F:System.Environment.SpecialFolder.CommonProgramFiles"> <summary> The directory for components that are shared across applications. </summary> </member> <member name="T:System.EnvironmentVariableTarget"> <summary> Specifies the location where an environment variable is stored or retrieved in a set or get operation. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.EnvironmentVariableTarget.Process"> <summary> The environment variable is stored or retrieved from the environment block associated with the current process. </summary> </member> <member name="F:System.EnvironmentVariableTarget.User"> <summary> The environment variable is stored or retrieved from the HKEY_CURRENT_USER\Environment key in the Windows operating system registry. </summary> </member> <member name="F:System.EnvironmentVariableTarget.Machine"> <summary> The environment variable is stored or retrieved from the HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment key in the Windows operating system registry. </summary> </member> <member name="T:System.EventArgs"> <summary> <see cref="T:System.EventArgs" /> is the base class for classes containing event data. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.EventArgs.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.EventArgs" /> class. </summary> </member> <member name="F:System.EventArgs.Empty"> <summary> Represents an event with no event data. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.EventHandler"> <summary> Represents the method that will handle an event that has no event data. </summary> <param name="sender"> The source of the event. </param> <param name="e"> An <see cref="T:System.EventArgs" /> that contains no event data. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.EventHandler`1"> <summary> Represents the method that will handle an event. </summary> <param name="sender"> The source of the event. </param> <param name="e"> An <see cref="T:System.EventArgs" /> that contains the event data. </param> <typeparam name="TEventArgs"> The type of the event data generated by the event. </typeparam> <filterpriority>1</filterpriority> </member> <member name="T:System.Exception"> <summary> Represents errors that occur during application execution. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Exception.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Exception" /> class. </summary> </member> <member name="M:System.Exception.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Exception" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception> </member> <member name="M:System.Exception.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Exception" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.Exception.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Exception" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. </param> </member> <member name="P:System.Exception.Data"> <summary> Gets a collection of key/value pairs that provide additional user-defined information about the exception. </summary> <returns> An object that implements the <see cref="T:System.Collections.IDictionary" /> interface and contains a collection of user-defined key/value pairs. The default is an empty collection. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Exception.GetBaseException"> <summary> When overridden in a derived class, returns the <see cref="T:System.Exception" /> that is the root cause of one or more subsequent exceptions. </summary> <returns> The first exception thrown in a chain of exceptions. If the <see cref="P:System.Exception.InnerException" /> property of the current exception is a null reference (Nothing in Visual Basic), this property returns the current exception. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> When overridden in a derived class, sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Exception.GetType"> <summary> Gets the runtime type of the current instance. </summary> <returns> A <see cref="T:System.Type" /> object that represents the exact runtime type of the current instance. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Exception.HelpLink"> <summary> Gets or sets a link to the help file associated with this exception. </summary> <returns> The Uniform Resource Name (URN) or Uniform Resource Locator (URL). </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Exception.HResult"> <summary> Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception. </summary> <returns> The HRESULT value. </returns> </member> <member name="P:System.Exception.InnerException"> <summary> Gets the <see cref="T:System.Exception" /> instance that caused the current exception. </summary> <returns> An instance of Exception that describes the error that caused the current exception. The InnerException property returns the same value as was passed into the constructor, or a null reference (Nothing in Visual Basic) if the inner exception value was not supplied to the constructor. This property is read-only. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Exception.Message"> <summary> Gets a message that describes the current exception. </summary> <returns> The error message that explains the reason for the exception, or an empty string(""). </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Exception.Source"> <summary> Gets or sets the name of the application or the object that causes the error. </summary> <returns> The name of the application or the object that causes the error. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Exception.StackTrace"> <summary> Gets a string representation of the frames on the call stack at the time the current exception was thrown. </summary> <returns> A string that describes the contents of the call stack, with the most recent method call appearing first. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.Exception.TargetSite"> <summary> Gets the method that throws the current exception. </summary> <returns> The <see cref="T:System.Reflection.MethodBase" /> that threw the current exception. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Exception.ToString"> <summary> Creates and returns a string representation of the current exception. </summary> <returns> A string representation of the current exception. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="T:System.ExecutionEngineException"> <summary> The exception that is thrown when there is an internal error in the execution engine of the common language runtime. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ExecutionEngineException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ExecutionEngineException" /> class. </summary> </member> <member name="M:System.ExecutionEngineException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ExecutionEngineException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.ExecutionEngineException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.ExecutionEngineException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.FieldAccessException"> <summary> The exception that is thrown when there is an invalid attempt to access a private or protected field inside a class. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.FieldAccessException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.FieldAccessException" /> class. </summary> </member> <member name="M:System.FieldAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.FieldAccessException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.FieldAccessException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.FieldAccessException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.FieldAccessException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.FieldAccessException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.FlagsAttribute"> <summary> Indicates that an enumeration can be treated as a bit field; that is, a set of flags. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.FlagsAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.FlagsAttribute" /> class. </summary> </member> <member name="T:System.FormatException"> <summary> The exception that is thrown when the format of an argument does not meet the parameter specifications of the invoked method. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.FormatException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.FormatException" /> class. </summary> </member> <member name="M:System.FormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.FormatException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.FormatException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.FormatException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.FormatException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.FormatException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.GC"> <summary> Controls the system garbage collector, a service that automatically reclaims unused memory. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.GC.AddMemoryPressure(System.Int64)"> <summary> Informs the runtime of a large allocation of unmanaged memory that should be taken into account when scheduling garbage collection. </summary> <param name="bytesAllocated"> The incremental amount of unmanaged memory that has been allocated. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bytesAllocated" /> is less than or equal to 0. -or- On a 32-bit computer, <paramref name="bytesAllocated" /> is larger than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.GC.Collect"> <summary> Forces an immediate garbage collection of all generations. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.GC.Collect(System.Int32)"> <summary> Forces an immediate garbage collection from generation zero through a specified generation. </summary> <param name="generation"> The number of the oldest generation that garbage collection can be performed on. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="generation" /> is less than 0. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.GC.CollectionCount(System.Int32)"> <summary> Returns the number of times garbage collection has occurred for the specified generation of objects. </summary> <returns> The number of times garbage collection has occurred for the specified generation since the process was started. </returns> <param name="generation"> The generation of objects for which the garbage collection count is to be determined. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="generation" /> is less than 0. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.GC.GetGeneration(System.Object)"> <summary> Returns the current generation number of the specified object. </summary> <returns> The current generation number of <paramref name="obj" />. </returns> <param name="obj"> The object that generation information is retrieved for. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.GC.GetGeneration(System.WeakReference)"> <summary> Returns the current generation number of the target of a specified weak reference. </summary> <returns> The current generation number of the target of <paramref name="wo" />. </returns> <param name="wo"> A <see cref="T:System.WeakReference" /> that refers to the target object whose generation number is to be determined. </param> <exception cref="T:System.ArgumentException"> Garbage collection has already been performed on <paramref name="wo" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.GC.GetTotalMemory(System.Boolean)"> <summary> Retrieves the number of bytes currently thought to be allocated. A parameter indicates whether this method can wait a short interval before returning, to allow the system to collect garbage and finalize objects. </summary> <returns> A number that is the best available approximation of the number of bytes currently allocated in managed memory. </returns> <param name="forceFullCollection">true to indicate that this method can wait for garbage collection to occur before returning; otherwise, false. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.GC.KeepAlive(System.Object)"> <summary> References the specified object, which makes it ineligible for garbage collection from the start of the current routine to the point where this method is called. </summary> <param name="obj"> The object to reference. </param> <filterpriority>1</filterpriority> </member> <member name="P:System.GC.MaxGeneration"> <summary> Gets the maximum number of generations that the system currently supports. </summary> <returns> A value that ranges from zero to the maximum number of supported generations. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.GC.RemoveMemoryPressure(System.Int64)"> <summary> Informs the runtime that unmanaged memory has been released and no longer needs to be taken into account when scheduling garbage collection. </summary> <param name="bytesAllocated"> The amount of unmanaged memory that has been released. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bytesAllocated" /> is less than or equal to 0. -or- On a 32-bit computer, <paramref name="bytesAllocated" /> is larger than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.GC.ReRegisterForFinalize(System.Object)"> <summary> Requests that the system call the finalizer for the specified object for which <see cref="M:System.GC.SuppressFinalize(System.Object)" /> has previously been called. </summary> <param name="obj"> The object that a finalizer must be called for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="obj" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.GC.SuppressFinalize(System.Object)"> <summary> Requests that the system not call the finalizer for the specified object. </summary> <param name="obj"> The object that a finalizer must not be called for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="obj" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.GC.WaitForPendingFinalizers"> <summary> Suspends the current thread until the thread that is processing the queue of finalizers has emptied that queue. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.Guid"> <summary> Represents a globally unique identifier (GUID). </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Guid.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Guid" /> class using the specified array of bytes. </summary> <param name="b"> A 16 element byte array containing values with which to initialize the GUID. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="b" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="b" /> is not 16 bytes long. </exception> </member> <member name="M:System.Guid.#ctor(System.Int32,System.Int16,System.Int16,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)"> <summary> Initializes a new instance of the <see cref="T:System.Guid" /> class using the specified integers and bytes. </summary> <param name="a"> The first 4 bytes of the GUID. </param> <param name="b"> The next 2 bytes of the GUID. </param> <param name="c"> The next 2 bytes of the GUID. </param> <param name="d"> The next byte of the GUID. </param> <param name="e"> The next byte of the GUID. </param> <param name="f"> The next byte of the GUID. </param> <param name="g"> The next byte of the GUID. </param> <param name="h"> The next byte of the GUID. </param> <param name="i"> The next byte of the GUID. </param> <param name="j"> The next byte of the GUID. </param> <param name="k"> The next byte of the GUID. </param> </member> <member name="M:System.Guid.#ctor(System.Int32,System.Int16,System.Int16,System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Guid" /> class using the specified integers and byte array. </summary> <param name="a"> The first 4 bytes of the GUID. </param> <param name="b"> The next 2 bytes of the GUID. </param> <param name="c"> The next 2 bytes of the GUID. </param> <param name="d"> The remaining 8 bytes of the GUID. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="d" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="d" /> is not 8 bytes long. </exception> </member> <member name="M:System.Guid.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Guid" /> class using the value represented by the specified string. </summary> <param name="g"> A <see cref="T:System.String" /> that contains a GUID in one of the following formats ('d' represents a hexadecimal digit whose case is ignored): 32 contiguous digits: dddddddddddddddddddddddddddddddd -or- Groups of 8, 4, 4, 4, and 12 digits with hyphens between the groups. The entire GUID can optionally be enclosed in matching braces or parentheses: dddddddd-dddd-dddd-dddd-dddddddddddd -or- {dddddddd-dddd-dddd-dddd-dddddddddddd} -or- (dddddddd-dddd-dddd-dddd-dddddddddddd) -or- Groups of 8, 4, and 4 digits, and a subset of eight groups of 2 digits, with each group prefixed by "0x" or "0X", and separated by commas. The entire GUID, as well as the subset, is enclosed in matching braces: {0xdddddddd, 0xdddd, 0xdddd,{0xdd,0xdd,0xdd,0xdd,0xdd,0xdd,0xdd,0xdd}} All braces, commas, and "0x" prefixes are required. All embedded spaces are ignored. All leading zeroes in a group are ignored. The digits shown in a group are the maximum number of meaningful digits that can appear in that group. You can specify from 1 to the number of digits shown for a group. The specified digits are assumed to be the low order digits of the group. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="g" /> is null. </exception> <exception cref="T:System.FormatException"> The format of <paramref name="g" /> is invalid. </exception> <exception cref="T:System.OverflowException"> The format of <paramref name="g" /> is invalid. </exception> </member> <member name="M:System.Guid.#ctor(System.UInt32,System.UInt16,System.UInt16,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)"> <summary> Initializes a new instance of the <see cref="T:System.Guid" /> class using the specified unsigned integers and bytes. </summary> <param name="a"> The first 4 bytes of the GUID. </param> <param name="b"> The next 2 bytes of the GUID. </param> <param name="c"> The next 2 bytes of the GUID. </param> <param name="d"> The next byte of the GUID. </param> <param name="e"> The next byte of the GUID. </param> <param name="f"> The next byte of the GUID. </param> <param name="g"> The next byte of the GUID. </param> <param name="h"> The next byte of the GUID. </param> <param name="i"> The next byte of the GUID. </param> <param name="j"> The next byte of the GUID. </param> <param name="k"> The next byte of the GUID. </param> </member> <member name="M:System.Guid.CompareTo(System.Guid)"> <summary> Compares this instance to a specified <see cref="T:System.Guid" /> object and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Value Description A negative integer This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. A positive integer This instance is greater than <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.Guid" /> object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Guid.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Value Description A negative integer This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. A positive integer This instance is greater than <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.Guid" />. </exception> <filterpriority>2</filterpriority> </member> <member name="F:System.Guid.Empty"> <summary> A read-only instance of the <see cref="T:System.Guid" /> class whose value is guaranteed to be all zeroes. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Guid.Equals(System.Guid)"> <summary> Returns a value indicating whether this instance and a specified <see cref="T:System.Guid" /> object represent the same value. </summary> <returns>true if <paramref name="g" /> is equal to this instance; otherwise, false. </returns> <param name="g"> A <see cref="T:System.Guid" /> object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Guid.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="o" /> is a <see cref="T:System.Guid" /> that has the same value as this instance; otherwise, false. </returns> <param name="o"> The object to compare with this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Guid.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> The hash code for this instance. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Guid.NewGuid"> <summary> Initializes a new instance of the <see cref="T:System.Guid" /> class. </summary> <returns> A new <see cref="T:System.Guid" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Guid.op_Equality(System.Guid,System.Guid)"> <summary> Returns an indication whether the values of two specified <see cref="T:System.Guid" /> objects are equal. </summary> <returns>true if <paramref name="a" /> and <paramref name="b" /> are equal; otherwise, false. </returns> <param name="a"> A <see cref="T:System.Guid" /> object. </param> <param name="b"> A <see cref="T:System.Guid" /> object. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Guid.op_Inequality(System.Guid,System.Guid)"> <summary> Returns an indication whether the values of two specified <see cref="T:System.Guid" /> objects are not equal. </summary> <returns>true if <paramref name="a" /> and <paramref name="b" /> are not equal; otherwise, false. </returns> <param name="a"> A <see cref="T:System.Guid" /> object. </param> <param name="b"> A <see cref="T:System.Guid" /> object. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Guid.ToByteArray"> <summary> Returns a 16-element byte array that contains the value of this instance. </summary> <returns> A 16-element byte array. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Guid.ToString"> <summary> Returns a <see cref="T:System.String" /> representation of the value of this instance in registry format. </summary> <returns> A String formatted in this pattern: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx where the value of the GUID is represented as a series of lower-case hexadecimal digits in groups of 8, 4, 4, 4, and 12 digits and separated by hyphens. An example of a return value is "382c74c3-721d-4f34-80e5-57657b6cbc27". </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Guid.ToString(System.String)"> <summary> Returns a <see cref="T:System.String" /> representation of the value of this <see cref="T:System.Guid" /> instance, according to the provided format specifier. </summary> <returns> A <see cref="T:System.String" /> representation of the value of this <see cref="T:System.Guid" />. </returns> <param name="format"> A single format specifier that indicates how to format the value of this <see cref="T:System.Guid" />. The <paramref name="format" /> parameter can be "N", "D", "B", or "P". If <paramref name="format" /> is null or the empty string (""), "D" is used. </param> <exception cref="T:System.FormatException"> The value of <paramref name="format" /> is not null, the empty string (""), "N", "D", "B", or "P". </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Guid.ToString(System.String,System.IFormatProvider)"> <summary> Returns a <see cref="T:System.String" /> representation of the value of this instance of the <see cref="T:System.Guid" /> class, according to the provided format specifier and culture-specific format information. </summary> <returns> A <see cref="T:System.String" /> representation of the value of this <see cref="T:System.Guid" />. </returns> <param name="format"> A single format specifier that indicates how to format the value of this <see cref="T:System.Guid" />. The <paramref name="format" /> parameter can be "N", "D", "B", or "P". If <paramref name="format" /> is null or the empty string (""), "D" is used. </param> <param name="provider"> (Reserved) An IFormatProvider reference that supplies culture-specific formatting services. </param> <exception cref="T:System.FormatException"> The value of <paramref name="format" /> is not null, the empty string (""), "N", "D", "B", or "P". </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.IAppDomainSetup"> <summary> Represents assembly binding information that can be added to an instance of <see cref="T:System.AppDomain" />. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.IAppDomainSetup.ApplicationBase"> <summary> Gets or sets the name of the directory containing the application. </summary> <returns> A <see cref="T:System.String" /> containg the name of the application base directory. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAppDomainSetup.ApplicationName"> <summary> Gets or sets the name of the application. </summary> <returns> A <see cref="T:System.String" /> that is the name of the application. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAppDomainSetup.CachePath"> <summary> Gets and sets the name of an area specific to the application where files are shadow copied. </summary> <returns> A <see cref="T:System.String" /> that is the fully-qualified name of the directory path and file name where files are shadow copied. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAppDomainSetup.ConfigurationFile"> <summary> Gets and sets the name of the configuration file for an application domain. </summary> <returns> A <see cref="T:System.String" /> that specifies the name of the configuration file. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAppDomainSetup.DynamicBase"> <summary> Gets or sets the directory where dynamically generated files are stored and accessed. </summary> <returns> A <see cref="T:System.String" /> that specifies the directory containing dynamic assemblies. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAppDomainSetup.LicenseFile"> <summary> Gets or sets the location of the license file associated with this domain. </summary> <returns> A <see cref="T:System.String" /> that specifies the name of the license file. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAppDomainSetup.PrivateBinPath"> <summary> Gets or sets the list of directories that is combined with the <see cref="P:System.AppDomainSetup.ApplicationBase" /> directory to probe for private assemblies. </summary> <returns> A <see cref="T:System.String" /> containing a list of directory names, where each name is separated by a semicolon. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAppDomainSetup.PrivateBinPathProbe"> <summary> Gets or sets the private binary directory path used to locate an application. </summary> <returns> A <see cref="T:System.String" /> containing a list of directory names, where each name is separated by a semicolon. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAppDomainSetup.ShadowCopyDirectories"> <summary> Gets or sets the names of the directories containing assemblies to be shadow copied. </summary> <returns> A <see cref="T:System.String" /> containing a list of directory names, where each name is separated by a semicolon. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAppDomainSetup.ShadowCopyFiles"> <summary> Gets or sets a string that indicates whether shadow copying is turned on or off. </summary> <returns> A <see cref="T:System.String" /> containing the value "true" to indicate that shadow copying is turned on; or "false" to indicate that shadow copying is turned off. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.IAsyncResult"> <summary> Represents the status of an asynchronous operation. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.IAsyncResult.AsyncState"> <summary> Gets a user-defined object that qualifies or contains information about an asynchronous operation. </summary> <returns> A user-defined object that qualifies or contains information about an asynchronous operation. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAsyncResult.AsyncWaitHandle"> <summary> Gets a <see cref="T:System.Threading.WaitHandle" /> that is used to wait for an asynchronous operation to complete. </summary> <returns> A <see cref="T:System.Threading.WaitHandle" /> that is used to wait for an asynchronous operation to complete. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAsyncResult.CompletedSynchronously"> <summary> Gets a value that indicates whether the asynchronous operation completed synchronously. </summary> <returns>true if the asynchronous operation completed synchronously; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IAsyncResult.IsCompleted"> <summary> Gets a value that indicates whether the asynchronous operation has completed. </summary> <returns>true if the operation is complete; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.ICloneable"> <summary> Supports cloning, which creates a new instance of a class with the same value as an existing instance. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ICloneable.Clone"> <summary> Creates a new object that is a copy of the current instance. </summary> <returns> A new object that is a copy of this instance. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.IComparable"> <summary> Defines a generalized type-specific comparison method that a value type or class implements to order or sort its instances. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IComparable.CompareTo(System.Object)"> <summary> Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. </summary> <returns> A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance is less than <paramref name="obj" />. Zero This instance is equal to <paramref name="obj" />. Greater than zero This instance is greater than <paramref name="obj" />. </returns> <param name="obj"> An object to compare with this instance. </param> <exception cref="T:System.ArgumentException"> <paramref name="obj" /> is not the same type as this instance. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.IComparable`1"> <summary> Defines a generalized comparison method that a value type or class implements to create a type-specific comparison method for ordering instances. </summary> <typeparam name="T"> The type of objects to compare. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.IComparable`1.CompareTo(`0)"> <summary> Compares the current object with another object of the same type. </summary> <returns> A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the <paramref name="other" /> parameter. Zero This object is equal to <paramref name="other" />. Greater than zero This object is greater than <paramref name="other" />. </returns> <param name="other"> An object to compare with this object. </param> </member> <member name="T:System.IConvertible"> <summary> Defines methods that convert the value of the implementing reference or value type to a common language runtime type that has an equivalent value. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for this instance. </summary> <returns> The enumerated constant that is the <see cref="T:System.TypeCode" /> of the class or value type that implements this interface. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToBoolean(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent Boolean value using the specified culture-specific formatting information. </summary> <returns> A Boolean value equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToByte(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent 8-bit unsigned integer using the specified culture-specific formatting information. </summary> <returns> An 8-bit unsigned integer equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToChar(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent Unicode character using the specified culture-specific formatting information. </summary> <returns> A Unicode character equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToDateTime(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent <see cref="T:System.DateTime" /> using the specified culture-specific formatting information. </summary> <returns> A <see cref="T:System.DateTime" /> instance equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToDecimal(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent <see cref="T:System.Decimal" /> number using the specified culture-specific formatting information. </summary> <returns> A <see cref="T:System.Decimal" /> number equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToDouble(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent double-precision floating-point number using the specified culture-specific formatting information. </summary> <returns> A double-precision floating-point number equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToInt16(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent 16-bit signed integer using the specified culture-specific formatting information. </summary> <returns> An 16-bit signed integer equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToInt32(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent 32-bit signed integer using the specified culture-specific formatting information. </summary> <returns> An 32-bit signed integer equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToInt64(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent 64-bit signed integer using the specified culture-specific formatting information. </summary> <returns> An 64-bit signed integer equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToSByte(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent 8-bit signed integer using the specified culture-specific formatting information. </summary> <returns> An 8-bit signed integer equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToSingle(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent single-precision floating-point number using the specified culture-specific formatting information. </summary> <returns> A single-precision floating-point number equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToString(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent <see cref="T:System.String" /> using the specified culture-specific formatting information. </summary> <returns> A <see cref="T:System.String" /> instance equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)"> <summary> Converts the value of this instance to an <see cref="T:System.Object" /> of the specified <see cref="T:System.Type" /> that has an equivalent value, using the specified culture-specific formatting information. </summary> <returns> An <see cref="T:System.Object" /> instance of type <paramref name="conversionType" /> whose value is equivalent to the value of this instance. </returns> <param name="conversionType"> The <see cref="T:System.Type" /> to which the value of this instance is converted. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToUInt16(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent 16-bit unsigned integer using the specified culture-specific formatting information. </summary> <returns> An 16-bit unsigned integer equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToUInt32(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent 32-bit unsigned integer using the specified culture-specific formatting information. </summary> <returns> An 32-bit unsigned integer equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IConvertible.ToUInt64(System.IFormatProvider)"> <summary> Converts the value of this instance to an equivalent 64-bit unsigned integer using the specified culture-specific formatting information. </summary> <returns> An 64-bit unsigned integer equivalent to the value of this instance. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> interface implementation that supplies culture-specific formatting information. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.ICustomFormatter"> <summary> Defines a method that supports custom, user-defined formatting of the value of an object. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ICustomFormatter.Format(System.String,System.Object,System.IFormatProvider)"> <summary> Converts the value of a specified object to an equivalent string representation using specified format and culture-specific formatting information. </summary> <returns> The string representation of the value of <paramref name="arg" />, formatted as specified by <paramref name="format" /> and <paramref name="formatProvider" />. </returns> <param name="format"> A format string containing formatting specifications. </param> <param name="arg"> An object to format. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that supplies format information about the current instance. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.IDisposable"> <summary> Defines a method to release allocated resources. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IDisposable.Dispose"> <summary> Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. </summary> <filterpriority>2</filterpriority> </member> <member name="T:System.IEquatable`1"> <summary> Defines a generalized method that a value type or class implements to create a type-specific method for determining equality of instances. </summary> <typeparam name="T"> The type of objects to compare. </typeparam> </member> <member name="M:System.IEquatable`1.Equals(`0)"> <summary> Indicates whether the current object is equal to another object of the same type. </summary> <returns>true if the current object is equal to the <paramref name="other" /> parameter; otherwise, false. </returns> <param name="other"> An object to compare with this object. </param> </member> <member name="T:System.IFormatProvider"> <summary> Provides a mechanism for retrieving an object to control formatting. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IFormatProvider.GetFormat(System.Type)"> <summary> Returns an object that provides formatting services for the specified type. </summary> <returns> An instance of the object specified by <paramref name="formatType" />, if the <see cref="T:System.IFormatProvider" /> implementation can supply that type of object; otherwise, null. </returns> <param name="formatType"> An object that specifies the type of format object to return. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.IFormattable"> <summary> Provides functionality to format the value of an object into a string representation. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IFormattable.ToString(System.String,System.IFormatProvider)"> <summary> Formats the value of the current instance using the specified format. </summary> <returns> A <see cref="T:System.String" /> containing the value of the current instance in the specified format. </returns> <param name="format"> The <see cref="T:System.String" /> specifying the format to use. -or- null to use the default format defined for the type of the <see cref="T:System.IFormattable" /> implementation. </param> <param name="formatProvider"> The <see cref="T:System.IFormatProvider" /> to use to format the value. -or- null to obtain the numeric format information from the current locale setting of the operating system. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.IndexOutOfRangeException"> <summary> The exception that is thrown when an attempt is made to access an element of an array with an index that is outside the bounds of the array. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IndexOutOfRangeException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IndexOutOfRangeException" /> class. </summary> </member> <member name="M:System.IndexOutOfRangeException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IndexOutOfRangeException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.IndexOutOfRangeException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IndexOutOfRangeException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.InsufficientMemoryException"> <summary> The exception that is thrown when a check for sufficient available memory fails. This class cannot be inherited. </summary> </member> <member name="M:System.InsufficientMemoryException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.InsufficientMemoryException" /> class with a system-supplied message that describes the error. </summary> </member> <member name="M:System.InsufficientMemoryException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.InsufficientMemoryException" /> class with a specified message that describes the error. </summary> <param name="message"> The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.InsufficientMemoryException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.InsufficientMemoryException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Int16"> <summary> Represents a 16-bit signed integer. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.CompareTo(System.Int16)"> <summary> Compares this instance to a specified 16-bit signed integer and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified 16-bit signed integer. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. </returns> <param name="value"> An integer to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Int16.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the object. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not an <see cref="T:System.Int16" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Int16.Equals(System.Int16)"> <summary> Returns a value indicating whether this instance is equal to a specified <see cref="T:System.Int16" /> value. </summary> <returns>true if <paramref name="obj" /> has the same value as this instance; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.Int16" /> value to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Int16.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.Int16" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Int16.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Int16.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Int16" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.Int16" />. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.Int16.MaxValue"> <summary> Represents the largest possible value of an <see cref="T:System.Int16" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Int16.MinValue"> <summary> Represents the smallest possible value of <see cref="T:System.Int16" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.Parse(System.String)"> <summary> Converts the string representation of a number to its 16-bit signed integer equivalent. </summary> <returns> A 16-bit signed integer equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its 16-bit signed integer equivalent. </summary> <returns> A 16-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="style"> A bitwise combination of the enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. -or- <paramref name="s" /> includes non-zero fractional digits. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 16-bit signed integer equivalent. </summary> <returns> A 16-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="style"> A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. -or- <paramref name="s" /> includes non-zero fractional digits. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified culture-specific format to its 16-bit signed integer equivalent. </summary> <returns> A 16-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Byte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Char" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Int16.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Decimal" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Double" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.SByte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Single" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to <paramref name="type" />. </returns> <param name="type"> The type to which to convert this <see cref="T:System.Int16" /> value. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that supplies information about the format of the returned value. </param> </member> <member name="M:System.Int16.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int16.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance, consisting of a minus sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.ToString(System.String)"> <summary> Converts the numeric value of this instance to its equivalent string representation, using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A numeric format string. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.ToString(System.String,System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific formatting information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A numeric format string. </param> <param name="provider"> An object that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int16@)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 16-bit signed integer equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a number to convert. The string is interpreted using the style specified by <paramref name="style" />. </param> <param name="style"> A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="result"> When this method returns, contains the 16-bit signed integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in a format compliant with <paramref name="style" />, or represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int16.TryParse(System.String,System.Int16@)"> <summary> Converts the string representation of a number to its 16-bit signed integer equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a number to convert. </param> <param name="result"> When this method returns, contains the 16-bit signed integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not of the correct format, or represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.Int32"> <summary> Represents a 32-bit signed integer. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.CompareTo(System.Int32)"> <summary> Compares this instance to a specified 32-bit signed integer and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. </returns> <param name="value"> An integer to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Int32.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not an <see cref="T:System.Int32" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Int32.Equals(System.Int32)"> <summary> Returns a value indicating whether this instance is equal to a specified <see cref="T:System.Int32" /> value. </summary> <returns>true if <paramref name="obj" /> has the same value as this instance; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.Int32" /> value to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Int32.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.Int32" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Int32.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Int32.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Int32" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.Int32" />. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.Int32.MaxValue"> <summary> Represents the largest possible value of an <see cref="T:System.Int32" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Int32.MinValue"> <summary> Represents the smallest possible value of <see cref="T:System.Int32" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.Parse(System.String)"> <summary> Converts the string representation of a number to its 32-bit signed integer equivalent. </summary> <returns> A 32-bit signed integer equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its 32-bit signed integer equivalent. </summary> <returns> A 32-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="style"> A bitwise combination of the enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. -or- <paramref name="s" /> includes non-zero, fractional digits. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. </summary> <returns> A 32-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="style"> A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific information about the format of <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. -or- <paramref name="s" /> includes non-zero, fractional digits. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified culture-specific format to its 32-bit signed integer equivalent. </summary> <returns> A 32-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not of the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Byte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Char" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Int32.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Decimal" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Double" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.SByte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Single" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to <paramref name="type" />. </returns> <param name="type"> The type to which to convert this <see cref="T:System.Int32" /> value. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that provides information about the format of the returned value. </param> </member> <member name="M:System.Int32.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int32.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance, consisting of a negative sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.ToString(System.String)"> <summary> Converts the numeric value of this instance to its equivalent string representation, using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A numeric format string. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid or not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.ToString(System.String,System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A numeric format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid or not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int32@)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. A return value indicates whether the conversion succeeded. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a number to convert. The string is interpreted using the style specified by <paramref name="style" />. </param> <param name="style"> A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="result"> When this method returns, contains the 32-bit signed integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in a format compliant with <paramref name="style" />, or represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int32.TryParse(System.String,System.Int32@)"> <summary> Converts the string representation of a number to its 32-bit signed integer equivalent. A return value indicates whether the conversion succeeded. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a number to convert. </param> <param name="result"> When this method returns, contains the 32-bit signed integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not of the correct format, or represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.Int64"> <summary> Represents a 64-bit signed integer. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.CompareTo(System.Int64)"> <summary> Compares this instance to a specified 64-bit signed integer and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. </returns> <param name="value"> An integer to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Int64.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not an <see cref="T:System.Int64" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Int64.Equals(System.Int64)"> <summary> Returns a value indicating whether this instance is equal to a specified <see cref="T:System.Int64" /> value. </summary> <returns>true if <paramref name="obj" /> has the same value as this instance; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.Int64" /> value to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Int64.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of an <see cref="T:System.Int64" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Int64.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Int64.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Int64" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.Int64" />. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.Int64.MaxValue"> <summary> Represents the largest possible value of an Int64. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Int64.MinValue"> <summary> Represents the smallest possible value of an Int64. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.Parse(System.String)"> <summary> Converts the string representation of a number to its 64-bit signed integer equivalent. </summary> <returns> A 64-bit signed integer equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its 64-bit signed integer equivalent. </summary> <returns> A 64-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. -or- <paramref name="style" /> supports fractional digits but <paramref name="s" /> includes non-zero fractional digits. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 64-bit signed integer equivalent. </summary> <returns> A 64-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="style"> A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. -or- <paramref name="style" /> supports fractional digits, but <paramref name="s" /> includes non-zero fractional digits. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified culture-specific format to its 64-bit signed integer equivalent. </summary> <returns> A 64-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="provider"> An object that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Byte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Char" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Int64.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Decimal" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Double" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.SByte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Single" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to <paramref name="type" />. </returns> <param name="type"> The type to which to convert this <see cref="T:System.Int64" /> value. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that provides information about the format of the returned value. </param> </member> <member name="M:System.Int64.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Int64.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance, consisting of a minus sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.ToString(System.String)"> <summary> Converts the numeric value of this instance to its equivalent string representation, using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A numeric format string. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid or not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.ToString(System.String,System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A numeric format string. </param> <param name="provider"> An object that supplies culture-specific formatting information about this instance. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid or not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int64@)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 64-bit signed integer equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a number to convert. The string is interpreted using the style specified by <paramref name="style" />. </param> <param name="style"> A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="result"> When this method returns, contains the 64-bit signed integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in a format compliant with <paramref name="style" />, or represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Int64.TryParse(System.String,System.Int64@)"> <summary> Converts the string representation of a number to its 64-bit signed integer equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string containing a number to convert. </param> <param name="result"> When this method returns, contains the 64-bit signed integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not of the correct format, or represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.IntPtr"> <summary> A platform-specific type that is used to represent a pointer or a handle. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IntPtr.#ctor(System.Int32)"> <summary> Initializes a new instance of <see cref="T:System.IntPtr" /> using the specified 32-bit pointer or handle. </summary> <param name="value"> A pointer or handle contained in a 32-bit signed integer. </param> </member> <member name="M:System.IntPtr.#ctor(System.Int64)"> <summary> Initializes a new instance of <see cref="T:System.IntPtr" /> using the specified 64-bit pointer. </summary> <param name="value"> A pointer or handle contained in a 64-bit signed integer. </param> <exception cref="T:System.OverflowException"> On a 32-bit platform, <paramref name="value" /> is too large or too small to represent as an <see cref="T:System.IntPtr" />. </exception> </member> <member name="M:System.IntPtr.#ctor(System.Void*)"> <summary> Initializes a new instance of <see cref="T:System.IntPtr" /> using the specified pointer to an unspecified type. </summary> <param name="value"> A pointer to an unspecified type. </param> </member> <member name="M:System.IntPtr.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.IntPtr" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance or null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.IntPtr.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IntPtr.op_Equality(System.IntPtr,System.IntPtr)"> <summary> Determines whether two specified instances of <see cref="T:System.IntPtr" /> are equal. </summary> <returns>true if <paramref name="value1" /> equals <paramref name="value2" />; otherwise, false. </returns> <param name="value1"> An <see cref="T:System.IntPtr" />. </param> <param name="value2"> An <see cref="T:System.IntPtr" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.IntPtr.op_Explicit(System.Int32)~System.IntPtr"> <summary> Converts the value of a 32-bit signed integer to an <see cref="T:System.IntPtr" />. </summary> <returns> A new instance of <see cref="T:System.IntPtr" /> initialized to <paramref name="value" />. </returns> <param name="value"> A 32-bit signed integer. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.IntPtr.op_Explicit(System.Int64)~System.IntPtr"> <summary> Converts the value of a 64-bit signed integer to an <see cref="T:System.IntPtr" />. </summary> <returns> A new instance of <see cref="T:System.IntPtr" /> initialized to <paramref name="value" />. </returns> <param name="value"> A 64-bit signed integer. </param> <exception cref="T:System.OverflowException"> On a 32-bit platform, <paramref name="value" /> is too large to represent as an <see cref="T:System.IntPtr" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.IntPtr.op_Explicit(System.IntPtr)~System.Int32"> <summary> Converts the value of the specified <see cref="T:System.IntPtr" /> to a 32-bit signed integer. </summary> <returns> The contents of <paramref name="value" />. </returns> <param name="value"> An <see cref="T:System.IntPtr" />. </param> <exception cref="T:System.OverflowException"> On a 64-bit platform, the value of <paramref name="value" /> is too large to represent as a 32-bit signed integer. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.IntPtr.op_Explicit(System.IntPtr)~System.Void*"> <summary> Converts the value of the specified <see cref="T:System.IntPtr" /> to a pointer to an unspecified type. </summary> <returns> The contents of <paramref name="value" />. </returns> <param name="value"> An <see cref="T:System.IntPtr" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.IntPtr.op_Explicit(System.IntPtr)~System.Int64"> <summary> Converts the value of the specified <see cref="T:System.IntPtr" /> to a 64-bit signed integer. </summary> <returns> The contents of <paramref name="value" />. </returns> <param name="value"> An <see cref="T:System.IntPtr" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.IntPtr.op_Explicit(System.Void*)~System.IntPtr"> <summary> Converts the specified pointer to an unspecified type to an <see cref="T:System.IntPtr" />. </summary> <returns> A new instance of <see cref="T:System.IntPtr" /> initialized to <paramref name="value" />. </returns> <param name="value"> A pointer to an unspecified type. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.IntPtr.op_Inequality(System.IntPtr,System.IntPtr)"> <summary> Determines whether two specified instances of <see cref="T:System.IntPtr" /> are not equal. </summary> <returns>true if <paramref name="value1" /> does not equal <paramref name="value2" />; otherwise, false. </returns> <param name="value1"> An <see cref="T:System.IntPtr" />. </param> <param name="value2"> An <see cref="T:System.IntPtr" />. </param> <filterpriority>3</filterpriority> </member> <member name="P:System.IntPtr.Size"> <summary> Gets the size of this instance. </summary> <returns> The size of a pointer or handle on this platform, measured in bytes. The value of this property is 4 on a 32-bit platform, and 8 on a 64-bit platform. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IntPtr.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data needed to serialize the current <see cref="T:System.IntPtr" /> object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to populate with data. </param> <param name="context"> The destination for this serialization. (This parameter is not used; specify null.) </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.IntPtr.ToInt32"> <summary> Converts the value of this instance to a 32-bit signed integer. </summary> <returns> A 32-bit signed integer equal to the value of this instance. </returns> <exception cref="T:System.OverflowException"> On a 64-bit platform, the value of this instance is too large or too small to represent as a 32-bit signed integer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IntPtr.ToInt64"> <summary> Converts the value of this instance to a 64-bit signed integer. </summary> <returns> A 64-bit signed integer equal to the value of this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IntPtr.ToPointer"> <summary> Converts the value of this instance to a pointer to an unspecified type. </summary> <returns> A pointer to <see cref="T:System.Void" />; that is, a pointer to memory containing data of an unspecified type. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IntPtr.ToString"> <summary> Converts the numeric value of the current <see cref="T:System.IntPtr" /> object to its equivalent string representation. </summary> <returns> The string representation of the value of this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IntPtr.ToString(System.String)"> <summary> Converts the numeric value of the current <see cref="T:System.IntPtr" /> object to its equivalent string representation. </summary> <returns> The string representation of the value of the current <see cref="T:System.IntPtr" /> object. </returns> <param name="format"> A format specification that governs how the current <see cref="T:System.IntPtr" /> object is converted. </param> <filterpriority>1</filterpriority> </member> <member name="F:System.IntPtr.Zero"> <summary> A read-only field that represents a pointer or handle that has been initialized to zero. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.InvalidCastException"> <summary> The exception that is thrown for invalid casting or explicit conversion. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.InvalidCastException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.InvalidCastException" /> class. </summary> </member> <member name="M:System.InvalidCastException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.InvalidCastException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.InvalidCastException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.InvalidCastException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.InvalidCastException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.InvalidCastException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.InvalidCastException.#ctor(System.String,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.InvalidCastException" /> class with a specified message and error code. </summary> <param name="message"> The message that indicates the reason the exception occurred. </param> <param name="errorCode"> The error code (HRESULT) value associated with the exception. </param> </member> <member name="T:System.InvalidOperationException"> <summary> The exception that is thrown when a method call is invalid for the object's current state. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.InvalidOperationException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.InvalidOperationException" /> class. </summary> </member> <member name="M:System.InvalidOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.InvalidOperationException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.InvalidOperationException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.InvalidOperationException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.InvalidOperationException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.InvalidOperationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.InvalidProgramException"> <summary> The exception that is thrown when a program contains invalid Microsoft intermediate language (MSIL) or metadata. Generally this indicates a bug in the compiler that generated the program. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.InvalidProgramException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.InvalidProgramException" /> class with default properties. </summary> </member> <member name="M:System.InvalidProgramException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.InvalidProgramException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.InvalidProgramException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.InvalidProgramException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.IServiceProvider"> <summary> Defines a mechanism for retrieving a service object; that is, an object that provides custom support to other objects. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IServiceProvider.GetService(System.Type)"> <summary> Gets the service object of the specified type. </summary> <returns> A service object of type <paramref name="serviceType" />. -or- null if there is no service object of type <paramref name="serviceType" />. </returns> <param name="serviceType"> An object that specifies the type of service object to get. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.LoaderOptimization"> <summary> An enumeration used with the <see cref="T:System.LoaderOptimizationAttribute" /> class to specify loader optimizations for an executable. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.LoaderOptimization.NotSpecified"> <summary> Indicates that no optimizations for sharing internal resources are specified. If the default domain or hosting interface specified an optimization, then the loader uses that; otherwise, the loader uses <see cref="F:System.LoaderOptimization.SingleDomain" />. </summary> </member> <member name="F:System.LoaderOptimization.SingleDomain"> <summary> Indicates that the application will probably have a single domain, and loader must not share internal resources across application domains. </summary> </member> <member name="F:System.LoaderOptimization.MultiDomain"> <summary> Indicates that the application will probably have many domains that use the same code, and the loader must share maximal internal resources across application domains. </summary> </member> <member name="F:System.LoaderOptimization.MultiDomainHost"> <summary> Indicates that the application will probably host unique code in multiple domains, and the loader must share resources across application domains only for globally available (strong-named) assemblies that have been added to the global assembly cache. </summary> </member> <member name="F:System.LoaderOptimization.DomainMask"> <summary> Do not use. This mask selects the domain-related values, screening out the unused <see cref="F:System.LoaderOptimization.DisallowBindings" /> flag. </summary> </member> <member name="F:System.LoaderOptimization.DisallowBindings"> <summary> Ignored by the common language runtime. </summary> </member> <member name="T:System.LoaderOptimizationAttribute"> <summary> Used to set the default loader optimization policy for the main method of an executable application. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.LoaderOptimizationAttribute.#ctor(System.Byte)"> <summary> Initializes a new instance of the <see cref="T:System.LoaderOptimizationAttribute" /> class to the specified value. </summary> <param name="value"> A value equivalent to a <see cref="T:System.LoaderOptimization" /> constant. </param> </member> <member name="M:System.LoaderOptimizationAttribute.#ctor(System.LoaderOptimization)"> <summary> Initializes a new instance of the <see cref="T:System.LoaderOptimizationAttribute" /> class to the specified value. </summary> <param name="value"> A <see cref="T:System.LoaderOptimization" /> constant. </param> </member> <member name="P:System.LoaderOptimizationAttribute.Value"> <summary> Gets the current <see cref="T:System.LoaderOptimization" /> value for this instance. </summary> <returns> A <see cref="T:System.LoaderOptimization" /> constant. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.LocalDataStoreSlot"> <summary> Encapsulates a memory slot to store local data. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="T:System.MarshalByRefObject"> <summary> Enables access to objects across application domain boundaries in applications that support remoting. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.MarshalByRefObject.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.MarshalByRefObject" /> class. </summary> </member> <member name="M:System.MarshalByRefObject.CreateObjRef(System.Type)"> <summary> Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. </summary> <returns> Information required to generate a proxy. </returns> <param name="requestedType"> The <see cref="T:System.Type" /> of the object that the new <see cref="T:System.Runtime.Remoting.ObjRef" /> will reference. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> This instance is not a valid remoting object. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.MarshalByRefObject.GetLifetimeService"> <summary> Retrieves the current lifetime service object that controls the lifetime policy for this instance. </summary> <returns> An object of type <see cref="T:System.Runtime.Remoting.Lifetime.ILease" /> used to control the lifetime policy for this instance. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="M:System.MarshalByRefObject.InitializeLifetimeService"> <summary> Obtains a lifetime service object to control the lifetime policy for this instance. </summary> <returns> An object of type <see cref="T:System.Runtime.Remoting.Lifetime.ILease" /> used to control the lifetime policy for this instance. This is the current lifetime service object for this instance if one exists; otherwise, a new lifetime service object initialized to the value of the <see cref="P:System.Runtime.Remoting.Lifetime.LifetimeServices.LeaseManagerPollTime" /> property. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="M:System.MarshalByRefObject.MemberwiseClone(System.Boolean)"> <summary> Creates a shallow copy of the current <see cref="T:System.MarshalByRefObject" /> object. </summary> <returns> A shallow copy of the current <see cref="T:System.MarshalByRefObject" /> object. </returns> <param name="cloneIdentity">false to delete the current <see cref="T:System.MarshalByRefObject" /> object's identity, which will cause the object to be assigned a new identity when it is marshaled across a remoting boundary. A value of false is usually appropriate. true to copy the current <see cref="T:System.MarshalByRefObject" /> object's identity to its clone, which will cause remoting client calls to be routed to the remote server object. </param> </member> <member name="T:System.Math"> <summary> Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Abs(System.Decimal)"> <summary> Returns the absolute value of a <see cref="T:System.Decimal" /> number. </summary> <returns> A <see cref="T:System.Decimal" />, x, such that 0 ≤ x ≤<see cref="F:System.Decimal.MaxValue" />. </returns> <param name="value"> A number in the range <see cref="F:System.Decimal.MinValue" />≤ value ≤<see cref="F:System.Decimal.MaxValue" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Abs(System.Double)"> <summary> Returns the absolute value of a double-precision floating-point number. </summary> <returns> A double-precision floating-point number, x, such that 0 ≤ x ≤<see cref="F:System.Double.MaxValue" />. </returns> <param name="value"> A number in the range <see cref="F:System.Double.MinValue" />≤<paramref name="value" />≤<see cref="F:System.Double.MaxValue" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Abs(System.Int16)"> <summary> Returns the absolute value of a 16-bit signed integer. </summary> <returns> A 16-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.Int16.MaxValue" />. </returns> <param name="value"> A number in the range <see cref="F:System.Int16.MinValue" /> < <paramref name="value" />≤<see cref="F:System.Int16.MaxValue" />. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> equals <see cref="F:System.Int16.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Abs(System.Int32)"> <summary> Returns the absolute value of a 32-bit signed integer. </summary> <returns> A 32-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.Int32.MaxValue" />. </returns> <param name="value"> A number in the range <see cref="F:System.Int32.MinValue" /> < <paramref name="value" />≤<see cref="F:System.Int32.MaxValue" />. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> equals <see cref="F:System.Int32.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Abs(System.Int64)"> <summary> Returns the absolute value of a 64-bit signed integer. </summary> <returns> A 64-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.Int64.MaxValue" />. </returns> <param name="value"> A number in the range <see cref="F:System.Int64.MinValue" /> < <paramref name="value" />≤<see cref="F:System.Int64.MaxValue" />. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> equals <see cref="F:System.Int64.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Abs(System.SByte)"> <summary> Returns the absolute value of an 8-bit signed integer. </summary> <returns> An 8-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.SByte.MaxValue" />. </returns> <param name="value"> A number in the range <see cref="F:System.SByte.MinValue" /> < <paramref name="value" />≤<see cref="F:System.SByte.MaxValue" />. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> equals <see cref="F:System.SByte.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Abs(System.Single)"> <summary> Returns the absolute value of a single-precision floating-point number. </summary> <returns> A single-precision floating-point number, x, such that 0 ≤ x ≤<see cref="F:System.Single.MaxValue" />. </returns> <param name="value"> A number in the range <see cref="F:System.Single.MinValue" />≤<paramref name="value" />≤<see cref="F:System.Single.MaxValue" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Acos(System.Double)"> <summary> Returns the angle whose cosine is the specified number. </summary> <returns> An angle, θ, measured in radians, such that 0 ≤θ≤π -or- <see cref="F:System.Double.NaN" /> if <paramref name="d" /> < -1 or <paramref name="d" /> > 1. </returns> <param name="d"> A number representing a cosine, where -1 ≤<paramref name="d" />≤ 1. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Asin(System.Double)"> <summary> Returns the angle whose sine is the specified number. </summary> <returns> An angle, θ, measured in radians, such that -π/2 ≤θ≤π/2 -or- <see cref="F:System.Double.NaN" /> if <paramref name="d" /> < -1 or <paramref name="d" /> > 1. </returns> <param name="d"> A number representing a sine, where -1 ≤<paramref name="d" />≤ 1. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Atan(System.Double)"> <summary> Returns the angle whose tangent is the specified number. </summary> <returns> An angle, θ, measured in radians, such that -π/2 ≤θ≤π/2. -or- <see cref="F:System.Double.NaN" /> if <paramref name="d" /> equals <see cref="F:System.Double.NaN" />, -π/2 rounded to double precision (-1.5707963267949) if <paramref name="d" /> equals <see cref="F:System.Double.NegativeInfinity" />, or π/2 rounded to double precision (1.5707963267949) if <paramref name="d" /> equals <see cref="F:System.Double.PositiveInfinity" />. </returns> <param name="d"> A number representing a tangent. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Atan2(System.Double,System.Double)"> <summary> Returns the angle whose tangent is the quotient of two specified numbers. </summary> <returns> An angle, θ, measured in radians, such that -π≤θ≤π, and tan(θ) = <paramref name="y" /> / <paramref name="x" />, where (<paramref name="x" />, <paramref name="y" />) is a point in the Cartesian plane. Observe the following: For (<paramref name="x" />, <paramref name="y" />) in quadrant 1, 0 < θ < π/2. For (<paramref name="x" />, <paramref name="y" />) in quadrant 2, π/2 < θ≤π. For (<paramref name="x" />, <paramref name="y" />) in quadrant 3, -π < θ < -π/2. For (<paramref name="x" />, <paramref name="y" />) in quadrant 4, -π/2 < θ < 0. For points on the boundaries of the quadrants, the return value is the following: If y is 0 and x is not negative, θ = 0. If y is 0 and x is negative, θ = π. If y is positive and x is 0, θ = π/2. If y is negative and x is 0, θ = -π/2. </returns> <param name="y"> The y coordinate of a point. </param> <param name="x"> The x coordinate of a point. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.BigMul(System.Int32,System.Int32)"> <summary> Produces the full product of two 32-bit numbers. </summary> <returns> The <see cref="T:System.Int64" /> containing the product of the specified numbers. </returns> <param name="a"> The first <see cref="T:System.Int32" /> to multiply. </param> <param name="b"> The second <see cref="T:System.Int32" /> to multiply. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Ceiling(System.Decimal)"> <summary> Returns the smallest integer greater than or equal to the specified decimal number. </summary> <returns> The smallest integer greater than or equal to <paramref name="d" />. </returns> <param name="d"> A decimal number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Ceiling(System.Double)"> <summary> Returns the smallest integer greater than or equal to the specified double-precision floating-point number. </summary> <returns> The smallest integer greater than or equal to <paramref name="a" />. If <paramref name="a" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, that value is returned. </returns> <param name="a"> A double-precision floating-point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Cos(System.Double)"> <summary> Returns the cosine of the specified angle. </summary> <returns> The cosine of <paramref name="d" />. </returns> <param name="d"> An angle, measured in radians. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Cosh(System.Double)"> <summary> Returns the hyperbolic cosine of the specified angle. </summary> <returns> The hyperbolic cosine of <paramref name="value" />. If <paramref name="value" /> is equal to <see cref="F:System.Double.NegativeInfinity" /> or <see cref="F:System.Double.PositiveInfinity" />, <see cref="F:System.Double.PositiveInfinity" /> is returned. If <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned. </returns> <param name="value"> An angle, measured in radians. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.DivRem(System.Int32,System.Int32,System.Int32@)"> <summary> Calculates the quotient of two 32-bit signed integers and also returns the remainder in an output parameter. </summary> <returns> The <see cref="T:System.Int32" /> containing the quotient of the specified numbers. </returns> <param name="a"> The <see cref="T:System.Int32" /> that contains the dividend. </param> <param name="b"> The <see cref="T:System.Int32" /> that contains the divisor. </param> <param name="result"> The <see cref="T:System.Int32" /> that receives the remainder. </param> <exception cref="T:System.DivideByZeroException"> <paramref name="b" /> is zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.DivRem(System.Int64,System.Int64,System.Int64@)"> <summary> Calculates the quotient of two 64-bit signed integers and also returns the remainder in an output parameter. </summary> <returns> The <see cref="T:System.Int64" /> containing the quotient of the specified numbers. </returns> <param name="a"> The <see cref="T:System.Int64" /> that contains the dividend. </param> <param name="b"> The <see cref="T:System.Int64" /> that contains the divisor. </param> <param name="result"> The <see cref="T:System.Int64" /> that receives the remainder. </param> <exception cref="T:System.DivideByZeroException"> <paramref name="b" /> is zero. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.Math.E"> <summary> Represents the natural logarithmic base, specified by the constant, e. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Exp(System.Double)"> <summary> Returns e raised to the specified power. </summary> <returns> The number e raised to the power <paramref name="d" />. If <paramref name="d" /> equals <see cref="F:System.Double.NaN" /> or <see cref="F:System.Double.PositiveInfinity" />, that value is returned. If <paramref name="d" /> equals <see cref="F:System.Double.NegativeInfinity" />, 0 is returned. </returns> <param name="d"> A number specifying a power. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Floor(System.Decimal)"> <summary> Returns the largest integer less than or equal to the specified decimal number. </summary> <returns> The largest integer less than or equal to <paramref name="d" />. </returns> <param name="d"> A decimal number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Floor(System.Double)"> <summary> Returns the largest integer less than or equal to the specified double-precision floating-point number. </summary> <returns> The largest integer less than or equal to <paramref name="d" />. If <paramref name="d" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, that value is returned. </returns> <param name="d"> A double-precision floating-point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.IEEERemainder(System.Double,System.Double)"> <summary> Returns the remainder resulting from the division of a specified number by another specified number. </summary> <returns> A number equal to <paramref name="x" /> - (<paramref name="y" /> Q), where Q is the quotient of <paramref name="x" /> / <paramref name="y" /> rounded to the nearest integer (if <paramref name="x" /> / <paramref name="y" /> falls halfway between two integers, the even integer is returned). If <paramref name="x" /> - (<paramref name="y" /> Q) is zero, the value +0 is returned if <paramref name="x" /> is positive, or -0 if <paramref name="x" /> is negative. If <paramref name="y" /> = 0, <see cref="F:System.Double.NaN" /> (Not-A-Number) is returned. </returns> <param name="x"> A dividend. </param> <param name="y"> A divisor. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Log(System.Double)"> <summary> Returns the natural (base e) logarithm of a specified number. </summary> <returns> Sign of <paramref name="d" /> Returns Positive The natural logarithm of <paramref name="d" />; that is, ln <paramref name="d" />, or log e<paramref name="d" /> Zero <see cref="F:System.Double.NegativeInfinity" /> Negative <see cref="F:System.Double.NaN" /> If <paramref name="d" /> is equal to <see cref="F:System.Double.NaN" />, returns <see cref="F:System.Double.NaN" />. If <paramref name="d" /> is equal to <see cref="F:System.Double.PositiveInfinity" />, returns <see cref="F:System.Double.PositiveInfinity" />. </returns> <param name="d"> A number whose logarithm is to be found. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Log(System.Double,System.Double)"> <summary> Returns the logarithm of a specified number in a specified base. </summary> <returns> In the following table +Infinity denotes <see cref="F:System.Double.PositiveInfinity" />, -Infinity denotes <see cref="F:System.Double.NegativeInfinity" />, and NaN denotes <see cref="F:System.Double.NaN" />. <paramref name="a" /><paramref name="newBase" /> Return Value <paramref name="a" />> 0 (0 <<paramref name="newBase" />< 1) -or-(<paramref name="newBase" />> 1) lognewBase(a) <paramref name="a" />< 0 (any value) NaN (any value) <paramref name="newBase" />< 0 NaN <paramref name="a" /> != 1 <paramref name="newBase" /> = 0 NaN <paramref name="a" /> != 1 <paramref name="newBase" /> = +Infinity NaN <paramref name="a" /> = NaN (any value) NaN (any value) <paramref name="newBase" /> = NaN NaN (any value) <paramref name="newBase" /> = 1 NaN <paramref name="a" /> = 0 0 <<paramref name="newBase" />< 1 +Infinity <paramref name="a" /> = 0 <paramref name="newBase" />> 1 -Infinity <paramref name="a" /> = +Infinity 0 <<paramref name="newBase" />< 1 -Infinity <paramref name="a" /> = +Infinity <paramref name="newBase" />> 1 +Infinity <paramref name="a" /> = 1 <paramref name="newBase" /> = 0 0 <paramref name="a" /> = 1 <paramref name="newBase" /> = +Infinity 0 </returns> <param name="a"> A number whose logarithm is to be found. </param> <param name="newBase"> The base of the logarithm. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Log10(System.Double)"> <summary> Returns the base 10 logarithm of a specified number. </summary> <returns> Sign of <paramref name="d" /> Returns Positive The base 10 log of <paramref name="d" />; that is, log 10<paramref name="d" />. Zero <see cref="F:System.Double.NegativeInfinity" /> Negative <see cref="F:System.Double.NaN" /> If <paramref name="d" /> is equal to <see cref="F:System.Double.NaN" />, this method returns <see cref="F:System.Double.NaN" />. If <paramref name="d" /> is equal to <see cref="F:System.Double.PositiveInfinity" />, this method returns <see cref="F:System.Double.PositiveInfinity" />. </returns> <param name="d"> A number whose logarithm is to be found. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.Byte,System.Byte)"> <summary> Returns the larger of two 8-bit unsigned integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. </returns> <param name="val1"> The first of two 8-bit unsigned integers to compare. </param> <param name="val2"> The second of two 8-bit unsigned integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.Decimal,System.Decimal)"> <summary> Returns the larger of two decimal numbers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. </returns> <param name="val1"> The first of two <see cref="T:System.Decimal" /> numbers to compare. </param> <param name="val2"> The second of two <see cref="T:System.Decimal" /> numbers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.Double,System.Double)"> <summary> Returns the larger of two double-precision floating-point numbers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. If <paramref name="val1" />, <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned. </returns> <param name="val1"> The first of two double-precision floating-point numbers to compare. </param> <param name="val2"> The second of two double-precision floating-point numbers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.Int16,System.Int16)"> <summary> Returns the larger of two 16-bit signed integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. </returns> <param name="val1"> The first of two 16-bit signed integers to compare. </param> <param name="val2"> The second of two 16-bit signed integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.Int32,System.Int32)"> <summary> Returns the larger of two 32-bit signed integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. </returns> <param name="val1"> The first of two 32-bit signed integers to compare. </param> <param name="val2"> The second of two 32-bit signed integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.Int64,System.Int64)"> <summary> Returns the larger of two 64-bit signed integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. </returns> <param name="val1"> The first of two 64-bit signed integers to compare. </param> <param name="val2"> The second of two 64-bit signed integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.SByte,System.SByte)"> <summary> Returns the larger of two 8-bit signed integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. </returns> <param name="val1"> The first of two 8-bit signed integers to compare. </param> <param name="val2"> The second of two 8-bit signed integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.Single,System.Single)"> <summary> Returns the larger of two single-precision floating-point numbers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. If <paramref name="val1" />, or <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned. </returns> <param name="val1"> The first of two single-precision floating-point numbers to compare. </param> <param name="val2"> The second of two single-precision floating-point numbers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.UInt16,System.UInt16)"> <summary> Returns the larger of two 16-bit unsigned integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. </returns> <param name="val1"> The first of two 16-bit unsigned integers to compare. </param> <param name="val2"> The second of two 16-bit unsigned integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.UInt32,System.UInt32)"> <summary> Returns the larger of two 32-bit unsigned integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. </returns> <param name="val1"> The first of two 32-bit unsigned integers to compare. </param> <param name="val2"> The second of two 32-bit unsigned integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Max(System.UInt64,System.UInt64)"> <summary> Returns the larger of two 64-bit unsigned integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. </returns> <param name="val1"> The first of two 64-bit unsigned integers to compare. </param> <param name="val2"> The second of two 64-bit unsigned integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.Byte,System.Byte)"> <summary> Returns the smaller of two 8-bit unsigned integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. </returns> <param name="val1"> The first of two 8-bit unsigned integers to compare. </param> <param name="val2"> The second of two 8-bit unsigned integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.Decimal,System.Decimal)"> <summary> Returns the smaller of two decimal numbers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. </returns> <param name="val1"> The first of two <see cref="T:System.Decimal" /> numbers to compare. </param> <param name="val2"> The second of two <see cref="T:System.Decimal" /> numbers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.Double,System.Double)"> <summary> Returns the smaller of two double-precision floating-point numbers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. If <paramref name="val1" />, <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned. </returns> <param name="val1"> The first of two double-precision floating-point numbers to compare. </param> <param name="val2"> The second of two double-precision floating-point numbers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.Int16,System.Int16)"> <summary> Returns the smaller of two 16-bit signed integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. </returns> <param name="val1"> The first of two 16-bit signed integers to compare. </param> <param name="val2"> The second of two 16-bit signed integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.Int32,System.Int32)"> <summary> Returns the smaller of two 32-bit signed integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. </returns> <param name="val1"> The first of two 32-bit signed integers to compare. </param> <param name="val2"> The second of two 32-bit signed integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.Int64,System.Int64)"> <summary> Returns the smaller of two 64-bit signed integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. </returns> <param name="val1"> The first of two 64-bit signed integers to compare. </param> <param name="val2"> The second of two 64-bit signed integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.SByte,System.SByte)"> <summary> Returns the smaller of two 8-bit signed integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. </returns> <param name="val1"> The first of two 8-bit signed integers to compare. </param> <param name="val2"> The second of two 8-bit signed integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.Single,System.Single)"> <summary> Returns the smaller of two single-precision floating-point numbers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. If <paramref name="val1" />, <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned. </returns> <param name="val1"> The first of two single-precision floating-point numbers to compare. </param> <param name="val2"> The second of two single-precision floating-point numbers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.UInt16,System.UInt16)"> <summary> Returns the smaller of two 16-bit unsigned integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. </returns> <param name="val1"> The first of two 16-bit unsigned integers to compare. </param> <param name="val2"> The second of two 16-bit unsigned integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.UInt32,System.UInt32)"> <summary> Returns the smaller of two 32-bit unsigned integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. </returns> <param name="val1"> The first of two 32-bit unsigned integers to compare. </param> <param name="val2"> The second of two 32-bit unsigned integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Min(System.UInt64,System.UInt64)"> <summary> Returns the smaller of two 64-bit unsigned integers. </summary> <returns> Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. </returns> <param name="val1"> The first of two 64-bit unsigned integers to compare. </param> <param name="val2"> The second of two 64-bit unsigned integers to compare. </param> <filterpriority>1</filterpriority> </member> <member name="F:System.Math.PI"> <summary> Represents the ratio of the circumference of a circle to its diameter, specified by the constant, π. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Pow(System.Double,System.Double)"> <summary> Returns a specified number raised to the specified power. </summary> <returns> The number <paramref name="x" /> raised to the power <paramref name="y" />. </returns> <param name="x"> A double-precision floating-point number to be raised to a power. </param> <param name="y"> A double-precision floating-point number that specifies a power. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Round(System.Decimal)"> <summary> Rounds a decimal value to the nearest integer. </summary> <returns> The integer nearest parameter <paramref name="d" />. If the fractional component of <paramref name="d" /> is halfway between two integers, one of which is even and the other odd, then the even number is returned. </returns> <param name="d"> A decimal number to be rounded. </param> <exception cref="T:System.OverflowException"> The result is outside the range of a <see cref="T:System.Decimal" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Round(System.Decimal,System.Int32)"> <summary> Rounds a decimal value to a specified number of fractional digits. </summary> <returns> The number nearest to <paramref name="d" /> that contains a number of fractional digits equal to <paramref name="decimals" />. </returns> <param name="d"> A decimal number to be rounded. </param> <param name="decimals"> The number of decimal places in the return value. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="decimals" /> is less than 0 or greater than 28. </exception> <exception cref="T:System.OverflowException"> The result is outside the range of a <see cref="T:System.Decimal" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Round(System.Decimal,System.Int32,System.MidpointRounding)"> <summary> Rounds a decimal value to a specified number of fractional digits. A parameter specifies how to round the value if it is midway between two other numbers. </summary> <returns> The number nearest to <paramref name="d" /> that contains a number of fractional digits equal to <paramref name="decimals" />. If <paramref name="d" /> is halfway between two numbers, one of which is even and the other odd, then <paramref name="mode" /> determines which of the two numbers is returned. If the number of fractional digits in <paramref name="d" /> is less than <paramref name="decimals" />, <paramref name="d" /> is returned unchanged. </returns> <param name="d"> A decimal number to be rounded. </param> <param name="decimals"> The number of decimal places in the return value. </param> <param name="mode"> Specification for how to round <paramref name="d" /> if it is midway between two other numbers. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="decimals" /> is less than 0 or greater than 28. </exception> <exception cref="T:System.ArgumentException"> <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />. </exception> <exception cref="T:System.OverflowException"> The result is outside the range of a <see cref="T:System.Decimal" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Round(System.Decimal,System.MidpointRounding)"> <summary> Rounds a decimal value to the nearest integer. A parameter specifies how to round the value if it is midway between two other numbers. </summary> <returns> The integer nearest <paramref name="d" />. If <paramref name="d" /> is halfway between two numbers, one of which is even and the other odd, then <paramref name="mode" /> determines which of the two is returned. </returns> <param name="d"> A decimal number to be rounded. </param> <param name="mode"> Specification for how to round <paramref name="d" /> if it is midway between two other numbers. </param> <exception cref="T:System.ArgumentException"> <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />. </exception> <exception cref="T:System.OverflowException"> The result is outside the range of a <see cref="T:System.Decimal" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Round(System.Double)"> <summary> Rounds a double-precision floating-point value to the nearest integer. </summary> <returns> The integer nearest <paramref name="a" />. If the fractional component of <paramref name="a" /> is halfway between two integers, one of which is even and the other odd, then the even number is returned. </returns> <param name="a"> A double-precision floating-point number to be rounded. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Round(System.Double,System.Int32)"> <summary> Rounds a double-precision floating-point value to a specified number of fractional digits. </summary> <returns> The number nearest to <paramref name="value" /> that contains a number of fractional digits equal to <paramref name="digits" />. </returns> <param name="value"> A double-precision floating-point number to be rounded. </param> <param name="digits"> The number of fractional digits in the return value. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="digits" /> is less than 0 or greater than 15. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Round(System.Double,System.Int32,System.MidpointRounding)"> <summary> Rounds a double-precision floating-point value to the specified number of fractional digits. A parameter specifies how to round the value if it is midway between two other numbers. </summary> <returns> The number nearest to <paramref name="value" /> that has a number of fractional digits equal to <paramref name="digits" />. If <paramref name="value" /> is halfway between two numbers, one of which is even and the other odd, then the <paramref name="mode" /> parameter determines which number is returned. If the precision of <paramref name="value" /> is less than <paramref name="digits" />, then <paramref name="value" /> is returned unchanged. </returns> <param name="value"> A double-precision floating-point number to be rounded. </param> <param name="digits"> The number of fractional digits in the return value. </param> <param name="mode"> Specification for how to round <paramref name="value" /> if it is midway between two other numbers. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="digits" /> is less than 0 or greater than 15. </exception> <exception cref="T:System.ArgumentException"> <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Round(System.Double,System.MidpointRounding)"> <summary> Rounds a double-precision floating-point value to the nearest integer. A parameter specifies how to round the value if it is midway between two other numbers. </summary> <returns> The integer nearest <paramref name="value" />. If <paramref name="value" /> is halfway between two integers, one of which is even and the other odd, then <paramref name="mode" /> determines which of the two is returned. </returns> <param name="value"> A double-precision floating-point number to be rounded. </param> <param name="mode"> Specification for how to round <paramref name="value" /> if it is midway between two other numbers. </param> <exception cref="T:System.ArgumentException"> <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Sign(System.Decimal)"> <summary> Returns a value indicating the sign of a decimal number. </summary> <returns> A number indicating the sign of <paramref name="value" />. Number Description -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns> <param name="value"> A signed <see cref="T:System.Decimal" /> number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Sign(System.Double)"> <summary> Returns a value indicating the sign of a double-precision floating-point number. </summary> <returns> A number indicating the sign of <paramref name="value" />. Number Description -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns> <param name="value"> A signed number. </param> <exception cref="T:System.ArithmeticException"> <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Sign(System.Int16)"> <summary> Returns a value indicating the sign of a 16-bit signed integer. </summary> <returns> A number indicating the sign of <paramref name="value" />. Number Description -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns> <param name="value"> A signed number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Sign(System.Int32)"> <summary> Returns a value indicating the sign of a 32-bit signed integer. </summary> <returns> A number indicating the sign of <paramref name="value" />. Number Description -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns> <param name="value"> A signed number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Sign(System.Int64)"> <summary> Returns a value indicating the sign of a 64-bit signed integer. </summary> <returns> A number indicating the sign of <paramref name="value" />. Number Description -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns> <param name="value"> A signed number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Sign(System.SByte)"> <summary> Returns a value indicating the sign of an 8-bit signed integer. </summary> <returns> A number indicating the sign of <paramref name="value" />. Number Description -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns> <param name="value"> A signed number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Sign(System.Single)"> <summary> Returns a value indicating the sign of a single-precision floating-point number. </summary> <returns> A number indicating the sign of <paramref name="value" />. Number Description -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns> <param name="value"> A signed number. </param> <exception cref="T:System.ArithmeticException"> <paramref name="value" /> is equal to <see cref="F:System.Single.NaN" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Sin(System.Double)"> <summary> Returns the sine of the specified angle. </summary> <returns> The sine of <paramref name="a" />. If <paramref name="a" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, this method returns <see cref="F:System.Double.NaN" />. </returns> <param name="a"> An angle, measured in radians. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Sinh(System.Double)"> <summary> Returns the hyperbolic sine of the specified angle. </summary> <returns> The hyperbolic sine of <paramref name="value" />. If <paramref name="value" /> is equal to <see cref="F:System.Double.NegativeInfinity" />, <see cref="F:System.Double.PositiveInfinity" />, or <see cref="F:System.Double.NaN" />, this method returns a <see cref="T:System.Double" /> equal to <paramref name="value" />. </returns> <param name="value"> An angle, measured in radians. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Sqrt(System.Double)"> <summary> Returns the square root of a specified number. </summary> <returns> Value of <paramref name="d" /> Returns Zero, or positive The positive square root of <paramref name="d" />. Negative <see cref="F:System.Double.NaN" /> If <paramref name="d" /> is equal to <see cref="F:System.Double.NaN" /> or <see cref="F:System.Double.PositiveInfinity" />, that value is returned. </returns> <param name="d"> A number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Tan(System.Double)"> <summary> Returns the tangent of the specified angle. </summary> <returns> The tangent of <paramref name="a" />. If <paramref name="a" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, this method returns <see cref="F:System.Double.NaN" />. </returns> <param name="a"> An angle, measured in radians. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Tanh(System.Double)"> <summary> Returns the hyperbolic tangent of the specified angle. </summary> <returns> The hyperbolic tangent of <paramref name="value" />. If <paramref name="value" /> is equal to <see cref="F:System.Double.NegativeInfinity" />, this method returns -1. If value is equal to <see cref="F:System.Double.PositiveInfinity" />, this method returns 1. If <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />, this method returns <see cref="F:System.Double.NaN" />. </returns> <param name="value"> An angle, measured in radians. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Truncate(System.Decimal)"> <summary> Calculates the integral part of a specified decimal number. </summary> <returns> The integral part of <paramref name="d" />; that is, the number that remains after any fractional digits have been discarded. </returns> <param name="d"> A number to truncate. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Math.Truncate(System.Double)"> <summary> Calculates the integral part of a specified double-precision floating-point number. </summary> <returns> The integral part of <paramref name="d" />; that is, the number that remains after any fractional digits have been discarded. </returns> <param name="d"> A number to truncate. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.MemberAccessException"> <summary> The exception that is thrown when an attempt to access a class member fails. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.MemberAccessException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.MemberAccessException" /> class. </summary> </member> <member name="M:System.MemberAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.MemberAccessException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.MemberAccessException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MemberAccessException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.MemberAccessException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.MemberAccessException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.MethodAccessException"> <summary> The exception that is thrown when there is an invalid attempt to access a private or protected method inside a class. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.MethodAccessException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.MethodAccessException" /> class, setting the <see cref="P:System.Exception.Message" /> property of the new instance to a system-supplied message that describes the error, such as "Attempt to access the method failed." This message takes into account the current system culture. </summary> </member> <member name="M:System.MethodAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.MethodAccessException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.MethodAccessException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MethodAccessException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. </param> </member> <member name="M:System.MethodAccessException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.MethodAccessException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.MidpointRounding"> <summary> Specifies how mathematical rounding methods should process a number that is midway between two numbers. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.MidpointRounding.ToEven"> <summary> When a number is halfway between two others, it is rounded toward the nearest even number. </summary> </member> <member name="F:System.MidpointRounding.AwayFromZero"> <summary> When a number is halfway between two others, it is rounded toward the nearest number that is away from zero. </summary> </member> <member name="T:System.MissingFieldException"> <summary> The exception that is thrown when there is an attempt to dynamically access a field that does not exist. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.MissingFieldException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.MissingFieldException" /> class. </summary> </member> <member name="M:System.MissingFieldException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.MissingFieldException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.MissingFieldException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MissingFieldException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. </param> </member> <member name="M:System.MissingFieldException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.MissingFieldException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.MissingFieldException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MissingFieldException" /> class with the specified class name and field name. </summary> <param name="className"> The name of the class in which access to a nonexistent field was attempted. </param> <param name="fieldName"> The name of the field that cannot be accessed. </param> </member> <member name="P:System.MissingFieldException.Message"> <summary> Gets the text string showing the signature of the missing field, the class name, and the field name. This property is read-only. </summary> <returns> The error message string. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.MissingMemberException"> <summary> The exception that is thrown when there is an attempt to dynamically access a class member that does not exist. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.MissingMemberException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.MissingMemberException" /> class. </summary> </member> <member name="M:System.MissingMemberException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.MissingMemberException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.MissingMemberException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MissingMemberException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.MissingMemberException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.MissingMemberException" /> class with a specified error message and a reference to the inner exception that is the root cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> An instance of <see cref="T:System.Exception" /> that is the cause of the current Exception. If <paramref name="inner" /> is not a null reference (Nothing in Visual Basic), then the current Exception is raised in a catch block handling <paramref name="inner" />. </param> </member> <member name="M:System.MissingMemberException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MissingMemberException" /> class with the specified class name and member name. </summary> <param name="className"> The name of the class in which access to a nonexistent member was attempted. </param> <param name="memberName"> The name of the member that cannot be accessed. </param> </member> <member name="F:System.MissingMemberException.ClassName"> <summary> Holds the class name of the missing member. </summary> </member> <member name="M:System.MissingMemberException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the class name, the member name, the signature of the missing member, and additional exception information. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> object is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="F:System.MissingMemberException.MemberName"> <summary> Holds the name of the missing member. </summary> </member> <member name="P:System.MissingMemberException.Message"> <summary> Gets the text string showing the class name, the member name, and the signature of the missing member. </summary> <returns> The error message string. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.MissingMemberException.Signature"> <summary> Holds the signature of the missing member. </summary> </member> <member name="T:System.MissingMethodException"> <summary> The exception that is thrown when there is an attempt to dynamically access a method that does not exist. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.MissingMethodException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.MissingMethodException" /> class. </summary> </member> <member name="M:System.MissingMethodException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.MissingMethodException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.MissingMethodException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MissingMethodException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. </param> </member> <member name="M:System.MissingMethodException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.MissingMethodException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.MissingMethodException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MissingMethodException" /> class with the specified class name and method name. </summary> <param name="className"> The name of the class in which access to a nonexistent method was attempted. </param> <param name="methodName"> The name of the method that cannot be accessed. </param> </member> <member name="P:System.MissingMethodException.Message"> <summary> Gets the text string showing the class name, the method name, and the signature of the missing method. This property is read-only. </summary> <returns> The error message string. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.ModuleHandle"> <summary> Represents a runtime handle for a module. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.ModuleHandle.EmptyHandle"> <summary> Represents an empty module handle. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.ModuleHandle.Equals(System.ModuleHandle)"> <summary> Returns a <see cref="T:System.Boolean" /> value indicating whether the specified <see cref="T:System.ModuleHandle" /> structure is equal to the current <see cref="T:System.ModuleHandle" />. </summary> <returns>true if <paramref name="handle" /> is equal to the current <see cref="T:System.ModuleHandle" /> structure; otherwise false. </returns> <param name="handle"> The <see cref="T:System.ModuleHandle" /> structure to be compared with the current <see cref="T:System.ModuleHandle" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.ModuleHandle.Equals(System.Object)"> <summary> Returns a <see cref="T:System.Boolean" /> value indicating whether the specified object is a <see cref="T:System.ModuleHandle" /> structure, and equal to the current <see cref="T:System.ModuleHandle" />. </summary> <returns>true if <paramref name="obj" /> is a <see cref="T:System.ModuleHandle" /> structure, and is equal to the current <see cref="T:System.ModuleHandle" /> structure; otherwise, false. </returns> <param name="obj"> The object to be compared with the current <see cref="T:System.ModuleHandle" /> structure. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.ModuleHandle.GetHashCode"> <filterpriority>2</filterpriority> </member> <member name="M:System.ModuleHandle.GetRuntimeFieldHandleFromMetadataToken(System.Int32)"> <summary> Returns a runtime handle for the field identified by the specified metadata token. </summary> <returns> A <see cref="T:System.RuntimeFieldHandle" /> for the field identified by <paramref name="fieldToken" />. </returns> <param name="fieldToken"> A metadata token that identifies a field in the module. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.ModuleHandle.GetRuntimeMethodHandleFromMetadataToken(System.Int32)"> <summary> Returns a runtime method handle for the method or constructor identified by the specified metadata token. </summary> <returns> A <see cref="T:System.RuntimeMethodHandle" /> for the method or constructor identified by <paramref name="methodToken" />. </returns> <param name="methodToken"> A metadata token that identifies a method or constructor in the module. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.ModuleHandle.GetRuntimeTypeHandleFromMetadataToken(System.Int32)"> <summary> Returns a runtime type handle for the type identified by the specified metadata token. </summary> <returns> A <see cref="T:System.RuntimeTypeHandle" /> for the type identified by <paramref name="typeToken" />. </returns> <param name="typeToken"> A metadata token that identifies a type in the module. </param> <filterpriority>2</filterpriority> </member> <member name="P:System.ModuleHandle.MDStreamVersion"> <summary> Gets the metadata stream version. </summary> <returns> A 32-bit integer representing the metadata stream version. The high-order two bytes represent the major version number, and the low-order two bytes represent the minor version number. </returns> </member> <member name="M:System.ModuleHandle.op_Equality(System.ModuleHandle,System.ModuleHandle)"> <summary> Tests whether two <see cref="T:System.ModuleHandle" /> structures are equal. </summary> <returns>true if the <see cref="T:System.ModuleHandle" /> structures are equal; otherwise, false. </returns> <param name="left"> The <see cref="T:System.ModuleHandle" /> structure to the left of the equality operator. </param> <param name="right"> The <see cref="T:System.ModuleHandle" /> structure to the right of the equality operator. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.ModuleHandle.op_Inequality(System.ModuleHandle,System.ModuleHandle)"> <summary> Tests whether two <see cref="T:System.ModuleHandle" /> structures are unequal. </summary> <returns>true if the <see cref="T:System.ModuleHandle" /> structures are unequal; otherwise, false. </returns> <param name="left"> The <see cref="T:System.ModuleHandle" /> structure to the left of the inequality operator. </param> <param name="right"> The <see cref="T:System.ModuleHandle" /> structure to the right of the inequality operator. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.ModuleHandle.ResolveFieldHandle(System.Int32)"> <summary> Returns a runtime handle for the field identified by the specified metadata token. </summary> <returns> A <see cref="T:System.RuntimeFieldHandle" /> for the field identified by <paramref name="fieldToken" />. </returns> <param name="fieldToken"> A metadata token that identifies a field in the module. </param> <exception cref="T:System.BadImageFormatException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. -or- <paramref name="metadataToken" /> is not a token for a field in the scope of the current module. -or- <paramref name="metadataToken" /> identifies a field whose parent TypeSpec has a signature containing element type var or mvar. </exception> <exception cref="T:System.InvalidOperationException"> The method is called on an empty field handle. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.ModuleHandle.ResolveFieldHandle(System.Int32,System.RuntimeTypeHandle[],System.RuntimeTypeHandle[])"> <summary> Returns a runtime field handle for the field identified by the specified metadata token, specifying the generic type arguments of the type and method where the token is in scope. </summary> <returns> A <see cref="T:System.RuntimeFieldHandle" /> for the field identified by <paramref name="fieldToken" />. </returns> <param name="fieldToken"> A metadata token that identifies a field in the module. </param> <param name="typeInstantiationContext"> An array of <see cref="T:System.RuntimeTypeHandle" /> structures representing the generic type arguments of the type where the token is in scope, or null if that type is not generic. </param> <param name="methodInstantiationContext"> An array of <see cref="T:System.RuntimeTypeHandle" /> structures representing the generic type arguments of the method where the token is in scope, or null if that method is not generic. </param> <exception cref="T:System.BadImageFormatException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. -or- <paramref name="metadataToken" /> is not a token for a field in the scope of the current module. -or- <paramref name="metadataToken" /> identifies a field whose parent TypeSpec has a signature containing element type var or mvar. </exception> <exception cref="T:System.InvalidOperationException"> The method is called on an empty field handle. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="fieldToken " />is not a valid token. </exception> </member> <member name="M:System.ModuleHandle.ResolveMethodHandle(System.Int32)"> <summary> Returns a runtime method handle for the method or constructor identified by the specified metadata token. </summary> <returns> A <see cref="T:System.RuntimeMethodHandle" /> for the method or constructor identified by <paramref name="methodToken" />. </returns> <param name="methodToken"> A metadata token that identifies a method or constructor in the module. </param> <exception cref="T:System.BadImageFormatException"> <paramref name="methodToken" /> is not a valid metadata token for a method in the current module. -or- <paramref name="metadataToken" /> is not a token for a method or constructor in the scope of the current module. -or- <paramref name="metadataToken" /> is a MethodSpec whose signature contains element type var or mvar. </exception> <exception cref="T:System.InvalidOperationException"> The method is called on an empty method handle. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.ModuleHandle.ResolveMethodHandle(System.Int32,System.RuntimeTypeHandle[],System.RuntimeTypeHandle[])"> <summary> Returns a runtime method handle for the method or constructor identified by the specified metadata token, specifying the generic type arguments of the type and method where the token is in scope. </summary> <returns> A <see cref="T:System.RuntimeMethodHandle" /> for the method or constructor identified by <paramref name="methodToken" />. </returns> <param name="methodToken"> A metadata token that identifies a method or constructor in the module. </param> <param name="typeInstantiationContext"> An array of <see cref="T:System.RuntimeTypeHandle" /> structures representing the generic type arguments of the type where the token is in scope, or null if that type is not generic. </param> <param name="methodInstantiationContext"> An array of <see cref="T:System.RuntimeTypeHandle" /> structures representing the generic type arguments of the method where the token is in scope, or null if that method is not generic. </param> <exception cref="T:System.BadImageFormatException"> <paramref name="methodToken" /> is not a valid metadata token for a method in the current module. -or- <paramref name="metadataToken" /> is not a token for a method or constructor in the scope of the current module. -or- <paramref name="metadataToken" /> is a MethodSpec whose signature contains element type var or mvar. </exception> <exception cref="T:System.InvalidOperationException"> The method is called on an empty method handle. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="methodToken " />is not a valid token. </exception> </member> <member name="M:System.ModuleHandle.ResolveTypeHandle(System.Int32)"> <summary> Returns a runtime type handle for the type identified by the specified metadata token. </summary> <returns> A <see cref="T:System.RuntimeTypeHandle" /> for the type identified by <paramref name="typeToken" />. </returns> <param name="typeToken"> A metadata token that identifies a type in the module. </param> <exception cref="T:System.BadImageFormatException"> <paramref name="typeToken" /> is not a valid metadata token for a type in the current module. -or- <paramref name="metadataToken" /> is not a token for a type in the scope of the current module. -or- <paramref name="metadataToken" /> is a TypeSpec whose signature contains element type var or mvar. </exception> <exception cref="T:System.InvalidOperationException"> The method is called on an empty type handle. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.ModuleHandle.ResolveTypeHandle(System.Int32,System.RuntimeTypeHandle[],System.RuntimeTypeHandle[])"> <summary> Returns a runtime type handle for the type identified by the specified metadata token, specifying the generic type arguments of the type and method where the token is in scope. </summary> <returns> A <see cref="T:System.RuntimeTypeHandle" /> for the type identified by <paramref name="typeToken" />. </returns> <param name="typeToken"> A metadata token that identifies a type in the module. </param> <param name="typeInstantiationContext"> An array of <see cref="T:System.RuntimeTypeHandle" /> structures representing the generic type arguments of the type where the token is in scope, or null if that type is not generic. </param> <param name="methodInstantiationContext"> An array of <see cref="T:System.RuntimeTypeHandle" /> structures objects representing the generic type arguments of the method where the token is in scope, or null if that method is not generic. </param> <exception cref="T:System.BadImageFormatException"> <paramref name="typeToken" /> is not a valid metadata token for a type in the current module. -or- <paramref name="metadataToken" /> is not a token for a type in the scope of the current module. -or- <paramref name="metadataToken" /> is a TypeSpec whose signature contains element type var or mvar. </exception> <exception cref="T:System.InvalidOperationException"> The method is called on an empty type handle. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="typeToken " />is not a valid token. </exception> </member> <member name="T:System.MTAThreadAttribute"> <summary> Indicates that the COM threading model for an application is multithreaded apartment (MTA). </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.MTAThreadAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.MTAThreadAttribute" /> class. </summary> </member> <member name="T:System.MulticastDelegate"> <summary> Represents a multicast delegate; that is, a delegate that can have more than one element in its invocation list. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.MulticastDelegate.#ctor(System.Object,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MulticastDelegate" /> class. </summary> <param name="target"> The object on which <paramref name="method" /> is defined. </param> <param name="method"> The name of the method for which a delegate is created. </param> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> </member> <member name="M:System.MulticastDelegate.#ctor(System.Type,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MulticastDelegate" /> class. </summary> <param name="target"> The type of object on which <paramref name="method" /> is defined. </param> <param name="method"> The name of the static method for which a delegate is created. </param> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> </member> <member name="M:System.MulticastDelegate.CombineImpl(System.Delegate)"> <summary> Combines this <see cref="T:System.Delegate" /> with the specified <see cref="T:System.Delegate" /> to form a new delegate. </summary> <returns> A <see cref="T:System.Delegate" /> that is the new root of the <see cref="T:System.MulticastDelegate" /> invocation list. </returns> <param name="follow"> The delegate to combine with this delegate. </param> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> </member> <member name="M:System.MulticastDelegate.Equals(System.Object)"> <summary> Determines whether this multicast delegate and the specified object are equal. </summary> <returns>true if <paramref name="obj" /> and this instance have the same invocation lists; otherwise, false. </returns> <param name="obj"> The object to compare with this instance. </param> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.MulticastDelegate.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.MulticastDelegate.GetInvocationList"> <summary> Returns the invocation list of this multicast delegate, in invocation order. </summary> <returns> An array of delegates whose invocation lists collectively match the invocation list of this instance. </returns> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.MulticastDelegate.GetMethodImpl"> <summary> Returns a static method represented by the current <see cref="T:System.MulticastDelegate" />. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> describing a static method represented by the current <see cref="T:System.MulticastDelegate" />. </returns> </member> <member name="M:System.MulticastDelegate.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with all the data needed to serialize this instance. </summary> <param name="info"> An object that holds all the data needed to serialize or deserialize this instance. </param> <param name="context"> (Reserved) The location where serialized data is stored and retrieved. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A serialization error occurred. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.MulticastDelegate.op_Equality(System.MulticastDelegate,System.MulticastDelegate)"> <summary> Determines whether two <see cref="T:System.MulticastDelegate" /> objects are equal. </summary> <returns>true if <paramref name="d1" /> and <paramref name="d2" /> have the same invocation lists; otherwise, false. </returns> <param name="d1"> The left operand. </param> <param name="d2"> The right operand. </param> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.MulticastDelegate.op_Inequality(System.MulticastDelegate,System.MulticastDelegate)"> <summary> Determines whether two <see cref="T:System.MulticastDelegate" /> objects are not equal. </summary> <returns>true if <paramref name="d1" /> and <paramref name="d2" /> do not have the same invocation lists; otherwise, false. </returns> <param name="d1"> The left operand. </param> <param name="d2"> The right operand. </param> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.MulticastDelegate.RemoveImpl(System.Delegate)"> <summary> Removes an element from the invocation list of this <see cref="T:System.MulticastDelegate" /> that is equal to the specified delegate. </summary> <returns> If <paramref name="value" /> is found in the invocation list for this instance, then a new <see cref="T:System.Delegate" /> without <paramref name="value" /> in its invocation list; otherwise, this instance with its original invocation list. </returns> <param name="value"> The delegate to search for in the invocation list. </param> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. </exception> </member> <member name="T:System.MulticastNotSupportedException"> <summary> The exception that is thrown when there is an attempt to combine two delegates based on the <see cref="T:System.Delegate" /> type instead of the <see cref="T:System.MulticastDelegate" /> type. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.MulticastNotSupportedException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.MulticastNotSupportedException" /> class. </summary> </member> <member name="M:System.MulticastNotSupportedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.MulticastNotSupportedException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.MulticastNotSupportedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.MulticastNotSupportedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.NonSerializedAttribute"> <summary> Indicates that a field of a serializable class should not be serialized. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.NonSerializedAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.NonSerializedAttribute" /> class. </summary> </member> <member name="T:System.NotFiniteNumberException"> <summary> The exception that is thrown when a floating-point value is positive infinity, negative infinity, or Not-a-Number (NaN). </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.NotFiniteNumberException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.NotFiniteNumberException" /> class. </summary> </member> <member name="M:System.NotFiniteNumberException.#ctor(System.Double)"> <summary> Initializes a new instance of the <see cref="T:System.NotFiniteNumberException" /> class with the invalid number. </summary> <param name="offendingNumber"> The value of the argument that caused the exception. </param> </member> <member name="M:System.NotFiniteNumberException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.NotFiniteNumberException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.NotFiniteNumberException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.NotFiniteNumberException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.NotFiniteNumberException.#ctor(System.String,System.Double)"> <summary> Initializes a new instance of the <see cref="T:System.NotFiniteNumberException" /> class with a specified error message and the invalid number. </summary> <param name="message"> The message that describes the error. </param> <param name="offendingNumber"> The value of the argument that caused the exception. </param> </member> <member name="M:System.NotFiniteNumberException.#ctor(System.String,System.Double,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.NotFiniteNumberException" /> class with a specified error message, the invalid number, and a reference to the inner exception that is root cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="offendingNumber"> The value of the argument that caused the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.NotFiniteNumberException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.NotFiniteNumberException" /> class with a specified error message and a reference to the inner exception that is root cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.NotFiniteNumberException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the invalid number and additional exception information. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> object is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.NotFiniteNumberException.OffendingNumber"> <summary> Gets the invalid number that is a positive infinity, a negative infinity, or Not-a-Number (NaN). </summary> <returns> The invalid number. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.NotImplementedException"> <summary> The exception that is thrown when a requested method or operation is not implemented. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.NotImplementedException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.NotImplementedException" /> class with default properties. </summary> </member> <member name="M:System.NotImplementedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.NotImplementedException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.NotImplementedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.NotImplementedException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.NotImplementedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.NotImplementedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.NotSupportedException"> <summary> The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.NotSupportedException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.NotSupportedException" /> class, setting the <see cref="P:System.Exception.Message" /> property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture. </summary> </member> <member name="M:System.NotSupportedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.NotSupportedException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.NotSupportedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.NotSupportedException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.NotSupportedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.NotSupportedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Nullable"> <summary> Supports a value type that can be assigned null like a reference type. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Nullable.Compare``1(System.Nullable{``0},System.Nullable{``0})"> <summary> Compares the relative values of two <see cref="T:System.Nullable`1" /> objects. </summary> <returns> An integer that indicates the relative values of the <paramref name="n1" /> and <paramref name="n2" /> parameters. Return Value Description Less than zero The <see cref="P:System.Nullable`1.HasValue" /> property for <paramref name="n1" /> is false, and the <see cref="P:System.Nullable`1.HasValue" /> property for <paramref name="n2" /> is true. -or- The <see cref="P:System.Nullable`1.HasValue" /> properties for <paramref name="n1" /> and <paramref name="n2" /> are true, and the value of the <see cref="P:System.Nullable`1.Value" /> property for <paramref name="n1" /> is less than the value of the <see cref="P:System.Nullable`1.Value" /> property for <paramref name="n2" />. Zero The <see cref="P:System.Nullable`1.HasValue" /> properties for <paramref name="n1" /> and <paramref name="n2" /> are false. -or- The <see cref="P:System.Nullable`1.HasValue" /> properties for <paramref name="n1" /> and <paramref name="n2" /> are true, and the value of the <see cref="P:System.Nullable`1.Value" /> property for <paramref name="n1" /> is equal to the value of the <see cref="P:System.Nullable`1.Value" /> property for <paramref name="n2" />. Greater than zero The <see cref="P:System.Nullable`1.HasValue" /> property for <paramref name="n1" /> is true, and the <see cref="P:System.Nullable`1.HasValue" /> property for <paramref name="n2" /> is false. -or- The <see cref="P:System.Nullable`1.HasValue" /> properties for <paramref name="n1" /> and <paramref name="n2" /> are true, and the value of the <see cref="P:System.Nullable`1.Value" /> property for <paramref name="n1" /> is greater than the value of the <see cref="P:System.Nullable`1.Value" /> property for <paramref name="n2" />. </returns> <param name="n1"> A <see cref="T:System.Nullable`1" /> object. </param> <param name="n2"> A <see cref="T:System.Nullable`1" /> object. </param> <typeparam name="T"> The underlying value type of the <paramref name="n1" /> and <paramref name="n2" /> parameters. </typeparam> </member> <member name="M:System.Nullable.Equals``1(System.Nullable{``0},System.Nullable{``0})"> <summary> Indicates whether two specified <see cref="T:System.Nullable`1" /> objects are equal. </summary> <returns>true if the <paramref name="n1" /> parameter is equal to the <paramref name="n2" /> parameter; otherwise, false. The return value depends on the <see cref="P:System.Nullable`1.HasValue" /> and <see cref="P:System.Nullable`1.Value" /> properties of the two parameters that are compared. Return Value Description true The <see cref="P:System.Nullable`1.HasValue" /> properties for <paramref name="n1" /> and <paramref name="n2" /> are false. -or- The <see cref="P:System.Nullable`1.HasValue" /> properties for <paramref name="n1" /> and <paramref name="n2" /> are true, and the <see cref="P:System.Nullable`1.Value" /> properties of the parameters are equal. false The <see cref="P:System.Nullable`1.HasValue" /> property is true for one parameter and false for the other parameter. -or- The <see cref="P:System.Nullable`1.HasValue" /> properties for <paramref name="n1" /> and <paramref name="n2" /> are true, and the <see cref="P:System.Nullable`1.Value" /> properties of the parameters are unequal. </returns> <param name="n1"> A <see cref="T:System.Nullable`1" /> object. </param> <param name="n2"> A <see cref="T:System.Nullable`1" /> object. </param> <typeparam name="T"> The underlying value type of the <paramref name="n1" /> and <paramref name="n2" /> parameters. </typeparam> </member> <member name="M:System.Nullable.GetUnderlyingType(System.Type)"> <summary> Returns the underlying type argument of the specified nullable type. </summary> <returns> The type argument of the <paramref name="nullableType" /> parameter, if the <paramref name="nullableType" /> parameter is a closed generic nullable type; otherwise, null. </returns> <param name="nullableType"> A <see cref="T:System.Type" /> object that describes a closed generic nullable type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="nullableType" /> is null. </exception> </member> <member name="T:System.Nullable`1"> <summary> Represents an object whose underlying type is a value type that can also be assigned null like a reference type. </summary> <typeparam name="T"> The underlying value type of the <see cref="T:System.Nullable`1" /> generic type. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.Nullable`1.#ctor(`0)"> <summary> Initializes a new instance of the <see cref="T:System.Nullable`1" /> structure to the specified value. </summary> <param name="value"> A value type. </param> </member> <member name="M:System.Nullable`1.Equals(System.Object)"> <summary> Indicates whether the current <see cref="T:System.Nullable`1" /> object is equal to a specified object. </summary> <returns>true if the <paramref name="other" /> parameter is equal to the current <see cref="T:System.Nullable`1" /> object; otherwise, false. This table describes how equality is defined for the compared values: Return Value Description true The <see cref="P:System.Nullable`1.HasValue" /> property is false, and the <paramref name="other" /> parameter is null. That is, two null values are equal by definition. -or- The <see cref="P:System.Nullable`1.HasValue" /> property is true, and the value returned by the <see cref="P:System.Nullable`1.Value" /> property is equal to the <paramref name="other" /> parameter. false The <see cref="P:System.Nullable`1.HasValue" /> property for the current <see cref="T:System.Nullable`1" /> structure is true, and the <paramref name="other" /> parameter is null. -or- The <see cref="P:System.Nullable`1.HasValue" /> property for the current <see cref="T:System.Nullable`1" /> structure is false, and the <paramref name="other" /> parameter is not null. -or- The <see cref="P:System.Nullable`1.HasValue" /> property for the current <see cref="T:System.Nullable`1" /> structure is true, and the value returned by the <see cref="P:System.Nullable`1.Value" /> property is not equal to the <paramref name="other" /> parameter. </returns> <param name="other"> An object. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Nullable`1.GetHashCode"> <summary> Retrieves the hash code of the object returned by the <see cref="P:System.Nullable`1.Value" /> property. </summary> <returns> The hash code of the object returned by the <see cref="P:System.Nullable`1.Value" /> property if the <see cref="P:System.Nullable`1.HasValue" /> property is true, or zero if the <see cref="P:System.Nullable`1.HasValue" /> property is false. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Nullable`1.GetValueOrDefault"> <summary> Retrieves the value of the current <see cref="T:System.Nullable`1" /> object, or the object's default value. </summary> <returns> The value of the <see cref="P:System.Nullable`1.Value" /> property if the <see cref="P:System.Nullable`1.HasValue" /> property is true; otherwise, the default value of the current <see cref="T:System.Nullable`1" /> object. The type of the default value is the type argument of the current <see cref="T:System.Nullable`1" /> object, and the value of the default value consists solely of binary zeroes. </returns> </member> <member name="M:System.Nullable`1.GetValueOrDefault(`0)"> <summary> Retrieves the value of the current <see cref="T:System.Nullable`1" /> object, or the specified default value. </summary> <returns> The value of the <see cref="P:System.Nullable`1.Value" /> property if the <see cref="P:System.Nullable`1.HasValue" /> property is true; otherwise, the <paramref name="defaultValue" /> parameter. </returns> <param name="defaultValue"> A value to return if the <see cref="P:System.Nullable`1.HasValue" /> property is false. </param> </member> <member name="P:System.Nullable`1.HasValue"> <summary> Gets a value indicating whether the current <see cref="T:System.Nullable`1" /> object has a value. </summary> <returns>true if the current <see cref="T:System.Nullable`1" /> object has a value; false if the current <see cref="T:System.Nullable`1" /> object has no value. </returns> </member> <member name="M:System.Nullable`1.op_Explicit(System.Nullable{`0})~`0"> <summary> Returns the value of a specified <see cref="T:System.Nullable`1" /> value. </summary> <returns> The value of the <see cref="P:System.Nullable`1.Value" /> property for the <paramref name="value" /> parameter. </returns> <param name="value"> A <see cref="T:System.Nullable`1" /> value. </param> </member> <member name="M:System.Nullable`1.op_Implicit(`0)~System.Nullable{`0}"> <summary> Creates a new <see cref="T:System.Nullable`1" /> object initialized to a specified value. </summary> <returns> A <see cref="T:System.Nullable`1" /> object whose <see cref="P:System.Nullable`1.Value" /> property is initialized with the <paramref name="value" /> parameter. </returns> <param name="value"> A value type. </param> </member> <member name="M:System.Nullable`1.ToString"> <summary> Returns the text representation of the value of the current <see cref="T:System.Nullable`1" /> object. </summary> <returns> The text representation of the value of the current <see cref="T:System.Nullable`1" /> object if the <see cref="P:System.Nullable`1.HasValue" /> property is true, or an empty string ("") if the <see cref="P:System.Nullable`1.HasValue" /> property is false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Nullable`1.Value"> <summary> Gets the value of the current <see cref="T:System.Nullable`1" /> value. </summary> <returns> The value of the current <see cref="T:System.Nullable`1" /> object if the <see cref="P:System.Nullable`1.HasValue" /> property is true. An exception is thrown if the <see cref="P:System.Nullable`1.HasValue" /> property is false. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="P:System.Nullable`1.HasValue" /> property is false. </exception> </member> <member name="T:System.NullReferenceException"> <summary> The exception that is thrown when there is an attempt to dereference a null object reference. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.NullReferenceException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.NullReferenceException" /> class, setting the <see cref="P:System.Exception.Message" /> property of the new instance to a system-supplied message that describes the error, such as "The value 'null' was found where an instance of an object was required." This message takes into account the current system culture. </summary> </member> <member name="M:System.NullReferenceException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.NullReferenceException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.NullReferenceException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.NullReferenceException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.NullReferenceException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.NullReferenceException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Object"> <summary> Supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Object.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Object" /> class. </summary> </member> <member name="M:System.Object.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> <exception cref="T:System.NullReferenceException"> The <paramref name="obj" /> parameter is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Object.Equals(System.Object,System.Object)"> <summary> Determines whether the specified <see cref="T:System.Object" /> instances are considered equal. </summary> <param name="objA"> The first <see cref="T:System.Object" /> to compare. </param> <param name="objB"> The second <see cref="T:System.Object" /> to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Object.Finalize"> <summary> Allows an <see cref="T:System.Object" /> to attempt to free resources and perform other cleanup operations before the <see cref="T:System.Object" /> is reclaimed by garbage collection. </summary> </member> <member name="M:System.Object.GetHashCode"> <summary> Serves as a hash function for a particular type. </summary> <returns> A hash code for the current <see cref="T:System.Object" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Object.GetType"> <summary> Gets the <see cref="T:System.Type" /> of the current instance. </summary> <returns> The <see cref="T:System.Type" /> instance that represents the exact runtime type of the current instance. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Object.MemberwiseClone"> <summary> Creates a shallow copy of the current <see cref="T:System.Object" />. </summary> <returns> A shallow copy of the current <see cref="T:System.Object" />. </returns> </member> <member name="M:System.Object.ReferenceEquals(System.Object,System.Object)"> <summary> Determines whether the specified <see cref="T:System.Object" /> instances are the same instance. </summary> <returns>true if <paramref name="objA" /> is the same instance as <paramref name="objB" /> or if both are null references; otherwise, false. </returns> <param name="objA"> The first <see cref="T:System.Object" /> to compare. </param> <param name="objB"> The second <see cref="T:System.Object" /> to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Object.ToString"> <summary> Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />. </summary> <returns> A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.ObjectDisposedException"> <summary> The exception that is thrown when an operation is performed on a disposed object. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ObjectDisposedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.ObjectDisposedException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.ObjectDisposedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ObjectDisposedException" /> class with a string containing the name of the disposed object. </summary> <param name="objectName"> A string containing the name of the disposed object. </param> </member> <member name="M:System.ObjectDisposedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.ObjectDisposedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If <paramref name="innerException" /> is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.ObjectDisposedException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ObjectDisposedException" /> class with the specified object name and message. </summary> <param name="objectName"> The name of the disposed object. </param> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.ObjectDisposedException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Retrieves the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the parameter name and additional exception information. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.ObjectDisposedException.Message"> <summary> Gets the message that describes the error. </summary> <returns> A string that describes the error. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.ObjectDisposedException.ObjectName"> <summary> Gets the name of the disposed object. </summary> <returns> A string containing the name of the disposed object. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.ObsoleteAttribute"> <summary> Marks the program elements that are no longer in use. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.ObsoleteAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ObsoleteAttribute" /> class with default properties. </summary> </member> <member name="M:System.ObsoleteAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ObsoleteAttribute" /> class with a specified workaround message. </summary> <param name="message"> The text string that describes alternative workarounds. </param> </member> <member name="M:System.ObsoleteAttribute.#ctor(System.String,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.ObsoleteAttribute" /> class with a workaround message and a Boolean value indicating whether the obsolete element usage is considered an error. </summary> <param name="message"> The text string that describes alternative workarounds. </param> <param name="error"> The Boolean value that indicates whether the obsolete element usage is considered an error. </param> </member> <member name="P:System.ObsoleteAttribute.IsError"> <summary> Gets a Boolean value indicating whether the compiler will treat usage of the obsolete program element as an error. </summary> <returns>true if the obsolete element usage is considered an error; otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.ObsoleteAttribute.Message"> <summary> Gets the workaround message, including a description of the alternative program elements. </summary> <returns> The workaround text string. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.OperatingSystem"> <summary> Represents information about an operating system, such as the version and platform identifier. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.OperatingSystem.#ctor(System.PlatformID,System.Version)"> <summary> Initializes a new instance of the <see cref="T:System.OperatingSystem" /> class, using the specified platform identifier value and version object. </summary> <param name="platform"> One of the <see cref="T:System.PlatformID" /> values that indicates the operating system platform. </param> <param name="version"> A <see cref="T:System.Version" /> object that indicates the version of the operating system. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="version" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="platform" /> is not a <see cref="T:System.PlatformID" /> enumeration value. </exception> </member> <member name="M:System.OperatingSystem.Clone"> <summary> Creates an <see cref="T:System.OperatingSystem" /> object that is identical to this instance. </summary> <returns> An <see cref="T:System.OperatingSystem" /> object that is a copy of this instance. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.OperatingSystem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data necessary to deserialize this instance. </summary> <param name="info"> The object to populate with serialization information. </param> <param name="context"> The place to store and retrieve serialized data. Reserved for future use. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.OperatingSystem.Platform"> <summary> Gets a <see cref="T:System.PlatformID" /> enumeration value that identifies the operating system platform. </summary> <returns> One of the <see cref="T:System.PlatformID" /> values. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.OperatingSystem.ServicePack"> <summary> Gets the service pack version represented by this <see cref="T:System.OperatingSystem" /> object. </summary> <returns> The service pack version, if service packs are supported and at least one is installed; otherwise, an empty string (""). </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.OperatingSystem.ToString"> <summary> Converts the value of this <see cref="T:System.OperatingSystem" /> object to its equivalent string representation. </summary> <returns> The string representation of the values returned by the <see cref="P:System.OperatingSystem.Platform" />, <see cref="P:System.OperatingSystem.Version" />, and <see cref="P:System.OperatingSystem.ServicePack" /> properties. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.OperatingSystem.Version"> <summary> Gets a <see cref="T:System.Version" /> object that identifies the operating system. </summary> <returns> A <see cref="T:System.Version" /> object that describes the major version, minor version, build, and revision numbers for the operating system. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.OperatingSystem.VersionString"> <summary> Gets the concatenated string representation of the platform identifier, version, and service pack that are currently installed on the operating system. </summary> <returns> The string representation of the values returned by the <see cref="P:System.OperatingSystem.Platform" />, <see cref="P:System.OperatingSystem.Version" />, and <see cref="P:System.OperatingSystem.ServicePack" /> properties. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.OperationCanceledException"> <summary> The exception that is thrown in a thread upon cancellation of an operation that the thread was executing. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.OperationCanceledException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.OperationCanceledException" /> class with a system-supplied error message. </summary> </member> <member name="M:System.OperationCanceledException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.OperationCanceledException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.OperationCanceledException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.OperationCanceledException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. </param> </member> <member name="M:System.OperationCanceledException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.OperationCanceledException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.OutOfMemoryException"> <summary> The exception that is thrown when there is not enough memory to continue the execution of a program. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.OutOfMemoryException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.OutOfMemoryException" /> class. </summary> </member> <member name="M:System.OutOfMemoryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.OutOfMemoryException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.OutOfMemoryException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.OutOfMemoryException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.OutOfMemoryException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.OutOfMemoryException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.OverflowException"> <summary> The exception that is thrown when an arithmetic, casting, or conversion operation in a checked context results in an overflow. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.OverflowException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.OverflowException" /> class. </summary> </member> <member name="M:System.OverflowException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.OverflowException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.OverflowException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.OverflowException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.OverflowException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.OverflowException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.ParamArrayAttribute"> <summary> Indicates that the method will allow a variable number of arguments in its invocation. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.ParamArrayAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ParamArrayAttribute" /> class with default properties. </summary> </member> <member name="T:System.PlatformID"> <summary> Identifies the operating system, or platform, supported by an assembly. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.PlatformID.Win32S"> <summary> The operating system is Win32s. Win32s is a layer that runs on 16-bit versions of Windows to provide access to 32-bit applications. </summary> </member> <member name="F:System.PlatformID.Win32Windows"> <summary> The operating system is Windows 95 or later. </summary> </member> <member name="F:System.PlatformID.Win32NT"> <summary> The operating system is Windows NT or later. </summary> </member> <member name="F:System.PlatformID.WinCE"> <summary> The operating system is Windows CE. </summary> </member> <member name="F:System.PlatformID.Unix"> <summary> The operating system is Unix. </summary> </member> <member name="F:System.PlatformID.Xbox"> <summary> The development platform is Xbox 360. </summary> </member> <member name="F:System.PlatformID.MacOSX"> <summary> The operating system is Macintosh. </summary> </member> <member name="T:System.PlatformNotSupportedException"> <summary> The exception that is thrown when a feature does not run on a particular platform. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.PlatformNotSupportedException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.PlatformNotSupportedException" /> class with default properties. </summary> </member> <member name="M:System.PlatformNotSupportedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.PlatformNotSupportedException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.PlatformNotSupportedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.PlatformNotSupportedException" /> class with a specified error message. </summary> <param name="message"> The text message that explains the reason for the exception. </param> </member> <member name="M:System.PlatformNotSupportedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.PlatformNotSupportedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Predicate`1"> <summary> Represents the method that defines a set of criteria and determines whether the specified object meets those criteria. </summary> <returns>true if <paramref name="obj" /> meets the criteria defined within the method represented by this delegate; otherwise, false. </returns> <param name="obj"> The object to compare against the criteria defined within the method represented by this delegate. </param> <typeparam name="T"> The type of the object to compare. </typeparam> <filterpriority>2</filterpriority> </member> <member name="T:System.Random"> <summary> Represents a pseudo-random number generator, a device that produces a sequence of numbers that meet certain statistical requirements for randomness. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Random.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Random" /> class, using a time-dependent default seed value. </summary> </member> <member name="M:System.Random.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Random" /> class, using the specified seed value. </summary> <param name="Seed"> A number used to calculate a starting value for the pseudo-random number sequence. If a negative number is specified, the absolute value of the number is used. </param> <exception cref="T:System.OverflowException"> <paramref name="Seed" /> is <see cref="F:System.Int32.MinValue" />, which causes an overflow when its absolute value is calculated. </exception> </member> <member name="M:System.Random.Next"> <summary> Returns a nonnegative random number. </summary> <returns> A 32-bit signed integer greater than or equal to zero and less than <see cref="F:System.Int32.MaxValue" />. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Random.Next(System.Int32)"> <summary> Returns a nonnegative random number less than the specified maximum. </summary> <returns> A 32-bit signed integer greater than or equal to zero, and less than <paramref name="maxValue" />; that is, the range of return values ordinarily includes zero but not <paramref name="maxValue" />. However, if <paramref name="maxValue" /> equals zero, <paramref name="maxValue" /> is returned. </returns> <param name="maxValue"> The exclusive upper bound of the random number to be generated. <paramref name="maxValue" /> must be greater than or equal to zero. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="maxValue" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Random.Next(System.Int32,System.Int32)"> <summary> Returns a random number within a specified range. </summary> <returns> A 32-bit signed integer greater than or equal to <paramref name="minValue" /> and less than <paramref name="maxValue" />; that is, the range of return values includes <paramref name="minValue" /> but not <paramref name="maxValue" />. If <paramref name="minValue" /> equals <paramref name="maxValue" />, <paramref name="minValue" /> is returned. </returns> <param name="minValue"> The inclusive lower bound of the random number returned. </param> <param name="maxValue"> The exclusive upper bound of the random number returned. <paramref name="maxValue" /> must be greater than or equal to <paramref name="minValue" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="minValue" /> is greater than <paramref name="maxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Random.NextBytes(System.Byte[])"> <summary> Fills the elements of a specified array of bytes with random numbers. </summary> <param name="buffer"> An array of bytes to contain random numbers. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Random.NextDouble"> <summary> Returns a random number between 0.0 and 1.0. </summary> <returns> A double-precision floating point number greater than or equal to 0.0, and less than 1.0. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Random.Sample"> <summary> Returns a random number between 0.0 and 1.0. </summary> <returns> A double-precision floating point number greater than or equal to 0.0, and less than 1.0. </returns> </member> <member name="T:System.RankException"> <summary> The exception that is thrown when an array with the wrong number of dimensions is passed to a method. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.RankException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.RankException" /> class. </summary> </member> <member name="M:System.RankException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.RankException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.RankException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.RankException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. </param> </member> <member name="M:System.RankException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.RankException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.ResolveEventArgs"> <summary> Provides data for the <see cref="E:System.AppDomain.TypeResolve" />, <see cref="E:System.AppDomain.ResourceResolve" />, and <see cref="E:System.AppDomain.AssemblyResolve" /> events. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ResolveEventArgs.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.ResolveEventArgs" /> class. </summary> <param name="name"> The name of an item to resolve. </param> </member> <member name="P:System.ResolveEventArgs.Name"> <summary> Gets the name of the item to resolve. </summary> <returns> The name of the item to resolve. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.ResolveEventHandler"> <summary> Represents the method that handles the <see cref="E:System.AppDomain.TypeResolve" />, <see cref="E:System.AppDomain.ResourceResolve" />, and <see cref="E:System.AppDomain.AssemblyResolve" /> events of an <see cref="T:System.AppDomain" />. </summary> <returns> The <see cref="T:System.Reflection.Assembly" /> that resolves the type, assembly, or resource; or null if the assembly cannot be resolved. </returns> <param name="sender"> The source of the event. </param> <param name="args"> A <see cref="T:System.ResolveEventArgs" /> that contains the event data. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.RuntimeArgumentHandle"> <summary> References a variable-length argument list. </summary> <filterpriority>2</filterpriority> </member> <member name="T:System.RuntimeFieldHandle"> <summary> Represents a field using an internal metadata token. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeFieldHandle.Equals(System.Object)"> <summary> Indicates whether the current instance is equal to the specified object. </summary> <returns>true if <paramref name="obj" /> is a <see cref="T:System.RuntimeFieldHandle" /> and equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The object to compare to the current instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeFieldHandle.Equals(System.RuntimeFieldHandle)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.RuntimeFieldHandle" />. </summary> <returns>true if the value of <paramref name="handle" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="handle"> The <see cref="T:System.RuntimeFieldHandle" /> to compare to the current instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeFieldHandle.GetHashCode"> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeFieldHandle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data necessary to deserialize the field represented by the current instance. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to populate with serialization information. </param> <param name="context"> (Reserved) The place to store and retrieve serialized data. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <see cref="P:System.RuntimeFieldHandle.Value" /> property of the current instance is not a valid handle. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeFieldHandle.op_Equality(System.RuntimeFieldHandle,System.RuntimeFieldHandle)"> <summary> Indicates whether two <see cref="T:System.RuntimeFieldHandle" /> structures are equal. </summary> <returns>true if <paramref name="left" /> is equal to <paramref name="right" />; otherwise, false. </returns> <param name="left"> The <see cref="T:System.RuntimeFieldHandle" /> to compare to <paramref name="right" />. </param> <param name="right"> The <see cref="T:System.RuntimeFieldHandle" /> to compare to <paramref name="left" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.RuntimeFieldHandle.op_Inequality(System.RuntimeFieldHandle,System.RuntimeFieldHandle)"> <summary> Indicates whether two <see cref="T:System.RuntimeFieldHandle" /> structures are not equal. </summary> <returns>true if <paramref name="left" /> is not equal to <paramref name="right" />; otherwise, false. </returns> <param name="left"> The <see cref="T:System.RuntimeFieldHandle" /> to compare to <paramref name="right" />. </param> <param name="right"> The <see cref="T:System.RuntimeFieldHandle" /> to compare to <paramref name="left" />. </param> <filterpriority>3</filterpriority> </member> <member name="P:System.RuntimeFieldHandle.Value"> <summary> Gets a handle to the field represented by the current instance. </summary> <returns> An <see cref="T:System.IntPtr" /> that contains the handle to the field represented by the current instance. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.RuntimeMethodHandle"> <summary> <see cref="T:System.RuntimeMethodHandle" /> is a handle to the internal metadata representation of a method. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeMethodHandle.Equals(System.Object)"> <summary> Indicates whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is a <see cref="T:System.RuntimeMethodHandle" /> and equal to the value of this instance; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.Object" /> to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle)"> <summary> Indicates whether this instance is equal to a specified <see cref="T:System.RuntimeMethodHandle" />. </summary> <returns>true if <paramref name="handle" /> is equal to the value of this instance; otherwise, false. </returns> <param name="handle"> A <see cref="T:System.RuntimeMethodHandle" /> to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeMethodHandle.GetFunctionPointer"> <summary> Obtains a pointer to the method represented by this instance. </summary> <returns> A pointer to the method represented by this instance. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the necessary permission to perform this operation. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeMethodHandle.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeMethodHandle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data necessary to deserialize the field represented by this instance. </summary> <param name="info"> The object to populate with serialization information. </param> <param name="context"> (Reserved) The place to store and retrieve serialized data. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> <see cref="P:System.RuntimeMethodHandle.Value" /> is invalid. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeMethodHandle.op_Equality(System.RuntimeMethodHandle,System.RuntimeMethodHandle)"> <summary> Indicates whether two instances of <see cref="T:System.RuntimeMethodHandle" /> are equal. </summary> <returns>true if the value of <paramref name="left" /> is equal to the value of <paramref name="right" />; otherwise, false. </returns> <param name="left"> A <see cref="T:System.RuntimeMethodHandle" /> to compare to <paramref name="right" />. </param> <param name="right"> A <see cref="T:System.RuntimeMethodHandle" /> to compare to <paramref name="left" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.RuntimeMethodHandle.op_Inequality(System.RuntimeMethodHandle,System.RuntimeMethodHandle)"> <summary> Indicates whether two instances of <see cref="T:System.RuntimeMethodHandle" /> are not equal. </summary> <returns>true if the value of <paramref name="left" /> is unequal to the value of <paramref name="right" />; otherwise, false. </returns> <param name="left"> A <see cref="T:System.RuntimeMethodHandle" /> to compare to <paramref name="right" />. </param> <param name="right"> A <see cref="T:System.RuntimeMethodHandle" /> to compare to <paramref name="left" />. </param> <filterpriority>3</filterpriority> </member> <member name="P:System.RuntimeMethodHandle.Value"> <summary> Gets the value of this instance. </summary> <returns> A <see cref="T:System.RuntimeMethodHandle" /> that is the internal metadata representation of a method. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.RuntimeTypeHandle"> <summary> Represents a type using an internal metadata token. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeTypeHandle.Equals(System.Object)"> <summary> Indicates whether the specified object is equal to the current <see cref="T:System.RuntimeTypeHandle" /> structure. </summary> <returns>true if <paramref name="obj" /> is a <see cref="T:System.RuntimeTypeHandle" /> structure and is equal to the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare to the current instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeTypeHandle.Equals(System.RuntimeTypeHandle)"> <summary> Indicates whether the specified <see cref="T:System.RuntimeTypeHandle" /> structure is equal to the current <see cref="T:System.RuntimeTypeHandle" /> structure. </summary> <returns>true if the value of <paramref name="handle" /> is equal to the value of this instance; otherwise, false. </returns> <param name="handle"> The <see cref="T:System.RuntimeTypeHandle" /> structure to compare to the current instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeTypeHandle.GetHashCode"> <summary> Returns the hash code for the current instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeTypeHandle.GetModuleHandle"> <summary> Gets a handle to the module that contains the type represented by the current instance. </summary> <returns> A <see cref="T:System.ModuleHandle" /> structure representing a handle to the module that contains the type represented by the current instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.RuntimeTypeHandle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data necessary to deserialize the type represented by the current instance. </summary> <param name="info"> The object to be populated with serialization information. </param> <param name="context"> (Reserved) The location where serialized data will be stored and retrieved. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> <see cref="P:System.RuntimeTypeHandle.Value" /> is invalid. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.RuntimeTypeHandle.op_Equality(System.Object,System.RuntimeTypeHandle)"> <summary> Indicates whether an object and a <see cref="T:System.RuntimeTypeHandle" /> structure are equal. </summary> <returns>true if <paramref name="left" /> is a <see cref="T:System.RuntimeTypeHandle" /> structure and is equal to <paramref name="right" />; otherwise, false. </returns> <param name="left"> An object to compare to <paramref name="right" />. </param> <param name="right"> A <see cref="T:System.RuntimeTypeHandle" /> structure to compare to <paramref name="left" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.RuntimeTypeHandle.op_Equality(System.RuntimeTypeHandle,System.Object)"> <summary> Indicates whether a <see cref="T:System.RuntimeTypeHandle" /> structure is equal to an object. </summary> <returns>true if <paramref name="right" /> is a <see cref="T:System.RuntimeTypeHandle" /> and is equal to <paramref name="left" />; otherwise, false. </returns> <param name="left"> A <see cref="T:System.RuntimeTypeHandle" /> structure to compare to <paramref name="right" />. </param> <param name="right"> An object to compare to <paramref name="left" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.RuntimeTypeHandle.op_Inequality(System.Object,System.RuntimeTypeHandle)"> <summary> Indicates whether an object and a <see cref="T:System.RuntimeTypeHandle" /> structure are not equal. </summary> <returns>true if <paramref name="left" /> is a <see cref="T:System.RuntimeTypeHandle" /> and is not equal to <paramref name="right" />; otherwise, false. </returns> <param name="left"> An object to compare to <paramref name="right" />. </param> <param name="right"> A <see cref="T:System.RuntimeTypeHandle" /> structure to compare to <paramref name="left" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.RuntimeTypeHandle.op_Inequality(System.RuntimeTypeHandle,System.Object)"> <summary> Indicates whether a <see cref="T:System.RuntimeTypeHandle" /> structure is not equal to an object. </summary> <returns>true if <paramref name="right" /> is a <see cref="T:System.RuntimeTypeHandle" /> structure and is not equal to <paramref name="left" />; otherwise, false. </returns> <param name="left"> A <see cref="T:System.RuntimeTypeHandle" /> structure to compare to <paramref name="right" />. </param> <param name="right"> An object to compare to <paramref name="left" />. </param> <filterpriority>3</filterpriority> </member> <member name="P:System.RuntimeTypeHandle.Value"> <summary> Gets a handle to the type represented by this instance. </summary> <returns> A handle to the type represented by this instance. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.SByte"> <summary> Represents an 8-bit signed integer. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="obj" />. Return Value Description Less than zero This instance is less than <paramref name="obj" />. Zero This instance is equal to <paramref name="obj" />. Greater than zero This instance is greater than <paramref name="obj" />. -or- <paramref name="obj" /> is null. </returns> <param name="obj"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="obj" /> is not an <see cref="T:System.SByte" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.SByte.CompareTo(System.SByte)"> <summary> Compares this instance to a specified 8-bit signed integer and returns an indication of their relative values. </summary> <returns> A signed integer that indicates the relative order of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. </returns> <param name="value"> An 8-bit signed integer to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.SByte.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.SByte" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.SByte.Equals(System.SByte)"> <summary> Returns a value indicating whether this instance is equal to a specified <see cref="T:System.SByte" /> value. </summary> <returns>true if <paramref name="obj" /> has the same value as this instance; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.SByte" /> value to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.SByte.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.SByte.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.SByte" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.SByte" />. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.SByte.MaxValue"> <summary> Represents the largest possible value of <see cref="T:System.SByte" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.SByte.MinValue"> <summary> Represents the smallest possible value of <see cref="T:System.SByte" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.Parse(System.String)"> <summary> Converts the string representation of a number to its 8-bit signed integer equivalent. </summary> <returns> An 8-bit signed integer equivalent to the number contained in the <paramref name="s" /> parameter. </returns> <param name="s"> A string representing a number to convert. </param> <exception cref="T:System.ArgumentException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> does not consist of an optional sign followed by a sequence of digits (zero through nine). </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its 8-bit signed integer equivalent. </summary> <returns> An 8-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string containing a number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number that is in a specified style and culture-specific format to its 8-bit signed equivalent. </summary> <returns> An 8-bit signed byte value that is equivalent to the number specified in the <paramref name="s" /> parameter. </returns> <param name="s"> A string that contains the number to convert. </param> <param name="style"> A bitwise combination of the <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format for <paramref name="s" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format that is compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified culture-specific format to its 8-bit signed integer equivalent. </summary> <returns> An 8-bit signed integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string representing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is unused. </param> </member> <member name="M:System.SByte.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Byte" />. </returns> <param name="provider"> This parameter is unused. </param> </member> <member name="M:System.SByte.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Char" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.SByte.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to do so throws an <see cref="T:System.InvalidCastException" />. </summary> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.SByte.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Decimal" />. </returns> <param name="provider"> This parameter is unused. </param> </member> <member name="M:System.SByte.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Double" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.SByte.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.SByte.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.SByte.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.SByte.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.SByte.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Single" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.SByte.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an object of type <paramref name="type" />. </returns> <param name="type"> The <see cref="T:System.Type" /> to which to convert this <see cref="T:System.SByte" /> value. </param> <param name="provider"> A <see cref="T:System.IFormatProvider" /> implementation that provides information about the format of the returned value. </param> </member> <member name="M:System.SByte.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.SByte.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.SByte.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.SByte.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance, consisting of a negative sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance, as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.ToString(System.String)"> <summary> Converts the numeric value of this instance to its equivalent string representation, using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A numeric format string. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.ToString(System.String,System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A numeric format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.SByte@)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 8-bit signed integer equivalent. A return code indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string representing a number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="result"> When this method returns, contains the 8-bit signed integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in a format compliant with <paramref name="style" />, or represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.SByte.TryParse(System.String,System.SByte@)"> <summary> Converts the string representation of a number to its 8-bit signed integer equivalent. A return value indicates whether the conversion succeeded. </summary> <returns>true if s was converted successfully; otherwise, false. </returns> <param name="s"> A string that contains a number to convert. </param> <param name="result"> When this method returns, contains the 8-bit signed integer value that is equivalent to the number contained in <paramref name="s" /> if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in the correct format, or represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.SerializableAttribute"> <summary> Indicates that a class can be serialized. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.SerializableAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.SerializableAttribute" /> class. </summary> </member> <member name="T:System.Single"> <summary> Represents a single-precision floating-point number. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified object. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. -or- This instance is not a number (<see cref="F:System.Single.NaN" />) and <paramref name="value" /> is a number. Zero This instance is equal to <paramref name="value" />. -or- This instance and value are both not a number (<see cref="F:System.Single.NaN" />), <see cref="F:System.Single.PositiveInfinity" />, or <see cref="F:System.Single.NegativeInfinity" />. Greater than zero This instance is greater than <paramref name="value" />. -or- This instance is a number and <paramref name="value" /> is not a number (<see cref="F:System.Single.NaN" />). -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.Single" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Single.CompareTo(System.Single)"> <summary> Compares this instance to a specified single-precision floating-point number and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified single-precision floating-point number. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. -or- This instance is not a number (<see cref="F:System.Single.NaN" />) and <paramref name="value" /> is a number. Zero This instance is equal to <paramref name="value" />. -or- Both this instance and <paramref name="value" /> are not a number (<see cref="F:System.Single.NaN" />), <see cref="F:System.Single.PositiveInfinity" />, or <see cref="F:System.Single.NegativeInfinity" />. Greater than zero This instance is greater than <paramref name="value" />. -or- This instance is a number and <paramref name="value" /> is not a number (<see cref="F:System.Single.NaN" />). </returns> <param name="value"> A single-precision floating-point number to compare. </param> <filterpriority>2</filterpriority> </member> <member name="F:System.Single.Epsilon"> <summary> Represents the smallest positive <see cref="T:System.Single" /> value greater than zero. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.Single" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Single.Equals(System.Single)"> <summary> Returns a value indicating whether this instance and a specified <see cref="T:System.Single" /> object represent the same value. </summary> <returns>true if <paramref name="obj" /> is equal to this instance; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.Single" /> object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Single.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Single.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.Single" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.Single" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Single.IsInfinity(System.Single)"> <summary> Returns a value indicating whether the specified number evaluates to negative or positive infinity. </summary> <returns>true if <paramref name="f" /> evaluates to <see cref="F:System.Single.PositiveInfinity" /> or <see cref="F:System.Single.NegativeInfinity" />; otherwise, false. </returns> <param name="f"> A single-precision floating-point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.IsNaN(System.Single)"> <summary> Returns a value indicating whether the specified number evaluates to not a number (<see cref="F:System.Single.NaN" />). </summary> <returns>true if <paramref name="f" /> evaluates to not a number (<see cref="F:System.Single.NaN" />); otherwise, false. </returns> <param name="f"> A single-precision floating-point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.IsNegativeInfinity(System.Single)"> <summary> Returns a value indicating whether the specified number evaluates to negative infinity. </summary> <returns>true if <paramref name="f" /> evaluates to <see cref="F:System.Single.NegativeInfinity" />; otherwise, false. </returns> <param name="f"> A single-precision floating-point number. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.IsPositiveInfinity(System.Single)"> <summary> Returns a value indicating whether the specified number evaluates to positive infinity. </summary> <returns>true if <paramref name="f" /> evaluates to <see cref="F:System.Single.PositiveInfinity" />; otherwise, false. </returns> <param name="f"> A single-precision floating-point number. </param> <filterpriority>1</filterpriority> </member> <member name="F:System.Single.MaxValue"> <summary> Represents the largest possible value of <see cref="T:System.Single" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Single.MinValue"> <summary> Represents the smallest possible value of <see cref="T:System.Single" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Single.NaN"> <summary> Represents not a number (NaN). This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Single.NegativeInfinity"> <summary> Represents negative infinity. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.Parse(System.String)"> <summary> Converts the string representation of a number to its single-precision floating-point number equivalent. </summary> <returns> A single-precision floating-point number equivalent to the numeric value or symbol specified in <paramref name="s" />. </returns> <param name="s"> A string representing a number to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its single-precision floating-point number equivalent. </summary> <returns> A single-precision floating-point number equivalent to the numeric value or symbol specified in <paramref name="s" />. </returns> <param name="s"> A string representing a number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Float" /> combined with <see cref="F:System.Globalization.NumberStyles.AllowThousands" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its single-precision floating-point number equivalent. </summary> <returns> A single-precision floating-point number equivalent to the numeric value or symbol specified in <paramref name="s" />. </returns> <param name="s"> A string representing a number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Float" /> combined with <see cref="F:System.Globalization.NumberStyles.AllowThousands" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not a numeric value. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified culture-specific format to its single-precision floating-point number equivalent. </summary> <returns> A single-precision floating-point number equivalent to the numeric value or symbol specified in <paramref name="s" />. </returns> <param name="s"> A string representing a number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not a number in a valid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.Single.PositiveInfinity"> <summary> Represents positive infinity. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Byte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Single.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.Single.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Decimal" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Double" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.SByte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to <paramref name="type" />. </returns> <param name="type"> The type to which to convert this <see cref="T:System.Single" /> value. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that supplies information about the format of the returned value. </param> </member> <member name="M:System.Single.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.Single.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.ToString(System.String)"> <summary> Converts the numeric value of this instance to its equivalent string representation, using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A numeric format string. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.ToString(System.String,System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A numeric format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Single@)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its single-precision floating-point number equivalent. A return code indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string representing a number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Float" /> combined with <see cref="F:System.Globalization.NumberStyles.AllowThousands" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="result"> When this method returns, contains the single-precision floating-point number equivalent to the numeric value or symbol contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in a format compliant with <paramref name="style" />, represents a number less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />, or <paramref name="style" /> is not a valid combination of <see cref="T:System.Globalization.NumberStyles" /> enumerated constants. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Single.TryParse(System.String,System.Single@)"> <summary> Converts the string representation of a number to its single-precision floating-point number equivalent. A return code indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string representing a number to convert. </param> <param name="result"> When this method returns, contains single-precision floating-point number equivalent to the numeric value or symbol contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not a number in a valid format, or represents a number less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.StackOverflowException"> <summary> The exception that is thrown when the execution stack overflows because it contains too many nested method calls. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.StackOverflowException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.StackOverflowException" /> class, setting the <see cref="P:System.Exception.Message" /> property of the new instance to a system-supplied message that describes the error, such as "The requested operation caused a stack overflow." This message takes into account the current system culture. </summary> </member> <member name="M:System.StackOverflowException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.StackOverflowException" /> class with a specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.StackOverflowException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.StackOverflowException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.STAThreadAttribute"> <summary> Indicates that the COM threading model for an application is single-threaded apartment (STA). </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.STAThreadAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.STAThreadAttribute" /> class. </summary> </member> <member name="T:System.String"> <summary> Represents text as a series of Unicode characters. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.String.#ctor(System.Char*)"> <summary> Initializes a new instance of the <see cref="T:System.String" /> class to the value indicated by a specified pointer to an array of Unicode characters. </summary> <param name="value"> A pointer to a null terminated array of Unicode characters. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The current process does not have read access to all the addressed characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> specifies an array that contains an invalid Unicode character, or <paramref name="value" /> specifies an address less than 64000. </exception> </member> <member name="M:System.String.#ctor(System.Char*,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.String" /> class to the value indicated by a specified pointer to an array of Unicode characters, a starting character position within that array, and a length. </summary> <param name="value"> A pointer to an array of Unicode characters. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <param name="length"> The number of characters within <paramref name="value" /> to use. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> or <paramref name="length" /> is less than zero, <paramref name="value" /> + <paramref name="startIndex" /> cause a pointer overflow, or the current process does not have read access to all the addressed characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> specifies an array that contains an invalid Unicode character, or <paramref name="value" /> + <paramref name="startIndex" /> specifies an address less than 64000. </exception> </member> <member name="M:System.String.#ctor(System.Char,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.String" /> class to the value indicated by a specified Unicode character repeated a specified number of times. </summary> <param name="c"> A Unicode character. </param> <param name="count"> The number of times <paramref name="c" /> occurs. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. </exception> </member> <member name="M:System.String.#ctor(System.Char[])"> <summary> Initializes a new instance of the <see cref="T:System.String" /> class to the value indicated by an array of Unicode characters. </summary> <param name="value"> An array of Unicode characters. </param> </member> <member name="M:System.String.#ctor(System.Char[],System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.String" /> class to the value indicated by an array of Unicode characters, a starting character position within that array, and a length. </summary> <param name="value"> An array of Unicode characters. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <param name="length"> The number of characters within <paramref name="value" /> to use. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> or <paramref name="length" /> is less than zero. -or- The sum of <paramref name="startIndex" /> and <paramref name="length" /> is greater than the number of elements in <paramref name="value" />. </exception> </member> <member name="M:System.String.#ctor(System.SByte*)"> <summary> Initializes a new instance of the <see cref="T:System.String" /> class to the value indicated by a pointer to an array of 8-bit signed integers. </summary> <param name="value"> A pointer to a null terminated array of 8-bit signed integers. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> A new instance of <see cref="T:System.String" /> could not be initialized using <paramref name="value" />, assuming <paramref name="value" /> is encoded in ANSI. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The length of the new string to initialize, which is determined by the null termination character of <paramref name="value" />, is too large to allocate. </exception> <exception cref="T:System.AccessViolationException"> <paramref name="value" /> specifies an invalid address. </exception> </member> <member name="M:System.String.#ctor(System.SByte*,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.String" /> class to the value indicated by a specified pointer to an array of 8-bit signed integers, a starting character position within that array, and a length. </summary> <param name="value"> A pointer to an array of 8-bit signed integers. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <param name="length"> The number of characters within <paramref name="value" /> to use. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> or <paramref name="length" /> is less than zero. -or- The address specified by <paramref name="value" /> + <paramref name="startIndex" /> is too large for the current platform; that is, the address calculation overflowed. -or- The length of the new string to initialize is too large to allocate. </exception> <exception cref="T:System.ArgumentException"> The address specified by <paramref name="value" /> + <paramref name="startIndex" /> is less than 64K. -or- A new instance of <see cref="T:System.String" /> could not be initialized using <paramref name="value" />, assuming <paramref name="value" /> is encoded in ANSI. </exception> <exception cref="T:System.AccessViolationException"> <paramref name="value" />, <paramref name="startIndex" />, and <paramref name="length" /> collectively specify an invalid address. </exception> </member> <member name="M:System.String.#ctor(System.SByte*,System.Int32,System.Int32,System.Text.Encoding)"> <summary> Initializes a new instance of the <see cref="T:System.String" /> class to the value indicated by a specified pointer to an array of 8-bit signed integers, a starting character position within that array, a length, and an <see cref="T:System.Text.Encoding" /> object. </summary> <param name="value"> A pointer to an array of 8-bit signed integers. </param> <param name="startIndex"> The starting position within <paramref name="value" />. </param> <param name="length"> The number of characters within <paramref name="value" /> to use. </param> <param name="enc"> An <see cref="T:System.Text.Encoding" /> object that specifies how the array referenced by <paramref name="value" /> is encoded. If <paramref name="enc" /> is null, ANSI encoding is assumed. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> or <paramref name="length" /> is less than zero. -or- The address specified by <paramref name="value" /> + <paramref name="startIndex" /> is too large for the current platform; that is, the address calculation overflowed. -or- The length of the new string to initialize is too large to allocate. </exception> <exception cref="T:System.ArgumentException"> The address specified by <paramref name="value" /> + <paramref name="startIndex" /> is less than 64K. -or- A new instance of <see cref="T:System.String" /> could not be initialized using <paramref name="value" />, assuming <paramref name="value" /> is encoded as specified by <paramref name="enc" />. </exception> <exception cref="T:System.AccessViolationException"> <paramref name="value" />, <paramref name="startIndex" />, and <paramref name="length" /> collectively specify an invalid address. </exception> </member> <member name="P:System.String.Chars(System.Int32)"> <summary> Gets the character at a specified character position in the current <see cref="T:System.String" /> object. </summary> <returns> A Unicode character. </returns> <param name="index"> A character position in the current <see cref="T:System.String" /> object. </param> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="index" /> is greater than or equal to the length of this object or less than zero. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.Clone"> <summary> Returns a reference to this instance of <see cref="T:System.String" />. </summary> <returns> This instance of String. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32)"> <summary> Compares substrings of two specified <see cref="T:System.String" /> objects and returns an integer that indicates their relative position in the sort order. </summary> <returns> A 32-bit signed integer indicating the lexical relationship between the two comparands. Value Condition Less than zero The substring in <paramref name="strA" /> is less than the substring in <paramref name="strB" />. Zero The substrings are equal, or <paramref name="length" /> is zero. Greater than zero The substring in <paramref name="strA" /> is greater than the substring in <paramref name="strB" />. </returns> <param name="strA"> The first <see cref="T:System.String" />. </param> <param name="indexA"> The position of the substring within <paramref name="strA" />. </param> <param name="strB"> The second <see cref="T:System.String" />. </param> <param name="indexB"> The position of the substring within <paramref name="strB" />. </param> <param name="length"> The maximum number of characters in the substrings to compare. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="indexA" /> is greater than <paramref name="strA" />.<see cref="P:System.String.Length" />. -or- <paramref name="indexB" /> is greater than <paramref name="strB" />.<see cref="P:System.String.Length" />. -or- <paramref name="indexA" />, <paramref name="indexB" />, or <paramref name="length" /> is negative. -or- Either <paramref name="indexA" /> or <paramref name="indexB" /> is null, and <paramref name="length" /> is greater than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.Boolean)"> <summary> Compares substrings of two specified <see cref="T:System.String" /> objects, ignoring or honoring their case, and returns an integer that indicates their relationship to one another in the sort order. </summary> <returns> A 32-bit signed integer indicating the lexical relationship between the two comparands. Value Condition Less than zero The substring in <paramref name="strA" /> is less than the substring in <paramref name="strB" />. Zero The substrings are equal, or <paramref name="length" /> is zero. Greater than zero The substring in <paramref name="strA" /> is greater than the substring in <paramref name="strB" />. </returns> <param name="strA"> The first <see cref="T:System.String" />. </param> <param name="indexA"> The position of the substring within <paramref name="strA" />. </param> <param name="strB"> The second <see cref="T:System.String" />. </param> <param name="indexB"> The position of the substring within <paramref name="strB" />. </param> <param name="length"> The maximum number of characters in the substrings to compare. </param> <param name="ignoreCase"> A <see cref="T:System.Boolean" /> indicating a case-sensitive or insensitive comparison. (true indicates a case-insensitive comparison.) </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="indexA" /> is greater than <paramref name="strA" />.<see cref="P:System.String.Length" />. -or- <paramref name="indexB" /> is greater than <paramref name="strB" />.<see cref="P:System.String.Length" />. -or- <paramref name="indexA" />, <paramref name="indexB" />, or <paramref name="length" /> is negative. -or- Either <paramref name="indexA" /> or <paramref name="indexB" /> is null, and <paramref name="length" /> is greater than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.Boolean,System.Globalization.CultureInfo)"> <summary> Compares substrings of two specified <see cref="T:System.String" /> objects, ignoring or honoring their case and using culture-specific information to influence the comparison. The method returns an integer that indicates their relationship to one another in the sort order. </summary> <returns> An integer indicating the lexical relationship between the two comparands. Value Condition Less than zero The substring in <paramref name="strA" /> is less than the substring in <paramref name="strB" />. Zero The substrings are equal, or <paramref name="length" /> is zero. Greater than zero The substring in <paramref name="strA" /> is greater than the substring in <paramref name="strB" />. </returns> <param name="strA"> The first <see cref="T:System.String" />. </param> <param name="indexA"> The position of the substring within <paramref name="strA" />. </param> <param name="strB"> The second <see cref="T:System.String" />. </param> <param name="indexB"> The position of the substring within <paramref name="strB" />. </param> <param name="length"> The maximum number of characters in the substrings to compare. </param> <param name="ignoreCase"> A <see cref="T:System.Boolean" /> indicating a case-sensitive or insensitive comparison. (true indicates a case-insensitive comparison.) </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> object that supplies culture-specific comparison information. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="indexA" /> is greater than <paramref name="strA" />.<see cref="P:System.String.Length" />. -or- <paramref name="indexB" /> is greater than <paramref name="strB" />.<see cref="P:System.String.Length" />. -or- <paramref name="indexA" />, <paramref name="indexB" />, or <paramref name="length" /> is negative. -or- Either <paramref name="strA" /> or <paramref name="strB" /> is null, and <paramref name="length" /> is greater than zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.StringComparison)"> <summary> Compares substrings of two specified <see cref="T:System.String" /> objects and returns an integer that indicates their relationship to one another in the sort order. </summary> <returns> A 32-bit signed integer indicating the lexical relationship between the two comparands. Value Condition Less than zero The substring in the <paramref name="strA" /> parameter is less than the substring in the <paramref name="strB" /> parameter. Zero The substrings are equal, or the <paramref name="length" /> parameter is zero. Greater than zero The substring in <paramref name="strA" /> is greater than the substring in <paramref name="strB" />. </returns> <param name="strA"> The first <see cref="T:System.String" /> object. </param> <param name="indexA"> The position of the substring within <paramref name="strA" />. </param> <param name="strB"> The second <see cref="T:System.String" /> object. </param> <param name="indexB"> The position of the substring within <paramref name="strB" />. </param> <param name="length"> The maximum number of characters in the substrings to compare. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="indexA" /> is greater than <paramref name="strA" />.<see cref="P:System.String.Length" />. -or- <paramref name="indexB" /> is greater than <paramref name="strB" />.<see cref="P:System.String.Length" />. -or- <paramref name="indexA" />, <paramref name="indexB" />, or <paramref name="length" /> is negative. -or- Either <paramref name="indexA" /> or <paramref name="indexB" /> is null, and <paramref name="length" /> is greater than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a <see cref="T:System.StringComparison" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Compare(System.String,System.String)"> <summary> Compares two specified <see cref="T:System.String" /> objects and returns an integer that indicates their relationship to one another in the sort order. </summary> <returns> A 32-bit signed integer indicating the lexical relationship between the two comparands. Value Condition Less than zero <paramref name="strA" /> is less than <paramref name="strB" />. Zero <paramref name="strA" /> equals <paramref name="strB" />. Greater than zero <paramref name="strA" /> is greater than <paramref name="strB" />. </returns> <param name="strA"> The first <see cref="T:System.String" />. </param> <param name="strB"> The second <see cref="T:System.String" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Compare(System.String,System.String,System.Boolean)"> <summary> Compares two specified <see cref="T:System.String" /> objects, ignoring or honoring their case, and returns an integer that indicates their relationship to one another in the sort order. </summary> <returns> A 32-bit signed integer indicating the lexical relationship between the two comparands. Value Condition Less than zero <paramref name="strA" /> is less than <paramref name="strB" />. Zero <paramref name="strA" /> equals <paramref name="strB" />. Greater than zero <paramref name="strA" /> is greater than <paramref name="strB" />. </returns> <param name="strA"> The first <see cref="T:System.String" />. </param> <param name="strB"> The second <see cref="T:System.String" />. </param> <param name="ignoreCase"> A <see cref="T:System.Boolean" /> indicating a case-sensitive or insensitive comparison. (true indicates a case-insensitive comparison.) </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Compare(System.String,System.String,System.Boolean,System.Globalization.CultureInfo)"> <summary> Compares two specified <see cref="T:System.String" /> objects, ignoring or honoring their case, and using culture-specific information to influence the comparison, and returns an integer that indicates their relationship to one another in the sort order. </summary> <returns> A 32-bit signed integer indicating the lexical relationship between the two comparands. Value Condition Less than zero <paramref name="strA" /> is less than <paramref name="strB" />. Zero <paramref name="strA" /> equals <paramref name="strB" />. Greater than zero <paramref name="strA" /> is greater than <paramref name="strB" />. </returns> <param name="strA"> The first <see cref="T:System.String" />. </param> <param name="strB"> The second <see cref="T:System.String" />. </param> <param name="ignoreCase"> A <see cref="T:System.Boolean" /> indicating a case-sensitive or insensitive comparison. (true indicates a case-insensitive comparison.) </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> object that supplies culture-specific comparison information. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Compare(System.String,System.String,System.StringComparison)"> <summary> Compares two specified <see cref="T:System.String" /> objects. A parameter specifies whether the comparison uses the current or invariant culture, honors or ignores case, and uses word or ordinal sort rules. The method returns an integer that indicates the relationship of the two <see cref="T:System.String" /> objects to one another in the sort order. </summary> <returns> A 32-bit signed integer indicating the lexical relationship between the two comparands. Value Condition Less than zero <paramref name="strA" /> is less than <paramref name="strB" />. Zero <paramref name="strA" /> equals <paramref name="strB" />. Greater than zero <paramref name="strA" /> is greater than <paramref name="strB" />. </returns> <param name="strA"> The first <see cref="T:System.String" /> object. </param> <param name="strB"> The second <see cref="T:System.String" /> object. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values. </param> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a <see cref="T:System.StringComparison" /> value. </exception> <exception cref="T:System.NotSupportedException"> <see cref="T:System.StringComparison" /> is not supported. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.CompareOrdinal(System.String,System.Int32,System.String,System.Int32,System.Int32)"> <summary> Compares substrings of two specified <see cref="T:System.String" /> objects by evaluating the numeric values of the corresponding <see cref="T:System.Char" /> objects in each substring. </summary> <returns> A 32-bit signed integer indicating the lexical relationship between the two comparands. Value Condition Less than zero The substring in <paramref name="strA" /> is less than the substring in <paramref name="strB" />. Zero The substrings are equal, or <paramref name="length" /> is zero. Greater than zero The substring in <paramref name="strA" /> is greater than the substring in <paramref name="strB" />. </returns> <param name="strA"> The first <see cref="T:System.String" />. </param> <param name="indexA"> The starting index of the substring in <paramref name="strA" />. </param> <param name="strB"> The second <see cref="T:System.String" />. </param> <param name="indexB"> The starting index of the substring in <paramref name="strB" />. </param> <param name="length"> The maximum number of characters in the substrings to compare. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="indexA" /> is greater than <paramref name="strA" />. <see cref="P:System.String.Length" />. -or- <paramref name="indexB" /> is greater than <paramref name="strB" />. <see cref="P:System.String.Length" />. -or- <paramref name="indexA" />, <paramref name="indexB" />, or <paramref name="length" /> is negative. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.CompareOrdinal(System.String,System.String)"> <summary> Compares two specified <see cref="T:System.String" /> objects by evaluating the numeric values of the corresponding <see cref="T:System.Char" /> objects in each string. </summary> <returns> An integer indicating the lexical relationship between the two comparands. Value Condition Less than zero <paramref name="strA" /> is less than <paramref name="strB" />. Zero <paramref name="strA" /> and <paramref name="strB" /> are equal. Greater than zero <paramref name="strA" /> is greater than <paramref name="strB" />. </returns> <param name="strA"> The first <see cref="T:System.String" />. </param> <param name="strB"> The second <see cref="T:System.String" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.String.CompareTo(System.Object)"> <summary> Compares this instance with a specified <see cref="T:System.Object" /> and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified <see cref="T:System.Object" />. </summary> <returns> A 32-bit signed integer that indicates whether this instance precedes, follows, or appears in the same position in the sort order as the <paramref name="value" /> parameter. Value Condition Less than zero This instance precedes <paramref name="value" />. Zero This instance has the same position in the sort order as <paramref name="value" />. Greater than zero This instance follows <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An <see cref="T:System.Object" /> that evaluates to a String. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.String" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.CompareTo(System.String)"> <summary> Compares this instance with a specified <see cref="T:System.String" /> object and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified <see cref="T:System.String" />. </summary> <returns> A 32-bit signed integer that indicates whether this instance precedes, follows, or appears in the same position in the sort order as the <paramref name="value" /> parameter. Value Condition Less than zero This instance precedes <paramref name="strB" />. Zero This instance has the same position in the sort order as <paramref name="strB" />. Greater than zero This instance follows <paramref name="strB" />. -or- <paramref name="strB" /> is null. </returns> <param name="strB"> A <see cref="T:System.String" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.String.Concat(System.Object)"> <summary> Creates the <see cref="T:System.String" /> representation of a specified object. </summary> <returns> The <see cref="T:System.String" /> representation of the value of <paramref name="arg0" />. </returns> <param name="arg0"> An <see cref="T:System.Object" /> or null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Concat(System.Object,System.Object)"> <summary> Concatenates the <see cref="T:System.String" /> representations of two specified objects. </summary> <returns> The concatenated <see cref="T:System.String" /> representations of the values of <paramref name="arg0" /> and <paramref name="arg1" />. </returns> <param name="arg0"> The first <see cref="T:System.Object" />. </param> <param name="arg1"> The second <see cref="T:System.Object" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Concat(System.Object,System.Object,System.Object)"> <summary> Concatenates the <see cref="T:System.String" /> representations of three specified objects. </summary> <returns> The concatenated <see cref="T:System.String" /> representations of the values of <paramref name="arg0" />, <paramref name="arg1" />, and <paramref name="arg2" />. </returns> <param name="arg0"> The first <see cref="T:System.Object" />. </param> <param name="arg1"> The second <see cref="T:System.Object" />. </param> <param name="arg2"> The third <see cref="T:System.Object" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Concat(System.Object,System.Object,System.Object,System.Object)"> <summary> Concatenates the <see cref="T:System.String" /> representations of four specified objects and any objects specified in an optional variable length parameter list. </summary> <returns> The concatenated <see cref="T:System.String" /> representations of the values of the <paramref name="arg0" />, <paramref name="arg1" />, <paramref name="arg2" />, and <paramref name="arg3" /> parameters. </returns> <param name="arg0"> The first <see cref="T:System.Object" />. </param> <param name="arg1"> The second <see cref="T:System.Object" />. </param> <param name="arg2"> The third <see cref="T:System.Object" />. </param> <param name="arg3"> The fourth <see cref="T:System.Object" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Concat(System.Object[])"> <summary> Concatenates the <see cref="T:System.String" /> representations of the elements in a specified <see cref="T:System.Object" /> array. </summary> <returns> The concatenated <see cref="T:System.String" /> representations of the values of the elements in <paramref name="args" />. </returns> <param name="args"> An <see cref="T:System.Object" /> array. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="args" /> is null. </exception> <exception cref="T:System.OutOfMemoryException"> Out of memory. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Concat(System.String,System.String)"> <summary> Concatenates two specified instances of <see cref="T:System.String" />. </summary> <returns> The concatenation of <paramref name="str0" /> and <paramref name="str1" />. </returns> <param name="str0"> The first <see cref="T:System.String" />. </param> <param name="str1"> The second <see cref="T:System.String" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Concat(System.String,System.String,System.String)"> <summary> Concatenates three specified instances of <see cref="T:System.String" />. </summary> <returns> The concatenation of <paramref name="str0" />, <paramref name="str1" />, and <paramref name="str2" />. </returns> <param name="str0"> The first <see cref="T:System.String" />. </param> <param name="str1"> The second <see cref="T:System.String" />. </param> <param name="str2"> The third <see cref="T:System.String" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Concat(System.String,System.String,System.String,System.String)"> <summary> Concatenates four specified instances of <see cref="T:System.String" />. </summary> <returns> The concatenation of <paramref name="str0" />, <paramref name="str1" />, <paramref name="str2" />, and <paramref name="str3" />. </returns> <param name="str0"> The first <see cref="T:System.String" />. </param> <param name="str1"> The second <see cref="T:System.String" />. </param> <param name="str2"> The third <see cref="T:System.String" />. </param> <param name="str3"> The fourth <see cref="T:System.String" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Concat(System.String[])"> <summary> Concatenates the elements of a specified <see cref="T:System.String" /> array. </summary> <returns> The concatenated elements of <paramref name="values" />. </returns> <param name="values"> An array of <see cref="T:System.String" /> instances. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="values" /> is null. </exception> <exception cref="T:System.OutOfMemoryException"> Out of memory. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Contains(System.String)"> <summary> Returns a value indicating whether the specified <see cref="T:System.String" /> object occurs within this string. </summary> <returns>true if the <paramref name="value" /> parameter occurs within this string, or if <paramref name="value" /> is the empty string (""); otherwise, false. </returns> <param name="value"> The <see cref="T:System.String" /> object to seek. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Copy(System.String)"> <summary> Creates a new instance of <see cref="T:System.String" /> with the same value as a specified <see cref="T:System.String" />. </summary> <returns> A new <see cref="T:System.String" /> with the same value as <paramref name="str" />. </returns> <param name="str"> The <see cref="T:System.String" /> to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)"> <summary> Copies a specified number of characters from a specified position in this instance to a specified position in an array of Unicode characters. </summary> <param name="sourceIndex"> A character position in this instance. </param> <param name="destination"> An array of Unicode characters. </param> <param name="destinationIndex"> An array element in <paramref name="destination" />. </param> <param name="count"> The number of characters in this instance to copy to <paramref name="destination" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="destination" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="sourceIndex" />, <paramref name="destinationIndex" />, or <paramref name="count" /> is negative -or- <paramref name="count" /> is greater than the length of the substring from <paramref name="startIndex" /> to the end of this instance -or- <paramref name="count" /> is greater than the length of the subarray from <paramref name="destinationIndex" /> to the end of <paramref name="destination" /></exception> <filterpriority>2</filterpriority> </member> <member name="F:System.String.Empty"> <summary> Represents the empty string. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.String.EndsWith(System.String)"> <summary> Determines whether the end of this instance matches the specified string. </summary> <returns>true if <paramref name="value" /> matches the end of this instance; otherwise, false. </returns> <param name="value"> A <see cref="T:System.String" /> to compare to. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.EndsWith(System.String,System.Boolean,System.Globalization.CultureInfo)"> <summary> Determines whether the end of this string matches the specified string when compared using the specified culture. </summary> <returns>true if the <paramref name="value" /> parameter matches the end of this string; otherwise, false. </returns> <param name="value"> A <see cref="T:System.String" /> object to compare to. </param> <param name="ignoreCase">true to ignore case when comparing this instance and <paramref name="value" />; otherwise, false. </param> <param name="culture"> Cultural information that determines how this instance and <paramref name="value" /> are compared. If <paramref name="culture" /> is null, the current culture is used. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.EndsWith(System.String,System.StringComparison)"> <summary> Determines whether the end of this string matches the specified string when compared using the specified comparison option. </summary> <returns>true if the <paramref name="value" /> parameter matches the end of this string; otherwise, false. </returns> <param name="value"> A <see cref="T:System.String" /> object to compare to. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values that determines how this string and <paramref name="value" /> are compared. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a <see cref="T:System.StringComparison" /> value. </exception> </member> <member name="M:System.String.Equals(System.Object)"> <summary> Determines whether this instance of <see cref="T:System.String" /> and a specified object, which must also be a <see cref="T:System.String" /> object, have the same value. </summary> <returns>true if <paramref name="obj" /> is a <see cref="T:System.String" /> and its value is the same as this instance; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.Object" />. </param> <exception cref="T:System.NullReferenceException"> This instance is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.Equals(System.String)"> <summary> Determines whether this instance and another specified <see cref="T:System.String" /> object have the same value. </summary> <returns>true if the value of the <paramref name="value" /> parameter is the same as this instance; otherwise, false. </returns> <param name="value"> A <see cref="T:System.String" />. </param> <exception cref="T:System.NullReferenceException"> This instance is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.Equals(System.String,System.String)"> <summary> Determines whether two specified <see cref="T:System.String" /> objects have the same value. </summary> <returns>true if the value of <paramref name="a" /> is the same as the value of <paramref name="b" />; otherwise, false. </returns> <param name="a"> A <see cref="T:System.String" /> or null. </param> <param name="b"> A <see cref="T:System.String" /> or null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Equals(System.String,System.String,System.StringComparison)"> <summary> Determines whether two specified <see cref="T:System.String" /> objects have the same value. A parameter specifies the culture, case, and sort rules used in the comparison. </summary> <returns>true if the value of the <paramref name="a" /> parameter is equal to the value of the <paramref name="b" /> parameter; otherwise, false. </returns> <param name="a"> A <see cref="T:System.String" /> object or null. </param> <param name="b"> A <see cref="T:System.String" /> object or null. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values. </param> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a <see cref="T:System.StringComparison" /> value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Equals(System.String,System.StringComparison)"> <summary> Determines whether this string and a specified <see cref="T:System.String" /> object have the same value. A parameter specifies the culture, case, and sort rules used in the comparison. </summary> <returns>true if the value of the <paramref name="value" /> parameter is the same as this string; otherwise, false. </returns> <param name="value"> A <see cref="T:System.String" /> object. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values. </param> <exception cref="T:System.NullReferenceException"> This string is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a <see cref="T:System.StringComparison" /> value. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"> <summary> Replaces the format item in a specified <see cref="T:System.String" /> with the text equivalent of the value of a corresponding <see cref="T:System.Object" /> instance in a specified array. A specified parameter supplies culture-specific formatting information. </summary> <returns> A copy of <paramref name="format" /> in which the format items have been replaced by the <see cref="T:System.String" /> equivalent of the corresponding instances of <see cref="T:System.Object" /> in <paramref name="args" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <param name="format"> A composite format string. </param> <param name="args"> An <see cref="T:System.Object" /> array containing zero or more objects to format. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> or <paramref name="args" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. -or- The number indicating an argument to format is less than zero, or greater than or equal to the length of the <paramref name="args" /> array. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Format(System.String,System.Object)"> <summary> Replaces the format item in a specified <see cref="T:System.String" /> with the text equivalent of the value of a specified <see cref="T:System.Object" /> instance. </summary> <returns> A copy of <paramref name="format" /> in which the first format item has been replaced by the <see cref="T:System.String" /> equivalent of <paramref name="arg0" />. </returns> <param name="format"> A composite format string. </param> <param name="arg0"> An <see cref="T:System.Object" /> to format. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> The format item in <paramref name="format" /> is invalid. -or- The number indicating an argument to format is less than zero, or greater than or equal to the number of specified objects to format. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Format(System.String,System.Object,System.Object)"> <summary> Replaces the format item in a specified <see cref="T:System.String" /> with the text equivalent of the value of two specified <see cref="T:System.Object" /> instances. </summary> <returns> A copy of <paramref name="format" /> in which the first and second format items have been replaced by the <see cref="T:System.String" /> equivalents of <paramref name="arg0" /> and <paramref name="arg1" />. </returns> <param name="format"> A composite format string. </param> <param name="arg0"> The first <see cref="T:System.Object" /> to format. </param> <param name="arg1"> The second <see cref="T:System.Object" /> to format. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. -or- The number indicating an argument to format is less than zero, or greater than or equal to the number of specified objects to format. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Format(System.String,System.Object,System.Object,System.Object)"> <summary> Replaces the format item in a specified <see cref="T:System.String" /> with the text equivalent of the value of three specified <see cref="T:System.Object" /> instances. </summary> <returns> A copy of <paramref name="format" /> in which the first, second, and third format items have been replaced by the <see cref="T:System.String" /> equivalents of <paramref name="arg0" />, <paramref name="arg1" />, and <paramref name="arg2" />. </returns> <param name="format"> A composite format string. </param> <param name="arg0"> The first <see cref="T:System.Object" /> to format. </param> <param name="arg1"> The second <see cref="T:System.Object" /> to format. </param> <param name="arg2"> The third <see cref="T:System.Object" /> to format. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. -or- The number indicating an argument to format is less than zero, or greater than or equal to the number of specified objects to format. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Format(System.String,System.Object[])"> <summary> Replaces the format item in a specified <see cref="T:System.String" /> with the text equivalent of the value of a corresponding <see cref="T:System.Object" /> instance in a specified array. </summary> <returns> A copy of <paramref name="format" /> in which the format items have been replaced by the <see cref="T:System.String" /> equivalent of the corresponding instances of <see cref="T:System.Object" /> in <paramref name="args" />. </returns> <param name="format"> A composite format string. </param> <param name="args"> An <see cref="T:System.Object" /> array containing zero or more objects to format. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> or <paramref name="args" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. -or- The number indicating an argument to format is less than zero, or greater than or equal to the length of the <paramref name="args" /> array. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.GetEnumerator"> <summary> Retrieves an object that can iterate through the individual characters in this string. </summary> <returns> A <see cref="T:System.CharEnumerator" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.String.GetHashCode"> <summary> Returns the hash code for this string. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.String.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for class <see cref="T:System.String" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.String" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.String.IndexOf(System.Char)"> <summary> Reports the index of the first occurrence of the specified Unicode character in this string. </summary> <returns> The zero-based index position of <paramref name="value" /> if that character is found, or -1 if it is not. </returns> <param name="value"> A Unicode character to seek. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.IndexOf(System.Char,System.Int32)"> <summary> Reports the index of the first occurrence of the specified Unicode character in this string. The search starts at a specified character position. </summary> <returns> The zero-based index position of <paramref name="value" /> if that character is found, or -1 if it is not. </returns> <param name="value"> A Unicode character to seek. </param> <param name="startIndex"> The search starting position. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or specifies a position beyond the end of this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.IndexOf(System.Char,System.Int32,System.Int32)"> <summary> Reports the index of the first occurrence of the specified character in this instance. The search starts at a specified character position and examines a specified number of character positions. </summary> <returns> The zero-based index position of <paramref name="value" /> if that character is found, or -1 if it is not. </returns> <param name="value"> A Unicode character to seek. </param> <param name="startIndex"> The search starting position. </param> <param name="count"> The number of character positions to examine. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> or <paramref name="startIndex" /> is negative. -or- <paramref name="count" /> + <paramref name="startIndex" /> specifies a position beyond the end of this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.IndexOf(System.String)"> <summary> Reports the index of the first occurrence of the specified <see cref="T:System.String" /> in this instance. </summary> <returns> The zero-based index position of <paramref name="value" /> if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is 0. </returns> <param name="value"> The <see cref="T:System.String" /> to seek. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.IndexOf(System.String,System.Int32)"> <summary> Reports the index of the first occurrence of the specified <see cref="T:System.String" /> in this instance. The search starts at a specified character position. </summary> <returns> The zero-based index position of <paramref name="value" /> if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is <paramref name="startIndex" />. </returns> <param name="value"> The <see cref="T:System.String" /> to seek. </param> <param name="startIndex"> The search starting position. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is negative. -or- <paramref name="startIndex" /> specifies a position not within this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.IndexOf(System.String,System.Int32,System.Int32)"> <summary> Reports the index of the first occurrence of the specified <see cref="T:System.String" /> in this instance. The search starts at a specified character position and examines a specified number of character positions. </summary> <returns> The zero-based index position of <paramref name="value" /> if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is <paramref name="startIndex" />. </returns> <param name="value"> The <see cref="T:System.String" /> to seek. </param> <param name="startIndex"> The search starting position. </param> <param name="count"> The number of character positions to examine. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> or <paramref name="startIndex" /> is negative. -or- <paramref name="count" /> plus <paramref name="startIndex" /> specify a position not within this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.IndexOf(System.String,System.Int32,System.Int32,System.StringComparison)"> <summary> Reports the index of the first occurrence of the specified string in the current <see cref="T:System.String" /> object. Parameters specify the starting search position in the current string, the number of characters in the current string to search, and the type of search to use for the specified string. </summary> <returns> The zero-based index position of the <paramref name="value" /> parameter if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is <paramref name="startIndex" />. </returns> <param name="value"> The <see cref="T:System.String" /> object to seek. </param> <param name="startIndex"> The search starting position. </param> <param name="count"> The number of character positions to examine. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> or <paramref name="startIndex" /> is negative. -or- <paramref name="count" /> plus <paramref name="startIndex" /> specify a position that is not within this instance. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a valid <see cref="T:System.StringComparison" /> value. </exception> </member> <member name="M:System.String.IndexOf(System.String,System.Int32,System.StringComparison)"> <summary> Reports the index of the first occurrence of the specified string in the current <see cref="T:System.String" /> object. Parameters specify the starting search position in the current string and the type of search to use for the specified string. </summary> <returns> The zero-based index position of the <paramref name="value" /> parameter if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is <paramref name="startIndex" />. </returns> <param name="value"> The <see cref="T:System.String" /> object to seek. </param> <param name="startIndex"> The search starting position. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is negative, or specifies a position that is not within this instance. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a valid <see cref="T:System.StringComparison" /> value. </exception> </member> <member name="M:System.String.IndexOf(System.String,System.StringComparison)"> <summary> Reports the index of the first occurrence of the specified string in the current <see cref="T:System.String" /> object. A parameter specifies the type of search to use for the specified string. </summary> <returns> The index position of the <paramref name="value" /> parameter if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is 0. </returns> <param name="value"> The <see cref="T:System.String" /> object to seek. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a valid <see cref="T:System.StringComparison" /> value. </exception> </member> <member name="M:System.String.IndexOfAny(System.Char[])"> <summary> Reports the index of the first occurrence in this instance of any character in a specified array of Unicode characters. </summary> <returns> The zero-based index position of the first occurrence in this instance where any character in <paramref name="anyOf" /> was found; otherwise, -1 if no character in <paramref name="anyOf" /> was found. </returns> <param name="anyOf"> A Unicode character array containing one or more characters to seek. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="anyOf" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.IndexOfAny(System.Char[],System.Int32)"> <summary> Reports the index of the first occurrence in this instance of any character in a specified array of Unicode characters. The search starts at a specified character position. </summary> <returns> The zero-based index position of the first occurrence in this instance where any character in <paramref name="anyOf" /> was found; otherwise, -1 if no character in <paramref name="anyOf" /> was found. </returns> <param name="anyOf"> A Unicode character array containing one or more characters to seek. </param> <param name="startIndex"> The search starting position. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="anyOf" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is negative. -or- <paramref name="startIndex" /> is greater than the number of characters in this instance. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.IndexOfAny(System.Char[],System.Int32,System.Int32)"> <summary> Reports the index of the first occurrence in this instance of any character in a specified array of Unicode characters. The search starts at a specified character position and examines a specified number of character positions. </summary> <returns> The zero-based index position of the first occurrence in this instance where any character in <paramref name="anyOf" /> was found; otherwise, -1 if no character in <paramref name="anyOf" /> was found. </returns> <param name="anyOf"> A Unicode character array containing one or more characters to seek. </param> <param name="startIndex"> The search starting position. </param> <param name="count"> The number of character positions to examine. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="anyOf" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> or <paramref name="startIndex" /> is negative. -or- <paramref name="count" /> + <paramref name="startIndex" /> is greater than the number of characters in this instance. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.Insert(System.Int32,System.String)"> <summary> Inserts a specified instance of <see cref="T:System.String" /> at a specified index position in this instance. </summary> <returns> A new <see cref="T:System.String" /> equivalent to this instance but with <paramref name="value" /> inserted at position <paramref name="startIndex" />. </returns> <param name="startIndex"> The index position of the insertion. </param> <param name="value"> The <see cref="T:System.String" /> to insert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is negative or greater than the length of this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Intern(System.String)"> <summary> Retrieves the system's reference to the specified <see cref="T:System.String" />. </summary> <returns> If the value of <paramref name="str" /> is already interned, the system's reference is returned; otherwise, a new reference to a string with the value of <paramref name="str" /> is returned. </returns> <param name="str"> A <see cref="T:System.String" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.IsInterned(System.String)"> <summary> Retrieves a reference to a specified <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> reference to <paramref name="str" /> if it is in the common language runtime "intern pool"; otherwise null. </returns> <param name="str"> A <see cref="T:System.String" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.IsNormalized"> <summary> Indicates whether this string is in Unicode normalization form C. </summary> <returns>true if this string is in normalization form C; otherwise, false. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.String.IsNormalized(System.Text.NormalizationForm)"> <summary> Indicates whether this string is in the specified Unicode normalization form. </summary> <returns>true if this string is in the normalization form specified by the <paramref name="normalizationForm" /> parameter; otherwise, false. </returns> <param name="normalizationForm"> A Unicode normalization form. </param> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.String.IsNullOrEmpty(System.String)"> <summary> Indicates whether the specified <see cref="T:System.String" /> object is null or an <see cref="F:System.String.Empty" /> string. </summary> <returns>true if the <paramref name="value" /> parameter is null or an empty string (""); otherwise, false. </returns> <param name="value"> A <see cref="T:System.String" /> reference. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Join(System.String,System.String[])"> <summary> Concatenates a specified separator <see cref="T:System.String" /> between each element of a specified <see cref="T:System.String" /> array, yielding a single concatenated string. </summary> <returns> A <see cref="T:System.String" /> consisting of the elements of <paramref name="value" /> interspersed with the <paramref name="separator" /> string. </returns> <param name="separator"> A <see cref="T:System.String" />. </param> <param name="value"> An array of <see cref="T:System.String" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Join(System.String,System.String[],System.Int32,System.Int32)"> <summary> Concatenates a specified separator <see cref="T:System.String" /> between each element of a specified <see cref="T:System.String" /> array, yielding a single concatenated string. Parameters specify the first array element and number of elements to use. </summary> <returns> A <see cref="T:System.String" /> object consisting of the strings in <paramref name="value" /> joined by <paramref name="separator" />. Or, <see cref="F:System.String.Empty" /> if <paramref name="count" /> is zero, <paramref name="value" /> has no elements, or <paramref name="separator" /> and all the elements of <paramref name="value" /> are <see cref="F:System.String.Empty" />. </returns> <param name="separator"> A <see cref="T:System.String" />. </param> <param name="value"> An array of <see cref="T:System.String" />. </param> <param name="startIndex"> The first array element in <paramref name="value" /> to use. </param> <param name="count"> The number of elements of <paramref name="value" /> to use. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> or <paramref name="count" /> is less than 0. -or- <paramref name="startIndex" /> plus <paramref name="count" /> is greater than the number of elements in <paramref name="value" />. </exception> <exception cref="T:System.OutOfMemoryException"> Out of memory. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.LastIndexOf(System.Char)"> <summary> Reports the index position of the last occurrence of a specified Unicode character within this instance. </summary> <returns> The index position of <paramref name="value" /> if that character is found, or -1 if it is not. </returns> <param name="value"> A Unicode character to seek. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.LastIndexOf(System.Char,System.Int32)"> <summary> Reports the index position of the last occurrence of a specified Unicode character within this instance. The search starts at a specified character position. </summary> <returns> The index position of <paramref name="value" /> if that character is found, or -1 if it is not. </returns> <param name="value"> A Unicode character to seek. </param> <param name="startIndex"> The starting position of a substring within this instance. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.LastIndexOf(System.Char,System.Int32,System.Int32)"> <summary> Reports the index position of the last occurrence of the specified Unicode character in a substring within this instance. The search starts at a specified character position and examines a specified number of character positions. </summary> <returns> The index position of <paramref name="value" /> if that character is found, or -1 if it is not. </returns> <param name="value"> A Unicode character to seek. </param> <param name="startIndex"> The starting position of a substring within this instance. </param> <param name="count"> The number of character positions to examine. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero, or greater than or equal to the length of this instance. -or- <paramref name="startIndex" /> + 1 - <paramref name="count" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.LastIndexOf(System.String)"> <summary> Reports the index position of the last occurrence of a specified <see cref="T:System.String" /> within this instance. </summary> <returns> The index position of <paramref name="value" /> if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is the last index position in this instance. </returns> <param name="value"> A <see cref="T:System.String" /> to seek. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.LastIndexOf(System.String,System.Int32)"> <summary> Reports the index position of the last occurrence of a specified <see cref="T:System.String" /> within this instance. The search starts at a specified character position. </summary> <returns> The index position of <paramref name="value" /> if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is <paramref name="startIndex" />. </returns> <param name="value"> The <see cref="T:System.String" /> to seek. </param> <param name="startIndex"> The search starting position. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or specifies a position not within this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.LastIndexOf(System.String,System.Int32,System.Int32)"> <summary> Reports the index position of the last occurrence of a specified <see cref="T:System.String" /> within this instance. The search starts at a specified character position and examines a specified number of character positions. </summary> <returns> The index position of <paramref name="value" /> if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is <paramref name="startIndex" />. </returns> <param name="value"> The <see cref="T:System.String" /> to seek. </param> <param name="startIndex"> The search starting position. </param> <param name="count"> The number of character positions to examine. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> or <paramref name="startIndex" /> is negative. -or- <paramref name="startIndex" /> is greater than the length of this instance. -or- <paramref name="startIndex" /> + 1 - <paramref name="count" /> specifies a position that is not within this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison)"> <summary> Reports the index position of the last occurrence of a specified <see cref="T:System.String" /> object within this instance. Parameters specify the starting search position in the current string, the number of characters in the current string to search, and the type of search to use for the specified string. </summary> <returns> The index position of the <paramref name="value" /> parameter if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is <paramref name="startIndex" />. </returns> <param name="value"> The <see cref="T:System.String" /> object to seek. </param> <param name="startIndex"> The search starting position. </param> <param name="count"> The number of character positions to examine. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> or <paramref name="startIndex" /> is negative. -or- <paramref name="startIndex" /> is greater than the length of this instance. -or- <paramref name="startIndex" /> + 1 - <paramref name="count" /> specifies a position that is not within this instance. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a valid <see cref="T:System.StringComparison" /> value. </exception> </member> <member name="M:System.String.LastIndexOf(System.String,System.Int32,System.StringComparison)"> <summary> Reports the index of the last occurrence of a specified string within the current <see cref="T:System.String" /> object. Parameters specify the starting search position in the current string, and type of search to use for the specified string. </summary> <returns> The index position of the <paramref name="value" /> parameter if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is <paramref name="startIndex" />. </returns> <param name="value"> The <see cref="T:System.String" /> object to seek. </param> <param name="startIndex"> The search starting position. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or specifies a position that is not within this instance. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a valid <see cref="T:System.StringComparison" /> value. </exception> </member> <member name="M:System.String.LastIndexOf(System.String,System.StringComparison)"> <summary> Reports the index of the last occurrence of a specified string within the current <see cref="T:System.String" /> object. A parameter specifies the type of search to use for the specified string. </summary> <returns> The index position of the <paramref name="value" /> parameter if that string is found, or -1 if it is not. If <paramref name="value" /> is <see cref="F:System.String.Empty" />, the return value is the last index position in this instance. </returns> <param name="value"> The <see cref="T:System.String" /> object to seek. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a valid <see cref="T:System.StringComparison" /> value. </exception> </member> <member name="M:System.String.LastIndexOfAny(System.Char[])"> <summary> Reports the index position of the last occurrence in this instance of one or more characters specified in a Unicode array. </summary> <returns> The index position of the last occurrence in this instance where any character in <paramref name="anyOf" /> was found; otherwise, -1 if no character in <paramref name="anyOf" /> was found. </returns> <param name="anyOf"> A Unicode character array containing one or more characters to seek. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="anyOf" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.LastIndexOfAny(System.Char[],System.Int32)"> <summary> Reports the index position of the last occurrence in this instance of one or more characters specified in a Unicode array. The search starts at a specified character position. </summary> <returns> The index position of the last occurrence in this instance where any character in <paramref name="anyOf" /> was found; otherwise, -1 if no character in <paramref name="anyOf" /> was found. </returns> <param name="anyOf"> A Unicode character array containing one or more characters to seek. </param> <param name="startIndex"> The search starting position. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="anyOf" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> specifies a position not within this instance. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.LastIndexOfAny(System.Char[],System.Int32,System.Int32)"> <summary> Reports the index position of the last occurrence in this instance of one or more characters specified in a Unicode array. The search starts at a specified character position and examines a specified number of character positions. </summary> <returns> The index position of the last occurrence in this instance where any character in <paramref name="anyOf" /> was found; otherwise, -1 if no character in <paramref name="anyOf" /> was found. </returns> <param name="anyOf"> A Unicode character array containing one or more characters to seek. </param> <param name="startIndex"> The search starting position. </param> <param name="count"> The number of character positions to examine. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="anyOf" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> or <paramref name="startIndex" /> is negative. -or- <paramref name="startIndex" /> minus <paramref name="count" /> specify a position that is not within this instance. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.String.Length"> <summary> Gets the number of characters in the current <see cref="T:System.String" /> object. </summary> <returns> The number of characters in this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Normalize"> <summary> Returns a new string whose textual value is the same as this string, but whose binary representation is in Unicode normalization form C. </summary> <returns> A new, normalized string whose textual value is the same as this string, but whose binary representation is in normalization form C. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.String.Normalize(System.Text.NormalizationForm)"> <summary> Returns a new string whose textual value is the same as this string, but whose binary representation is in the specified Unicode normalization form. </summary> <returns> A new string whose textual value is the same as this string, but whose binary representation is in the normalization form specified by the <paramref name="normalizationForm" /> parameter. </returns> <param name="normalizationForm"> A Unicode normalization form. </param> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.String.op_Equality(System.String,System.String)"> <summary> Determines whether two specified <see cref="T:System.String" /> objects have the same value. </summary> <returns>true if the value of <paramref name="a" /> is the same as the value of <paramref name="b" />; otherwise, false. </returns> <param name="a"> A <see cref="T:System.String" /> or null. </param> <param name="b"> A <see cref="T:System.String" /> or null. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.String.op_Inequality(System.String,System.String)"> <summary> Determines whether two specified <see cref="T:System.String" /> objects have different values. </summary> <returns>true if the value of <paramref name="a" /> is different from the value of <paramref name="b" />; otherwise, false. </returns> <param name="a"> A String or null. </param> <param name="b"> A String or null. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.String.PadLeft(System.Int32)"> <summary> Right-aligns the characters in this instance, padding with spaces on the left for a specified total length. </summary> <returns> A new <see cref="T:System.String" /> that is equivalent to this instance, but right-aligned and padded on the left with as many spaces as needed to create a length of <paramref name="totalWidth" />. Or, if <paramref name="totalWidth" /> is less than the length of this instance, a new <see cref="T:System.String" /> object that is identical to this instance. </returns> <param name="totalWidth"> The number of characters in the resulting string, equal to the number of original characters plus any additional padding characters. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="totalWidth" /> is less than zero. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.PadLeft(System.Int32,System.Char)"> <summary> Right-aligns the characters in this instance, padding on the left with a specified Unicode character for a specified total length. </summary> <returns> A new <see cref="T:System.String" /> that is equivalent to this instance, but right-aligned and padded on the left with as many <paramref name="paddingChar" /> characters as needed to create a length of <paramref name="totalWidth" />. Or, if <paramref name="totalWidth" /> is less than the length of this instance, a new <see cref="T:System.String" /> that is identical to this instance. </returns> <param name="totalWidth"> The number of characters in the resulting string, equal to the number of original characters plus any additional padding characters. </param> <param name="paddingChar"> A Unicode padding character. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="totalWidth" /> is less than zero. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.PadRight(System.Int32)"> <summary> Left-aligns the characters in this string, padding with spaces on the right, for a specified total length. </summary> <returns> A new <see cref="T:System.String" /> that is equivalent to this instance, but left-aligned and padded on the right with as many spaces as needed to create a length of <paramref name="totalWidth" />. Or, if <paramref name="totalWidth" /> is less than the length of this instance, a new <see cref="T:System.String" /> that is identical to this instance. </returns> <param name="totalWidth"> The number of characters in the resulting string, equal to the number of original characters plus any additional padding characters. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="totalWidth" /> is less than zero. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.PadRight(System.Int32,System.Char)"> <summary> Left-aligns the characters in this string, padding on the right with a specified Unicode character, for a specified total length. </summary> <returns> A new <see cref="T:System.String" /> that is equivalent to this instance, but left-aligned and padded on the right with as many <paramref name="paddingChar" /> characters as needed to create a length of <paramref name="totalWidth" />. Or, if <paramref name="totalWidth" /> is less than the length of this instance, a new <see cref="T:System.String" /> that is identical to this instance. </returns> <param name="totalWidth"> The number of characters in the resulting string, equal to the number of original characters plus any additional padding characters. </param> <param name="paddingChar"> A Unicode padding character. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="totalWidth" /> is less than zero. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.String.Remove(System.Int32)"> <summary> Deletes all the characters from this string beginning at a specified position and continuing through the last position. </summary> <returns> A new <see cref="T:System.String" /> object that is equivalent to this string less the removed characters. </returns> <param name="startIndex"> The zero-based position to begin deleting characters. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero. -or- <paramref name="startIndex" /> specifies a position that is not within this string. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Remove(System.Int32,System.Int32)"> <summary> Deletes a specified number of characters from this instance beginning at a specified position. </summary> <returns> A new <see cref="T:System.String" /> that is equivalent to this instance less <paramref name="count" /> number of characters. </returns> <param name="startIndex"> The zero-based position to begin deleting characters. </param> <param name="count"> The number of characters to delete. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Either <paramref name="startIndex" /> or <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> plus <paramref name="count" /> specify a position outside this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Replace(System.Char,System.Char)"> <summary> Replaces all occurrences of a specified Unicode character in this instance with another specified Unicode character. </summary> <returns> A <see cref="T:System.String" /> equivalent to this instance but with all instances of <paramref name="oldChar" /> replaced with <paramref name="newChar" />. </returns> <param name="oldChar"> A Unicode character to be replaced. </param> <param name="newChar"> A Unicode character to replace all occurrences of <paramref name="oldChar" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Replace(System.String,System.String)"> <summary> Replaces all occurrences of a specified <see cref="T:System.String" /> in this instance, with another specified <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> equivalent to this instance but with all instances of <paramref name="oldValue" /> replaced with <paramref name="newValue" />. </returns> <param name="oldValue"> A <see cref="T:System.String" /> to be replaced. </param> <param name="newValue"> A <see cref="T:System.String" /> to replace all occurrences of <paramref name="oldValue" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="oldValue" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="oldValue" /> is the empty string (""). </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Split(System.Char[])"> <summary> Returns a string array that contains the substrings in this instance that are delimited by elements of a specified Unicode character array. </summary> <returns> An array whose elements contain the substrings in this instance that are delimited by one or more characters in <paramref name="separator" />. For more information, see the Remarks section. </returns> <param name="separator"> An array of Unicode characters that delimit the substrings in this instance, an empty array that contains no delimiters, or null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Split(System.Char[],System.Int32)"> <summary> Returns a string array that contains the substrings in this instance that are delimited by elements of a specified Unicode character array. A parameter specifies the maximum number of substrings to return. </summary> <returns> An array whose elements contain the substrings in this instance that are delimited by one or more characters in <paramref name="separator" />. For more information, see the Remarks section. </returns> <param name="separator"> An array of Unicode characters that delimit the substrings in this instance, an empty array that contains no delimiters, or null. </param> <param name="count"> The maximum number of substrings to return. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is negative. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Split(System.Char[],System.Int32,System.StringSplitOptions)"> <summary> Returns a string array that contains the substrings in this string that are delimited by elements of a specified Unicode character array. Parameters specify the maximum number of substrings to return and whether to return empty array elements. </summary> <returns> An array whose elements contain the substrings in this string that are delimited by one or more characters in <paramref name="separator" />. For more information, see the Remarks section. </returns> <param name="separator"> An array of Unicode characters that delimit the substrings in this string, an empty array that contains no delimiters, or null. </param> <param name="count"> The maximum number of substrings to return. </param> <param name="options"> Specify <see cref="F:System.StringSplitOptions.RemoveEmptyEntries" /> to omit empty array elements from the array returned, or <see cref="F:System.StringSplitOptions.None" /> to include empty array elements in the array returned. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is negative. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> is not one of the <see cref="T:System.StringSplitOptions" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Split(System.Char[],System.StringSplitOptions)"> <summary> Returns a string array that contains the substrings in this string that are delimited by elements of a specified Unicode character array. A parameter specifies whether to return empty array elements. </summary> <returns> An array whose elements contain the substrings in this string that are delimited by one or more characters in <paramref name="separator" />. For more information, see the Remarks section. </returns> <param name="separator"> An array of Unicode characters that delimit the substrings in this string, an empty array that contains no delimiters, or null. </param> <param name="options"> Specify <see cref="F:System.StringSplitOptions.RemoveEmptyEntries" /> to omit empty array elements from the array returned, or <see cref="F:System.StringSplitOptions.None" /> to include empty array elements in the array returned. </param> <exception cref="T:System.ArgumentException"> <paramref name="options" /> is not one of the <see cref="T:System.StringSplitOptions" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Split(System.String[],System.Int32,System.StringSplitOptions)"> <summary> Returns a string array that contains the substrings in this string that are delimited by elements of a specified string array. Parameters specify the maximum number of substrings to return and whether to return empty array elements. </summary> <returns> An array whose elements contain the substrings in this string that are delimited by one or more strings in <paramref name="separator" />. For more information, see the Remarks section. </returns> <param name="separator"> An array of strings that delimit the substrings in this string, an empty array that contains no delimiters, or null. </param> <param name="count"> The maximum number of substrings to return. </param> <param name="options"> Specify <see cref="F:System.StringSplitOptions.RemoveEmptyEntries" /> to omit empty array elements from the array returned, or <see cref="F:System.StringSplitOptions.None" /> to include empty array elements in the array returned. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is negative. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> is not one of the <see cref="T:System.StringSplitOptions" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Split(System.String[],System.StringSplitOptions)"> <summary> Returns a string array that contains the substrings in this string that are delimited by elements of a specified string array. A parameter specifies whether to return empty array elements. </summary> <returns> An array whose elements contain the substrings in this string that are delimited by one or more strings in <paramref name="separator" />. For more information, see the Remarks section. </returns> <param name="separator"> An array of strings that delimit the substrings in this string, an empty array that contains no delimiters, or null. </param> <param name="options"> Specify <see cref="F:System.StringSplitOptions.RemoveEmptyEntries" /> to omit empty array elements from the array returned, or <see cref="F:System.StringSplitOptions.None" /> to include empty array elements in the array returned. </param> <exception cref="T:System.ArgumentException"> <paramref name="options" /> is not one of the <see cref="T:System.StringSplitOptions" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.StartsWith(System.String)"> <summary> Determines whether the beginning of this instance matches the specified string. </summary> <returns>true if <paramref name="value" /> matches the beginning of this string; otherwise, false. </returns> <param name="value"> The <see cref="T:System.String" /> to compare. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.StartsWith(System.String,System.Boolean,System.Globalization.CultureInfo)"> <summary> Determines whether the beginning of this string matches the specified string when compared using the specified culture. </summary> <returns>true if the <paramref name="value" /> parameter matches the beginning of this string; otherwise, false. </returns> <param name="value"> The <see cref="T:System.String" /> object to compare. </param> <param name="ignoreCase">true to ignore case when comparing this string and <paramref name="value" />; otherwise, false. </param> <param name="culture"> Cultural information that determines how this string and <paramref name="value" /> are compared. If <paramref name="culture" /> is null, the current culture is used. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.StartsWith(System.String,System.StringComparison)"> <summary> Determines whether the beginning of this string matches the specified string when compared using the specified comparison option. </summary> <returns>true if the <paramref name="value" /> parameter matches the beginning of this string; otherwise, false. </returns> <param name="value"> A <see cref="T:System.String" /> object to compare to. </param> <param name="comparisonType"> One of the <see cref="T:System.StringComparison" /> values that determines how this string and <paramref name="value" /> are compared. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="comparisonType" /> is not a <see cref="T:System.StringComparison" /> value. </exception> </member> <member name="M:System.String.Substring(System.Int32)"> <summary> Retrieves a substring from this instance. The substring starts at a specified character position. </summary> <returns> A <see cref="T:System.String" /> object equivalent to the substring that begins at <paramref name="startIndex" /> in this instance, or <see cref="F:System.String.Empty" /> if <paramref name="startIndex" /> is equal to the length of this instance. </returns> <param name="startIndex"> The zero-based starting character position of a substring in this instance. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is less than zero or greater than the length of this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Substring(System.Int32,System.Int32)"> <summary> Retrieves a substring from this instance. The substring starts at a specified character position and has a specified length. </summary> <returns> A <see cref="T:System.String" /> equivalent to the substring of length <paramref name="length" /> that begins at <paramref name="startIndex" /> in this instance, or <see cref="F:System.String.Empty" /> if <paramref name="startIndex" /> is equal to the length of this instance and <paramref name="length" /> is zero. </returns> <param name="startIndex"> The zero-based starting character position of a substring in this instance. </param> <param name="length"> The number of characters in the substring. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> plus <paramref name="length" /> indicates a position not within this instance. -or- <paramref name="startIndex" /> or <paramref name="length" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.System#Collections#Generic#IEnumerable{T}#GetEnumerator"> <summary> Returns an enumerator that iterates through the current <see cref="T:System.String" /> object. </summary> <returns> A <see cref="T:System.Collections.Generic.IEnumerator`1" /> of type <see cref="T:System.Char" /> that can be used to iterate through the current <see cref="T:System.String" /> object. </returns> </member> <member name="M:System.String.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an enumerator that iterates through the current <see cref="T:System.String" /> object. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the current <see cref="T:System.String" /> object. </returns> </member> <member name="M:System.String.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current <see cref="T:System.String" /> object is <see cref="F:System.Boolean.TrueString" />, or false if the value of the current <see cref="T:System.String" /> object is <see cref="F:System.Boolean.FalseString" />. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.FormatException"> The value of the current <see cref="T:System.String" /> object is not <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. </exception> </member> <member name="M:System.String.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> <exception cref="T:System.FormatException"> The value of the current <see cref="T:System.String" /> object cannot be parsed. </exception> <exception cref="T:System.OverflowException"> The value of the current <see cref="T:System.String" /> object is a number greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />. </exception> </member> <member name="M:System.String.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />. </summary> <returns> The character at index 0 in the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> </member> <member name="M:System.String.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDateTime(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> </member> <member name="M:System.String.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> <exception cref="T:System.FormatException"> The value of the current <see cref="T:System.String" /> object cannot be parsed. </exception> <exception cref="T:System.OverflowException"> The value of the current <see cref="T:System.String" /> object is a number less than <see cref="F:System.Decimal.MinValue" /> or than <see cref="F:System.Decimal.MaxValue" /> greater. </exception> </member> <member name="M:System.String.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> <exception cref="T:System.FormatException"> The value of the current <see cref="T:System.String" /> object cannot be parsed. </exception> <exception cref="T:System.OverflowException"> The value of the current <see cref="T:System.String" /> object is a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception> </member> <member name="M:System.String.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> <exception cref="T:System.FormatException"> The value of the current <see cref="T:System.String" /> object cannot be parsed. </exception> <exception cref="T:System.OverflowException"> The value of the current <see cref="T:System.String" /> object is a number greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception> </member> <member name="M:System.String.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> </member> <member name="M:System.String.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> </member> <member name="M:System.String.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> <exception cref="T:System.FormatException"> The value of the current <see cref="T:System.String" /> object cannot be parsed. </exception> <exception cref="T:System.OverflowException"> The value of the current <see cref="T:System.String" /> object is a number greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception> </member> <member name="M:System.String.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> </member> <member name="M:System.String.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="type"> The type of the returned object. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value of the current <see cref="T:System.String" /> object cannot be converted to the type specified by the <paramref name="type" /> parameter. </exception> </member> <member name="M:System.String.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information. </param> <exception cref="T:System.FormatException"> The value of the current <see cref="T:System.String" /> object cannot be parsed. </exception> <exception cref="T:System.OverflowException"> The value of the current <see cref="T:System.String" /> object is a number greater than <see cref="F:System.UInt16.MaxValue" /> or less than <see cref="F:System.UInt16.MinValue" />. </exception> </member> <member name="M:System.String.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object. </param> <exception cref="T:System.FormatException"> The value of the current <see cref="T:System.String" /> object cannot be parsed. </exception> <exception cref="T:System.OverflowException"> The value of the current <see cref="T:System.String" /> object is a number greater <see cref="F:System.UInt32.MaxValue" /> or less than <see cref="F:System.UInt32.MinValue" /></exception> </member> <member name="M:System.String.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The converted value of the current <see cref="T:System.String" /> object. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object. </param> </member> <member name="M:System.String.ToCharArray"> <summary> Copies the characters in this instance to a Unicode character array. </summary> <returns> A Unicode character array whose elements are the individual characters of this instance. If this instance is an empty string, the returned array is empty and has a zero length. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.String.ToCharArray(System.Int32,System.Int32)"> <summary> Copies the characters in a specified substring in this instance to a Unicode character array. </summary> <returns> A Unicode character array whose elements are the <paramref name="length" /> number of characters in this instance starting from character position <paramref name="startIndex" />. </returns> <param name="startIndex"> The starting position of a substring in this instance. </param> <param name="length"> The length of the substring in this instance. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> or <paramref name="length" /> is less than zero. -or- <paramref name="startIndex" /> plus <paramref name="length" /> is greater than the length of this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.String.ToLower"> <summary> Returns a copy of this <see cref="T:System.String" /> converted to lowercase, using the casing rules of the current culture. </summary> <returns> A <see cref="T:System.String" /> in lowercase. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.String.ToLower(System.Globalization.CultureInfo)"> <summary> Returns a copy of this <see cref="T:System.String" /> converted to lowercase, using the casing rules of the specified culture. </summary> <returns> A <see cref="T:System.String" /> in lowercase. </returns> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> object that supplies culture-specific casing rules. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.String.ToLowerInvariant"> <summary> Returns a copy of this <see cref="T:System.String" /> object converted to lowercase using the casing rules of the invariant culture. </summary> <returns> A <see cref="T:System.String" /> object in lowercase. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.String.ToString"> <summary> Returns this instance of <see cref="T:System.String" />; no actual conversion is performed. </summary> <returns> This <see cref="T:System.String" />. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.String.ToString(System.IFormatProvider)"> <summary> Returns this instance of <see cref="T:System.String" />; no actual conversion is performed. </summary> <returns> This <see cref="T:System.String" />. </returns> <param name="provider"> (Reserved) An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.ToUpper"> <summary> Returns a copy of this <see cref="T:System.String" /> converted to uppercase, using the casing rules of the current culture. </summary> <returns> A <see cref="T:System.String" /> in uppercase. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.String.ToUpper(System.Globalization.CultureInfo)"> <summary> Returns a copy of this <see cref="T:System.String" /> converted to uppercase, using the casing rules of the specified culture. </summary> <returns> A <see cref="T:System.String" /> in uppercase. </returns> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> object that supplies culture-specific casing rules. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.String.ToUpperInvariant"> <summary> Returns a copy of this <see cref="T:System.String" /> object converted to uppercase using the casing rules of the invariant culture. </summary> <returns> A <see cref="T:System.String" /> object in uppercase. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.String.Trim"> <summary> Removes all leading and trailing white-space characters from the current <see cref="T:System.String" /> object. </summary> <returns> The string that remains after all white-space characters are removed from the start and end of the current <see cref="T:System.String" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.String.Trim(System.Char[])"> <summary> Removes all leading and trailing occurrences of a set of characters specified in an array from the current <see cref="T:System.String" /> object. </summary> <returns> The string that remains after all occurrences of the characters in the <paramref name="trimChars" /> parameter are removed from the start and end of the current <see cref="T:System.String" /> object. If <paramref name="trimChars" /> is null, white-space characters are removed instead. </returns> <param name="trimChars"> An array of Unicode characters to remove or null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.String.TrimEnd(System.Char[])"> <summary> Removes all trailing occurrences of a set of characters specified in an array from the current <see cref="T:System.String" /> object. </summary> <returns> The string that remains after all occurrences of the characters in the <paramref name="trimChars" /> parameter are removed from the end of the current <see cref="T:System.String" /> object. If <paramref name="trimChars" /> is null, white-space characters are removed instead. </returns> <param name="trimChars"> An array of Unicode characters to remove or null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.String.TrimStart(System.Char[])"> <summary> Removes all leading occurrences of a set of characters specified in an array from the current <see cref="T:System.String" /> object. </summary> <returns> The string that remains after all occurrences of characters in the <paramref name="trimChars" /> parameter are removed from the start of the current <see cref="T:System.String" /> object. If <paramref name="trimChars" /> is null, white-space characters are removed instead. </returns> <param name="trimChars"> An array of Unicode characters to remove or null. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.StringComparer"> <summary> Represents a string comparison operation that uses specific case and culture-based or ordinal comparison rules. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.StringComparer.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.StringComparer" /> class. </summary> </member> <member name="M:System.StringComparer.Compare(System.Object,System.Object)"> <summary> When overridden in a derived class, compares two objects and returns an indication of their relative sort order. </summary> <returns> Value Meaning Less than zero <paramref name="x" /> is less than <paramref name="y" />. -or- <paramref name="x" /> is null. Zero <paramref name="x" /> is equal to <paramref name="y" />. Greater than zero <paramref name="x" /> is greater than <paramref name="y" />. -or- <paramref name="y" /> is null. </returns> <param name="x"> An object to compare to <paramref name="y" />. </param> <param name="y"> An object to compare to <paramref name="x" />. </param> <exception cref="T:System.ArgumentException"> Neither <paramref name="x" /> nor <paramref name="y" /> is a <see cref="T:System.String" /> object, and neither <paramref name="x" /> nor <paramref name="y" /> implements the <see cref="T:System.IComparable" /> interface. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.StringComparer.Compare(System.String,System.String)"> <summary> When overridden in a derived class, compares two strings and returns an indication of their relative sort order. </summary> <returns> Value Meaning Less than zero <paramref name="x" /> is less than <paramref name="y" />. -or- <paramref name="x" /> is null. Zero <paramref name="x" /> is equal to <paramref name="y" />. Greater than zero <paramref name="x" /> is greater than <paramref name="y" />. -or- <paramref name="y" /> is null. </returns> <param name="x"> A string to compare to <paramref name="y" />. </param> <param name="y"> A string to compare to <paramref name="x" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.StringComparer.Create(System.Globalization.CultureInfo,System.Boolean)"> <summary> Creates a <see cref="T:System.StringComparer" /> object that compares strings according to the rules of a specified culture. </summary> <returns> A new <see cref="T:System.StringComparer" /> object that performs string comparisons according to the comparison rules used by the <paramref name="culture" /> parameter and the case rule specified by the <paramref name="ignoreCase" /> parameter. </returns> <param name="culture"> A culture whose linguistic rules are used to perform a string comparison. </param> <param name="ignoreCase">true to specify that comparison operations be case-insensitive; false to specify that comparison operations be case-sensitive. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.StringComparer.CurrentCulture"> <summary> Gets a <see cref="T:System.StringComparer" /> object that performs a case-sensitive string comparison using the word comparison rules of the current culture. </summary> <returns> A new <see cref="T:System.StringComparer" /> object. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.StringComparer.CurrentCultureIgnoreCase"> <summary> Gets a <see cref="T:System.StringComparer" /> object that performs case-insensitive string comparisons using the word comparison rules of the current culture. </summary> <returns> A new <see cref="T:System.StringComparer" /> object. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.StringComparer.Equals(System.Object,System.Object)"> <summary> When overridden in a derived class, indicates whether two objects are equal. </summary> <returns>true if <paramref name="x" /> and <paramref name="y" /> refer to the same object, or <paramref name="x" /> and <paramref name="y" /> are both the same type of object and those objects are equal; otherwise, false. </returns> <param name="x"> An object to compare to <paramref name="y" />. </param> <param name="y"> An object to compare to <paramref name="x" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.StringComparer.Equals(System.String,System.String)"> <summary> When overridden in a derived class, indicates whether two strings are equal. </summary> <returns>true if <paramref name="x" /> and <paramref name="y" /> refer to the same object, or <paramref name="x" /> and <paramref name="y" /> are equal; otherwise, false. </returns> <param name="x"> A string to compare to <paramref name="y" />. </param> <param name="y"> A string to compare to <paramref name="x" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.StringComparer.GetHashCode(System.Object)"> <summary> When overridden in a derived class, gets the hash code for the specified object. </summary> <returns> A 32-bit signed hash code calculated from the value of the <paramref name="obj" /> parameter. </returns> <param name="obj"> An object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="obj" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.StringComparer.GetHashCode(System.String)"> <summary> When overridden in a derived class, gets the hash code for the specified string. </summary> <returns> A 32-bit signed hash code calculated from the value of the <paramref name="obj" /> parameter. </returns> <param name="obj"> A string. </param> <filterpriority>2</filterpriority> </member> <member name="P:System.StringComparer.InvariantCulture"> <summary> Gets a <see cref="T:System.StringComparer" /> object that performs a case-sensitive string comparison using the word comparison rules of the invariant culture. </summary> <returns> A new <see cref="T:System.StringComparer" /> object. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.StringComparer.InvariantCultureIgnoreCase"> <summary> Gets a <see cref="T:System.StringComparer" /> object that performs a case-insensitive string comparison using the word comparison rules of the invariant culture. </summary> <returns> A new <see cref="T:System.StringComparer" /> object. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.StringComparer.Ordinal"> <summary> Gets a <see cref="T:System.StringComparer" /> object that performs a case-sensitive ordinal string comparison. </summary> <returns> A <see cref="T:System.StringComparer" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.StringComparer.OrdinalIgnoreCase"> <summary> Gets a <see cref="T:System.StringComparer" /> object that performs a case-insensitive ordinal string comparison. </summary> <returns> A <see cref="T:System.StringComparer" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.StringComparison"> <summary> Specifies the culture, case, and sort rules to be used by certain overloads of the <see cref="M:System.String.Compare(System.String,System.String)" /> and <see cref="M:System.String.Equals(System.Object)" /> methods. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.StringComparison.CurrentCulture"> <summary> Compare strings using culture-sensitive sort rules and the current culture. </summary> </member> <member name="F:System.StringComparison.CurrentCultureIgnoreCase"> <summary> Compare strings using culture-sensitive sort rules, the current culture, and ignoring the case of the strings being compared. </summary> </member> <member name="F:System.StringComparison.InvariantCulture"> <summary> Compare strings using culture-sensitive sort rules and the invariant culture. </summary> </member> <member name="F:System.StringComparison.InvariantCultureIgnoreCase"> <summary> Compare strings using culture-sensitive sort rules, the invariant culture, and ignoring the case of the strings being compared. </summary> </member> <member name="F:System.StringComparison.Ordinal"> <summary> Compare strings using ordinal sort rules. </summary> </member> <member name="F:System.StringComparison.OrdinalIgnoreCase"> <summary> Compare strings using ordinal sort rules and ignoring the case of the strings being compared. </summary> </member> <member name="T:System.StringSplitOptions"> <summary> Specifies whether applicable <see cref="Overload:System.String.Split" /> method overloads include or omit empty substrings from the return value. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.StringSplitOptions.None"> <summary> The return value includes array elements that contain an empty string </summary> </member> <member name="F:System.StringSplitOptions.RemoveEmptyEntries"> <summary> The return value does not include array elements that contain an empty string </summary> </member> <member name="T:System.SystemException"> <summary> Defines the base class for predefined exceptions in the <see cref="N:System" /> namespace. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.SystemException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.SystemException" /> class. </summary> </member> <member name="M:System.SystemException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.SystemException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.SystemException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.SystemException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.SystemException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.SystemException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.ThreadStaticAttribute"> <summary> Indicates that the value of a static field is unique for each thread. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.ThreadStaticAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ThreadStaticAttribute" /> class. </summary> </member> <member name="T:System.TimeoutException"> <summary> The exception that is thrown when the time allotted for a process or operation has expired. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.TimeoutException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.TimeoutException" /> class. </summary> </member> <member name="M:System.TimeoutException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.TimeoutException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination. The <paramref name="context" /> parameter is reserved for future use, and can be specified as null. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The class name is null, or <see cref="P:System.Exception.HResult" /> is zero (0). </exception> </member> <member name="M:System.TimeoutException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.TimeoutException" /> class with the specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.TimeoutException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.TimeoutException" /> class with the specified error message and inner exception. </summary> <param name="message"> The message that describes the error. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.TimeSpan"> <summary> Represents a time interval. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new <see cref="T:System.TimeSpan" /> to a specified number of hours, minutes, and seconds. </summary> <param name="hours"> Number of hours. </param> <param name="minutes"> Number of minutes. </param> <param name="seconds"> Number of seconds. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The parameters specify a <see cref="T:System.TimeSpan" /> value less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. </exception> </member> <member name="M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new <see cref="T:System.TimeSpan" /> to a specified number of days, hours, minutes, and seconds. </summary> <param name="days"> Number of days. </param> <param name="hours"> Number of hours. </param> <param name="minutes"> Number of minutes. </param> <param name="seconds"> Number of seconds. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The parameters specify a <see cref="T:System.TimeSpan" /> value less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. </exception> </member> <member name="M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new <see cref="T:System.TimeSpan" /> to a specified number of days, hours, minutes, seconds, and milliseconds. </summary> <param name="days"> Number of days. </param> <param name="hours"> Number of hours. </param> <param name="minutes"> Number of minutes. </param> <param name="seconds"> Number of seconds. </param> <param name="milliseconds"> Number of milliseconds. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The parameters specify a <see cref="T:System.TimeSpan" /> value less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. </exception> </member> <member name="M:System.TimeSpan.#ctor(System.Int64)"> <summary> Initializes a new <see cref="T:System.TimeSpan" /> to the specified number of ticks. </summary> <param name="ticks"> A time period expressed in 100-nanosecond units. </param> </member> <member name="M:System.TimeSpan.Add(System.TimeSpan)"> <summary> Adds the specified <see cref="T:System.TimeSpan" /> to this instance. </summary> <returns> A <see cref="T:System.TimeSpan" /> that represents the value of this instance plus the value of <paramref name="ts" />. </returns> <param name="ts"> A <see cref="T:System.TimeSpan" />. </param> <exception cref="T:System.OverflowException"> The resulting <see cref="T:System.TimeSpan" /> is less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.Compare(System.TimeSpan,System.TimeSpan)"> <summary> Compares two <see cref="T:System.TimeSpan" /> values and returns an integer that indicates whether the first value is shorter than, equal to, or longer than the second value. </summary> <returns> Value Condition -1 <paramref name="t1" /> is shorter than <paramref name="t2" /> 0 <paramref name="t1" /> is equal to <paramref name="t2" /> 1 <paramref name="t1" /> is longer than <paramref name="t2" /></returns> <param name="t1"> A <see cref="T:System.TimeSpan" />. </param> <param name="t2"> A <see cref="T:System.TimeSpan" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an integer that indicates whether this <see cref="instance" /> is shorter than, equal to, or longer than the specified object. </summary> <returns> Value Condition -1 This instance is shorter than <paramref name="value" />. 0 This instance is equal to <paramref name="value" />. 1 This instance is longer than <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.TimeSpan" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.CompareTo(System.TimeSpan)"> <summary> Compares this instance to a specified <see cref="T:System.TimeSpan" /> object and returns an integer that indicates whether this <see cref="instance" /> is shorter than, equal to, or longer than the <see cref="T:System.TimeSpan" /> object. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Value Description A negative integer This instance is shorter than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. A positive integer This instance is longer than <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.TimeSpan" /> object to compare to this instance. </param> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeSpan.Days"> <summary> Gets the days component of the time interval represented by the current <see cref="T:System.TimeSpan" /> structure. </summary> <returns> The day component of this instance. The return value can be positive or negative. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.Duration"> <summary> Returns a new <see cref="T:System.TimeSpan" /> object whose value is the absolute value of the current <see cref="T:System.TimeSpan" /> object. </summary> <returns> A new <see cref="T:System.TimeSpan" /> whose value is the absolute value of the current <see cref="T:System.TimeSpan" /> object. </returns> <exception cref="T:System.OverflowException"> The value of this instance is <see cref="F:System.TimeSpan.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="value" /> is a <see cref="T:System.TimeSpan" /> object that represents the same time interval as the current <see cref="T:System.TimeSpan" /> structure; otherwise, false. </returns> <param name="value"> An object to compare with this instance. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.Equals(System.TimeSpan)"> <summary> Returns a value indicating whether this instance is equal to a specified <see cref="T:System.TimeSpan" /> object. </summary> <returns>true if <paramref name="obj" /> represents the same time interval as this instance; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.TimeSpan" /> object to compare with this instance. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.Equals(System.TimeSpan,System.TimeSpan)"> <summary> Returns a value indicating whether two specified instances of <see cref="T:System.TimeSpan" /> are equal. </summary> <returns>true if the values of <paramref name="t1" /> and <paramref name="t2" /> are equal; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.TimeSpan" />. </param> <param name="t2"> A TimeSpan. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.FromDays(System.Double)"> <summary> Returns a <see cref="T:System.TimeSpan" /> that represents a specified number of days, where the specification is accurate to the nearest millisecond. </summary> <returns> A <see cref="T:System.TimeSpan" /> that represents <paramref name="value" />. </returns> <param name="value"> A number of days, accurate to the nearest millisecond. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. -or- <paramref name="value" /> is <see cref="F:System.Double.PositiveInfinity" />. -or- <paramref name="value" /> is <see cref="F:System.Double.NegativeInfinity" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.FromHours(System.Double)"> <summary> Returns a <see cref="T:System.TimeSpan" /> that represents a specified number of hours, where the specification is accurate to the nearest millisecond. </summary> <returns> A <see cref="T:System.TimeSpan" /> that represents <paramref name="value" />. </returns> <param name="value"> A number of hours accurate to the nearest millisecond. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. -or- <paramref name="value" /> is <see cref="F:System.Double.PositiveInfinity" />. -or- <paramref name="value" /> is <see cref="F:System.Double.NegativeInfinity" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.FromMilliseconds(System.Double)"> <summary> Returns a <see cref="T:System.TimeSpan" /> that represents a specified number of milliseconds. </summary> <returns> A <see cref="T:System.TimeSpan" /> that represents <paramref name="value" />. </returns> <param name="value"> A number of milliseconds. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. -or- <paramref name="value" /> is <see cref="F:System.Double.PositiveInfinity" />. -or- <paramref name="value" /> is <see cref="F:System.Double.NegativeInfinity" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.FromMinutes(System.Double)"> <summary> Returns a <see cref="T:System.TimeSpan" /> that represents a specified number of minutes, where the specification is accurate to the nearest millisecond. </summary> <returns> A <see cref="T:System.TimeSpan" /> that represents <paramref name="value" />. </returns> <param name="value"> A number of minutes, accurate to the nearest millisecond. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. -or- <paramref name="value" /> is <see cref="F:System.Double.PositiveInfinity" />. -or- <paramref name="value" /> is <see cref="F:System.Double.NegativeInfinity" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.FromSeconds(System.Double)"> <summary> Returns a <see cref="T:System.TimeSpan" /> that represents a specified number of seconds, where the specification is accurate to the nearest millisecond. </summary> <returns> A <see cref="T:System.TimeSpan" /> that represents <paramref name="value" />. </returns> <param name="value"> A number of seconds, accurate to the nearest millisecond. </param> <exception cref="T:System.OverflowException"> <paramref name="value" /> is less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. -or- <paramref name="value" /> is <see cref="F:System.Double.PositiveInfinity" />. -or- <paramref name="value" /> is <see cref="F:System.Double.NegativeInfinity" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.FromTicks(System.Int64)"> <summary> Returns a <see cref="T:System.TimeSpan" /> that represents a specified time, where the specification is in units of ticks. </summary> <returns> A <see cref="T:System.TimeSpan" /> with a value of <paramref name="value" />. </returns> <param name="value"> A number of ticks that represent a time. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.GetHashCode"> <summary> Returns a hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.TimeSpan.Hours"> <summary> Gets the hours component of the time interval represented by the current <see cref="T:System.TimeSpan" /> structure. </summary> <returns> The hour component of the current <see cref="T:System.TimeSpan" /> structure. The return value ranges from -23 through 23. </returns> <filterpriority>1</filterpriority> </member> <member name="F:System.TimeSpan.MaxValue"> <summary> Represents the maximum <see cref="T:System.TimeSpan" /> value. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeSpan.Milliseconds"> <summary> Gets the milliseconds component of the time interval represented by the current <see cref="T:System.TimeSpan" /> structure. </summary> <returns> The millisecond component of the current <see cref="T:System.TimeSpan" /> structure. The return value ranges from -999 through 999. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeSpan.Minutes"> <summary> Gets the minutes component of the time interval represented by the current <see cref="T:System.TimeSpan" /> structure. </summary> <returns> The minute component of the current <see cref="T:System.TimeSpan" /> structure. The return value ranges from -59 through 59. </returns> <filterpriority>1</filterpriority> </member> <member name="F:System.TimeSpan.MinValue"> <summary> Represents the minimum <see cref="T:System.TimeSpan" /> value. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.Negate"> <summary> Returns a <see cref="T:System.TimeSpan" /> whose value is the negated value of this instance. </summary> <returns> The same numeric value as this instance, but with the opposite sign. </returns> <exception cref="T:System.OverflowException"> The negated value of this instance cannot be represented by a <see cref="T:System.TimeSpan" />; that is, the value of this instance is <see cref="F:System.TimeSpan.MinValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.op_Addition(System.TimeSpan,System.TimeSpan)"> <summary> Adds two specified <see cref="T:System.TimeSpan" /> instances. </summary> <returns> A <see cref="T:System.TimeSpan" /> whose value is the sum of the values of <paramref name="t1" /> and <paramref name="t2" />. </returns> <param name="t1"> A <see cref="T:System.TimeSpan" />. </param> <param name="t2"> A TimeSpan. </param> <exception cref="T:System.OverflowException"> The resulting <see cref="T:System.TimeSpan" /> is less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.TimeSpan.op_Equality(System.TimeSpan,System.TimeSpan)"> <summary> Indicates whether two <see cref="T:System.TimeSpan" /> instances are equal. </summary> <returns>true if the values of <paramref name="t1" /> and <paramref name="t2" /> are equal; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.TimeSpan" />. </param> <param name="t2"> A TimeSpan. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.TimeSpan.op_GreaterThan(System.TimeSpan,System.TimeSpan)"> <summary> Indicates whether a specified <see cref="T:System.TimeSpan" /> is greater than another specified <see cref="T:System.TimeSpan" />. </summary> <returns>true if the value of <paramref name="t1" /> is greater than the value of <paramref name="t2" />; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.TimeSpan" />. </param> <param name="t2"> A TimeSpan. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.TimeSpan.op_GreaterThanOrEqual(System.TimeSpan,System.TimeSpan)"> <summary> Indicates whether a specified <see cref="T:System.TimeSpan" /> is greater than or equal to another specified <see cref="T:System.TimeSpan" />. </summary> <returns>true if the value of <paramref name="t1" /> is greater than or equal to the value of <paramref name="t2" />; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.TimeSpan" />. </param> <param name="t2"> A TimeSpan. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.TimeSpan.op_Inequality(System.TimeSpan,System.TimeSpan)"> <summary> Indicates whether two <see cref="T:System.TimeSpan" /> instances are not equal. </summary> <returns>true if the values of <paramref name="t1" /> and <paramref name="t2" /> are not equal; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.TimeSpan" />. </param> <param name="t2"> A TimeSpan. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.TimeSpan.op_LessThan(System.TimeSpan,System.TimeSpan)"> <summary> Indicates whether a specified <see cref="T:System.TimeSpan" /> is less than another specified <see cref="T:System.TimeSpan" />. </summary> <returns>true if the value of <paramref name="t1" /> is less than the value of <paramref name="t2" />; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.TimeSpan" />. </param> <param name="t2"> A TimeSpan. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.TimeSpan.op_LessThanOrEqual(System.TimeSpan,System.TimeSpan)"> <summary> Indicates whether a specified <see cref="T:System.TimeSpan" /> is less than or equal to another specified <see cref="T:System.TimeSpan" />. </summary> <returns>true if the value of <paramref name="t1" /> is less than or equal to the value of <paramref name="t2" />; otherwise, false. </returns> <param name="t1"> A <see cref="T:System.TimeSpan" />. </param> <param name="t2"> A TimeSpan. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.TimeSpan.op_Subtraction(System.TimeSpan,System.TimeSpan)"> <summary> Subtracts a specified <see cref="T:System.TimeSpan" /> from another specified <see cref="T:System.TimeSpan" />. </summary> <returns> A TimeSpan whose value is the result of the value of <paramref name="t1" /> minus the value of <paramref name="t2" />. </returns> <param name="t1"> A <see cref="T:System.TimeSpan" />. </param> <param name="t2"> A TimeSpan. </param> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.TimeSpan.op_UnaryNegation(System.TimeSpan)"> <summary> Returns a <see cref="T:System.TimeSpan" /> whose value is the negated value of the specified instance. </summary> <returns> A <see cref="T:System.TimeSpan" /> with the same numeric value as this instance, but the opposite sign. </returns> <param name="t"> A <see cref="T:System.TimeSpan" />. </param> <exception cref="T:System.OverflowException"> The negated value of this instance cannot be represented by a <see cref="T:System.TimeSpan" />; that is, the value of this instance is <see cref="F:System.TimeSpan.MinValue" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.TimeSpan.op_UnaryPlus(System.TimeSpan)"> <summary> Returns the specified instance of <see cref="T:System.TimeSpan" />. </summary> <returns> Returns <paramref name="t" />. </returns> <param name="t"> A <see cref="T:System.TimeSpan" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.TimeSpan.Parse(System.String)"> <summary> Constructs a new <see cref="T:System.TimeSpan" /> object from a time interval specified in a string. </summary> <returns> A <see cref="T:System.TimeSpan" /> that corresponds to <paramref name="s" />. </returns> <param name="s"> A string that specifies a time interval. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> has an invalid format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. -or- At least one of the days, hours, minutes, or seconds components is outside its valid range. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeSpan.Seconds"> <summary> Gets the seconds component of the time interval represented by the current <see cref="T:System.TimeSpan" /> structure. </summary> <returns> The second component of the current <see cref="T:System.TimeSpan" /> structure. The return value ranges from -59 through 59. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.Subtract(System.TimeSpan)"> <summary> Subtracts the specified <see cref="T:System.TimeSpan" /> from this instance. </summary> <returns> A <see cref="T:System.TimeSpan" /> whose value is the result of the value of this instance minus the value of <paramref name="ts" />. </returns> <param name="ts"> A <see cref="T:System.TimeSpan" />. </param> <exception cref="T:System.OverflowException"> The return value is less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeSpan.Ticks"> <summary> Gets the number of ticks that represent the value of the current <see cref="T:System.TimeSpan" /> structure. </summary> <returns> The number of ticks contained in this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="F:System.TimeSpan.TicksPerDay"> <summary> Represents the number of ticks in 1 day. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.TimeSpan.TicksPerHour"> <summary> Represents the number of ticks in 1 hour. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.TimeSpan.TicksPerMillisecond"> <summary> Represents the number of ticks in 1 millisecond. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.TimeSpan.TicksPerMinute"> <summary> Represents the number of ticks in 1 minute. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.TimeSpan.TicksPerSecond"> <summary> Represents the number of ticks in 1 second. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.ToString"> <summary> Returns the string representation of the value of this instance. </summary> <returns> A string that represents the value of this instance. The return value is of the form: [-][d.]hh:mm:ss[.fffffff] Elements in square brackets ([ and ]) may not be included in the returned string. Colons and periods (: and.) are literal characters. The non-literal elements are listed in the following table. Item Description "-" A minus sign, which indicates a negative time span. No sign is included for a positive time span. "d" The number of days in the time span. This element is omitted if the time span is less than one day. "hh" The number of hours in the time span, ranging from 0 to 23. "mm" The number of minutes in the time span, ranging from 0 to 59. "ss" The number of seconds in the time span, ranging from 0 to 59. "fffffff" Fractional seconds in the time span. This element is omitted if the time span does not include fractional seconds. If present, fractional seconds are always expressed using 7 decimal digits. Note: For more information about comparing the string representation of <see cref="T:System.TimeSpan" /> and Oracle data types, see article Q324577, "System.TimeSpan Does Not Match Oracle 9i INTERVAL DAY TO SECOND Data Type," in the Microsoft Knowledge Base at http://support.microsoft.com. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeSpan.TotalDays"> <summary> Gets the value of the current <see cref="T:System.TimeSpan" /> structure expressed in whole and fractional days. </summary> <returns> The total number of days represented by this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeSpan.TotalHours"> <summary> Gets the value of the current <see cref="T:System.TimeSpan" /> structure expressed in whole and fractional hours. </summary> <returns> The total number of hours represented by this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeSpan.TotalMilliseconds"> <summary> Gets the value of the current <see cref="T:System.TimeSpan" /> structure expressed in whole and fractional milliseconds. </summary> <returns> The total number of milliseconds represented by this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeSpan.TotalMinutes"> <summary> Gets the value of the current <see cref="T:System.TimeSpan" /> structure expressed in whole and fractional minutes. </summary> <returns> The total number of minutes represented by this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeSpan.TotalSeconds"> <summary> Gets the value of the current <see cref="T:System.TimeSpan" /> structure expressed in whole and fractional seconds. </summary> <returns> The total number of seconds represented by this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeSpan.TryParse(System.String,System.TimeSpan@)"> <summary> Constructs a new <see cref="T:System.TimeSpan" /> object from a time interval specified in a string. Parameters specify the time interval and the variable where the new <see cref="T:System.TimeSpan" /> object is returned. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. This operation returns false if the <paramref name="s" /> parameter is null, has an invalid format, represents a time interval less than <see cref="F:System.TimeSpan.MinValue" /> or greater than <see cref="F:System.TimeSpan.MaxValue" />, or has at least one days, hours, minutes, or seconds component outside its valid range. </returns> <param name="s"> A string that specifies a time interval. </param> <param name="result"> When this method returns, contains an object that represents the time interval specified by <paramref name="s" />, or <see cref="F:System.TimeSpan.Zero" /> if the conversion failed. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="F:System.TimeSpan.Zero"> <summary> Represents the zero <see cref="T:System.TimeSpan" /> value. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.TimeZone"> <summary> Represents a time zone. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.TimeZone.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.TimeZone" /> class. </summary> </member> <member name="P:System.TimeZone.CurrentTimeZone"> <summary> Gets the time zone of the current computer. </summary> <returns> A <see cref="T:System.TimeZone" /> object that represents the current local time zone. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeZone.DaylightName"> <summary> Gets the daylight saving time zone name. </summary> <returns> The daylight saving time zone name. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.TimeZone.GetDaylightChanges(System.Int32)"> <summary> Returns the daylight saving time period for a particular year. </summary> <returns> A <see cref="T:System.Globalization.DaylightTime" /> object that contains the start and end date for daylight saving time in <paramref name="year" />. </returns> <param name="year"> The year that the daylight saving time period applies to. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than 1 or greater than 9999. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.TimeZone.GetUtcOffset(System.DateTime)"> <summary> Returns the Coordinated Universal Time (UTC) offset for the specified local time. </summary> <returns> The Coordinated Universal Time (UTC) offset from <paramref name="Time" />. </returns> <param name="time"> A date and time value. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.TimeZone.IsDaylightSavingTime(System.DateTime)"> <summary> Returns a value indicating whether the specified date and time is within a daylight saving time period. </summary> <returns>true if <paramref name="time" /> is in a daylight saving time period; otherwise, false. </returns> <param name="time"> A date and time. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.TimeZone.IsDaylightSavingTime(System.DateTime,System.Globalization.DaylightTime)"> <summary> Returns a value indicating whether the specified date and time is within the specified daylight saving time period. </summary> <returns>true if <paramref name="time" /> is in <paramref name="daylightTimes" />; otherwise, false. </returns> <param name="time"> A date and time. </param> <param name="daylightTimes"> A daylight saving time period. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="daylightTimes" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.TimeZone.StandardName"> <summary> Gets the standard time zone name. </summary> <returns> The standard time zone name. </returns> <exception cref="T:System.ArgumentNullException"> An attempt was made to set this property to null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.TimeZone.ToLocalTime(System.DateTime)"> <summary> Returns the local time that corresponds to a specified date and time value. </summary> <returns> A <see cref="T:System.DateTime" /> object whose value is the local time that corresponds to <paramref name="time" />. </returns> <param name="time"> A Coordinated Universal Time (UTC) time. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.TimeZone.ToUniversalTime(System.DateTime)"> <summary> Returns the Coordinated Universal Time (UTC) that corresponds to a specified time. </summary> <returns> A <see cref="T:System.DateTime" /> object whose value is the Coordinated Universal Time (UTC) that corresponds to <paramref name="time" />. </returns> <param name="time"> A date and time. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.Type"> <summary> Represents type declarations: class types, interface types, array types, value types, enumeration types, type parameters, generic type definitions, and open or closed constructed generic types. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Type" /> class. </summary> </member> <member name="P:System.Type.Assembly"> <summary> Gets the <see cref="T:System.Reflection.Assembly" /> in which the type is declared. For generic types, gets the <see cref="T:System.Reflection.Assembly" /> in which the generic type is defined. </summary> <returns> An <see cref="T:System.Reflection.Assembly" /> instance that describes the assembly containing the current type. For generic types, the instance describes the assembly that contains the generic type definition, not the assembly that creates and uses a particular constructed type. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.AssemblyQualifiedName"> <summary> Gets the assembly-qualified name of the <see cref="T:System.Type" />, which includes the name of the assembly from which the <see cref="T:System.Type" /> was loaded. </summary> <returns> The assembly-qualified name of the <see cref="T:System.Type" />, which includes the name of the assembly from which the <see cref="T:System.Type" /> was loaded, or null if the current instance represents a generic type parameter. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.Attributes"> <summary> Gets the attributes associated with the <see cref="T:System.Type" />. </summary> <returns> A <see cref="T:System.Reflection.TypeAttributes" /> object representing the attribute set of the <see cref="T:System.Type" />, unless the <see cref="T:System.Type" /> represents a generic type parameter, in which case the value is unspecified. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.BaseType"> <summary> Gets the type from which the current <see cref="T:System.Type" /> directly inherits. </summary> <returns> The <see cref="T:System.Type" /> from which the current <see cref="T:System.Type" /> directly inherits, or null if the current Type represents the <see cref="T:System.Object" /> class or an interface. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.ContainsGenericParameters"> <summary> Gets a value indicating whether the current <see cref="T:System.Type" /> object has type parameters that have not been replaced by specific types. </summary> <returns>true if the <see cref="T:System.Type" /> object is itself a generic type parameter or has type parameters for which specific types have not been supplied; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.DeclaringMethod"> <summary> Gets a <see cref="T:System.Reflection.MethodBase" /> that represents the declaring method, if the current <see cref="T:System.Type" /> represents a type parameter of a generic method. </summary> <returns> If the current <see cref="T:System.Type" /> represents a type parameter of a generic method, a <see cref="T:System.Reflection.MethodBase" /> that represents declaring method; otherwise, null. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.DeclaringType"> <summary> Gets the type that declares the current nested type or generic type parameter. </summary> <returns> A <see cref="T:System.Type" /> object representing the enclosing type, if the current type is a nested type; or the generic type definition, if the current type is a type parameter of a generic type; or the type that declares the generic method, if the current type is a type parameter of a generic method; otherwise, null. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.DefaultBinder"> <summary> Gets a reference to the default binder, which implements internal rules for selecting the appropriate members to be called by <see cref="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])" />. </summary> <returns> A reference to the default binder used by the system. </returns> <filterpriority>1</filterpriority> </member> <member name="F:System.Type.Delimiter"> <summary> Separates names in the namespace of the <see cref="T:System.Type" />. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Type.EmptyTypes"> <summary> Represents an empty array of type <see cref="T:System.Type" />. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.Equals(System.Object)"> <summary> Determines if the underlying system type of the current <see cref="T:System.Type" /> is the same as the underlying system type of the specified <see cref="T:System.Object" />. </summary> <returns>true if the underlying system type of <paramref name="o" /> is the same as the underlying system type of the current <see cref="T:System.Type" />; otherwise, false. This method also returns false if the object specified by the <paramref name="o" /> parameter is not a Type. </returns> <param name="o"> The <see cref="T:System.Object" /> whose underlying system type is to be compared with the underlying system type of the current <see cref="T:System.Type" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.Equals(System.Type)"> <summary> Determines if the underlying system type of the current <see cref="T:System.Type" /> is the same as the underlying system type of the specified <see cref="T:System.Type" />. </summary> <returns>true if the underlying system type of <paramref name="o" /> is the same as the underlying system type of the current <see cref="T:System.Type" />; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Type" /> whose underlying system type is to be compared with the underlying system type of the current <see cref="T:System.Type" />. </param> <filterpriority>2</filterpriority> </member> <member name="F:System.Type.FilterAttribute"> <summary> Represents the member filter used on attributes. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Type.FilterName"> <summary> Represents the case-sensitive member filter used on names. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Type.FilterNameIgnoreCase"> <summary> Represents the case-insensitive member filter used on names. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.FindInterfaces(System.Reflection.TypeFilter,System.Object)"> <summary> Returns an array of <see cref="T:System.Type" /> objects representing a filtered list of interfaces implemented or inherited by the current <see cref="T:System.Type" />. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing a filtered list of the interfaces implemented or inherited by the current <see cref="T:System.Type" />, or an empty array of type <see cref="T:System.Type" /> if no interfaces matching the filter are implemented or inherited by the current <see cref="T:System.Type" />. </returns> <param name="filter"> The <see cref="T:System.Reflection.TypeFilter" /> delegate that compares the interfaces against <paramref name="filterCriteria" />. </param> <param name="filterCriteria"> The search criteria that determines whether an interface should be included in the returned array. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="filter" /> is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> A static initializer is invoked and throws an exception. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.FindMembers(System.Reflection.MemberTypes,System.Reflection.BindingFlags,System.Reflection.MemberFilter,System.Object)"> <summary> Returns a filtered array of <see cref="T:System.Reflection.MemberInfo" /> objects of the specified member type. </summary> <returns> A filtered array of <see cref="T:System.Reflection.MemberInfo" /> objects of the specified member type. -or- An empty array of type <see cref="T:System.Reflection.MemberInfo" />, if the current <see cref="T:System.Type" /> does not have members of type <paramref name="memberType" /> that match the filter criteria. </returns> <param name="memberType"> A MemberTypes object indicating the type of member to search for. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="filter"> The delegate that does the comparisons, returning true if the member currently being inspected matches the <paramref name="filterCriteria" /> and false otherwise. You can use the FilterAttribute, FilterName, and FilterNameIgnoreCase delegates supplied by this class. The first uses the fields of FieldAttributes, MethodAttributes, and MethodImplAttributes as search criteria, and the other two delegates use String objects as the search criteria. </param> <param name="filterCriteria"> The search criteria that determines whether a member is returned in the array of MemberInfo objects. The fields of FieldAttributes, MethodAttributes, and MethodImplAttributes can be used in conjunction with the FilterAttribute delegate supplied by this class. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="filter" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.FullName"> <summary> Gets the fully qualified name of the <see cref="T:System.Type" />, including the namespace of the <see cref="T:System.Type" /> but not the assembly. </summary> <returns> The fully qualified name of the <see cref="T:System.Type" />, including the namespace of the <see cref="T:System.Type" /> but not the assembly; or null if the current instance represents a generic type parameter, an array type, pointer type, or byref type based on a type parameter, or a generic type that is not a generic type definition but contains unresolved type parameters. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.GenericParameterAttributes"> <summary> Gets a combination of <see cref="T:System.Reflection.GenericParameterAttributes" /> flags that describe the covariance and special constraints of the current generic type parameter. </summary> <returns> A bitwise combination of <see cref="T:System.Reflection.GenericParameterAttributes" /> values that describes the covariance and special constraints of the current generic type parameter. </returns> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Type" /> object is not a generic type parameter. That is, the <see cref="P:System.Type.IsGenericParameter" /> property returns false. </exception> <exception cref="T:System.NotSupportedException"> The invoked method is not supported in the base class. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.GenericParameterPosition"> <summary> Gets the position of the type parameter in the type parameter list of the generic type or method that declared the parameter, when the <see cref="T:System.Type" /> object represents a type parameter of a generic type or a generic method. </summary> <returns> The position of a type parameter in the type parameter list of the generic type or method that defines the parameter. Position numbers begin at 0. </returns> <exception cref="T:System.InvalidOperationException"> The current type does not represent a type parameter. That is, <see cref="P:System.Type.IsGenericParameter" /> returns false. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetArrayRank"> <summary> Gets the number of dimensions in an <see cref="T:System.Array" />. </summary> <returns> An <see cref="T:System.Int32" /> containing the number of dimensions in the current Type. </returns> <exception cref="T:System.NotSupportedException"> The functionality of this method is unsupported in the base class and must be implemented in a derived class instead. </exception> <exception cref="T:System.ArgumentException"> The current Type is not an array. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetAttributeFlagsImpl"> <summary> When overridden in a derived class, implements the <see cref="P:System.Type.Attributes" /> property and gets a bitmask indicating the attributes associated with the <see cref="T:System.Type" />. </summary> <returns> A <see cref="T:System.Reflection.TypeAttributes" /> object representing the attribute set of the <see cref="T:System.Type" />. </returns> </member> <member name="M:System.Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Searches for a constructor whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> object representing the constructor that matches the specified requirements, if found; otherwise, null. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="callConvention"> The <see cref="T:System.Reflection.CallingConventions" /> object that specifies the set of rules to use regarding the order and layout of arguments, how the return value is passed, what registers are used for arguments, and the stack is cleaned up. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the constructor to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a constructor that takes no parameters. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="types" /> is null. -or- One of the elements in <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. -or- <paramref name="types" /> and <paramref name="modifiers" /> do not have the same length. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Searches for a constructor whose parameters match the specified argument types and modifiers, using the specified binding constraints. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> object representing the constructor that matches the specified requirements, if found; otherwise, null. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the constructor to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a constructor that takes no parameters. -or- <see cref="F:System.Type.EmptyTypes" />. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the parameter type array. The default binder does not process this parameter. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="types" /> is null. -or- One of the elements in <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. -or- <paramref name="types" /> and <paramref name="modifiers" /> do not have the same length. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetConstructor(System.Type[])"> <summary> Searches for a public instance constructor whose parameters match the types in the specified array. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> object representing the public instance constructor whose parameters match the types in the parameter type array, if found; otherwise, null. </returns> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the desired constructor. -or- An empty array of <see cref="T:System.Type" /> objects, to get a constructor that takes no parameters. Such an empty array is provided by the static field <see cref="F:System.Type.EmptyTypes" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="types" /> is null. -or- One of the elements in <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetConstructorImpl(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"> <summary> When overridden in a derived class, searches for a constructor whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> object representing the constructor that matches the specified requirements, if found; otherwise, null. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="callConvention"> The <see cref="T:System.Reflection.CallingConventions" /> object that specifies the set of rules to use regarding the order and layout of arguments, how the return value is passed, what registers are used for arguments, and the stack is cleaned up. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the constructor to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a constructor that takes no parameters. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="types" /> is null. -or- One of the elements in <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. -or- <paramref name="types" /> and <paramref name="modifiers" /> do not have the same length. </exception> </member> <member name="M:System.Type.GetConstructors"> <summary> Returns all the public constructors defined for the current <see cref="T:System.Type" />. </summary> <returns> An array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing all the public instance constructors defined for the current <see cref="T:System.Type" />, but not including the type initializer (static constructor). If no public instance constructors are defined for the current <see cref="T:System.Type" />, or if the current <see cref="T:System.Type" /> represents a type parameter in the definition of a generic type or generic method, an empty array of type <see cref="T:System.Reflection.ConstructorInfo" /> is returned. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetConstructors(System.Reflection.BindingFlags)"> <summary> When overridden in a derived class, searches for the constructors defined for the current <see cref="T:System.Type" />, using the specified BindingFlags. </summary> <returns> An array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing all constructors defined for the current <see cref="T:System.Type" /> that match the specified binding constraints, including the type initializer if it is defined. Returns an empty array of type <see cref="T:System.Reflection.ConstructorInfo" /> if no constructors are defined for the current <see cref="T:System.Type" />, if none of the defined constructors match the binding constraints, or if the current <see cref="T:System.Type" /> represents a type parameter in the definition of a generic type or generic method. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetDefaultMembers"> <summary> Searches for the members defined for the current <see cref="T:System.Type" /> whose <see cref="T:System.Reflection.DefaultMemberAttribute" /> is set. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing all default members of the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.MemberInfo" />, if the current <see cref="T:System.Type" /> does not have default members. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetElementType"> <summary> When overridden in a derived class, returns the <see cref="T:System.Type" /> of the object encompassed or referred to by the current array, pointer or reference type. </summary> <returns> The <see cref="T:System.Type" /> of the object encompassed or referred to by the current array, pointer, or reference type, or null if the current <see cref="T:System.Type" /> is not an array or a pointer, or is not passed by reference, or represents a generic type or a type parameter in the definition of a generic type or generic method. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetEvent(System.String)"> <summary> Returns the <see cref="T:System.Reflection.EventInfo" /> object representing the specified public event. </summary> <returns> The <see cref="T:System.Reflection.EventInfo" /> object representing the specified public event which is declared or inherited by the current <see cref="T:System.Type" />, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of an event which is declared or inherited by the current <see cref="T:System.Type" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetEvent(System.String,System.Reflection.BindingFlags)"> <summary> When overridden in a derived class, returns the <see cref="T:System.Reflection.EventInfo" /> object representing the specified event, using the specified binding constraints. </summary> <returns> The <see cref="T:System.Reflection.EventInfo" /> object representing the specified event which is declared or inherited by the current <see cref="T:System.Type" />, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of an event which is declared or inherited by the current <see cref="T:System.Type" />. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetEvents"> <summary> Returns all the public events that are declared or inherited by the current <see cref="T:System.Type" />. </summary> <returns> An array of <see cref="T:System.Reflection.EventInfo" /> objects representing all the public events which are declared or inherited by the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.EventInfo" />, if the current <see cref="T:System.Type" /> does not have public events. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetEvents(System.Reflection.BindingFlags)"> <summary> When overridden in a derived class, searches for events that are declared or inherited by the current <see cref="T:System.Type" />, using the specified binding constraints. </summary> <returns> An array of <see cref="T:System.Reflection.EventInfo" /> objects representing all events which are declared or inherited by the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.EventInfo" />, if the current <see cref="T:System.Type" /> does not have events, or if none of the events match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetField(System.String)"> <summary> Searches for the public field with the specified name. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object representing the public field with the specified name, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the data field to get. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.NotSupportedException"> This <see cref="T:System.Type" /> object is a <see cref="T:System.Reflection.Emit.TypeBuilder" /> whose <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> method has not yet been called. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetField(System.String,System.Reflection.BindingFlags)"> <summary> Searches for the specified field, using the specified binding constraints. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object representing the field that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the data field to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetFields"> <summary> Returns all the public fields of the current <see cref="T:System.Type" />. </summary> <returns> An array of <see cref="T:System.Reflection.FieldInfo" /> objects representing all the public fields defined for the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.FieldInfo" />, if no public fields are defined for the current <see cref="T:System.Type" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetFields(System.Reflection.BindingFlags)"> <summary> When overridden in a derived class, searches for the fields defined for the current <see cref="T:System.Type" />, using the specified binding constraints. </summary> <returns> An array of <see cref="T:System.Reflection.FieldInfo" /> objects representing all fields defined for the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.FieldInfo" />, if no fields are defined for the current <see cref="T:System.Type" />, or if none of the defined fields match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetGenericArguments"> <summary> Returns an array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic type or the type parameters of a generic type definition. </summary> <returns> An array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic type. Returns an empty array if the current type is not a generic type. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetGenericParameterConstraints"> <summary> Returns an array of <see cref="T:System.Type" /> objects that represent the constraints on the current generic type parameter. </summary> <returns> An array of <see cref="T:System.Type" /> objects that represent the constraints on the current generic type parameter. </returns> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Type" /> object is not a generic type parameter. That is, the <see cref="P:System.Type.IsGenericParameter" /> property returns false. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetGenericTypeDefinition"> <summary> Returns a <see cref="T:System.Type" /> object that represents a generic type definition from which the current generic type can be constructed. </summary> <returns> A <see cref="T:System.Type" /> object representing a generic type from which the current type can be constructed. </returns> <exception cref="T:System.InvalidOperationException"> The current type is not a generic type. That is, <see cref="P:System.Type.IsGenericType" /> returns false. </exception> <exception cref="T:System.NotSupportedException"> The invoked method is not supported in the base class. Derived classes must provide an implementation. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> An <see cref="T:System.Int32" /> containing the hash code for this instance. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetInterface(System.String)"> <summary> Searches for the interface with the specified name. </summary> <returns> A <see cref="T:System.Type" /> object representing the interface with the specified name, implemented or inherited by the current <see cref="T:System.Type" />, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the interface to get. For generic interfaces, this is the mangled name. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> The current <see cref="T:System.Type" /> represents a type that implements the same generic interface with different type arguments. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetInterface(System.String,System.Boolean)"> <summary> When overridden in a derived class, searches for the specified interface, specifying whether to do a case-insensitive search for the interface name. </summary> <returns> A <see cref="T:System.Type" /> object representing the interface with the specified name, implemented or inherited by the current <see cref="T:System.Type" />, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the interface to get. For generic interfaces, this is the mangled name. </param> <param name="ignoreCase">true to ignore the case of that part of <paramref name="name" /> that specifies the simple interface name (the part that specifies the namespace must be correctly cased). -or- false to perform a case-sensitive search for all parts of <paramref name="name" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> The current <see cref="T:System.Type" /> represents a type that implements the same generic interface with different type arguments. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetInterfaceMap(System.Type)"> <summary> Returns an interface mapping for the specified interface type. </summary> <returns> An <see cref="T:System.Reflection.InterfaceMapping" /> object representing the interface mapping for <paramref name="interfaceType" />. </returns> <param name="interfaceType"> The <see cref="T:System.Type" /> of the interface of which to retrieve a mapping. </param> <exception cref="T:System.ArgumentException"> The <paramref name="interfaceType" /> parameter does not refer to an interface. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="interfaceType" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Type" /> represents a generic type parameter; that is, <see cref="P:System.Type.IsGenericParameter" /> is true. </exception> <exception cref="T:System.NotSupportedException"> The invoked method is not supported in the base class. Derived classes must provide an implementation. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetInterfaces"> <summary> When overridden in a derived class, gets all the interfaces implemented or inherited by the current <see cref="T:System.Type" />. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing all the interfaces implemented or inherited by the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Type" />, if no interfaces are implemented or inherited by the current <see cref="T:System.Type" />. </returns> <exception cref="T:System.Reflection.TargetInvocationException"> A static initializer is invoked and throws an exception. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMember(System.String)"> <summary> Searches for the public members with the specified name. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public members with the specified name, if found; otherwise, an empty array. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public members to get. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMember(System.String,System.Reflection.BindingFlags)"> <summary> Searches for the specified members, using the specified binding constraints. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public members with the specified name, if found; otherwise, an empty array. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the members to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return an empty array. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)"> <summary> Searches for the specified members of the specified member type, using the specified binding constraints. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public members with the specified name, if found; otherwise, an empty array. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the members to get. </param> <param name="type"> The <see cref="T:System.Reflection.MemberTypes" /> value to search for. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return an empty array. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.NotSupportedException"> A derived class must provide an implementation. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMembers"> <summary> Returns all the public members of the current <see cref="T:System.Type" />. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing all the public members of the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.MemberInfo" />, if the current <see cref="T:System.Type" /> does not have public members. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMembers(System.Reflection.BindingFlags)"> <summary> When overridden in a derived class, searches for the members defined for the current <see cref="T:System.Type" />, using the specified binding constraints. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing all members defined for the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.MemberInfo" />, if no members are defined for the current <see cref="T:System.Type" />, or if none of the defined members match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMethod(System.String)"> <summary> Searches for the public method with the specified name. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the public method with the specified name, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public method to get. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one method is found with the specified name. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags)"> <summary> Searches for the specified method, using the specified binding constraints. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the method to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one method is found with the specified name and matching the specified binding constraints. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Searches for the specified method whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the method to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="callConvention"> The <see cref="T:System.Reflection.CallingConventions" /> object that specifies the set of rules to use regarding the order and layout of arguments, how the return value is passed, what registers are used for arguments, and how the stack is cleaned up. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the method to get. -or- An empty array of <see cref="T:System.Type" /> objects (as provided by the <see cref="F:System.Type.EmptyTypes" /> field) to get a method that takes no parameters. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. To be only used when calling through COM interop, and only parameters that are passed by reference are handled. The default binder does not process this parameter. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one method is found with the specified name and matching the specified binding constraints. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="types" /> is null. -or- One of the elements in <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Searches for the specified method whose parameters match the specified argument types and modifiers, using the specified binding constraints. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the method to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the method to get. -or- An empty array of <see cref="T:System.Type" /> objects (as provided by the <see cref="F:System.Type.EmptyTypes" /> field) to get a method that takes no parameters. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. To be only used when calling through COM interop, and only parameters that are passed by reference are handled. The default binder does not process this parameter. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one method is found with the specified name and matching the specified binding constraints. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="types" /> is null. -or- One of the elements in <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMethod(System.String,System.Type[])"> <summary> Searches for the specified public method whose parameters match the specified argument types. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the public method whose parameters match the specified argument types, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public method to get. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the method to get. -or- An empty array of <see cref="T:System.Type" /> objects (as provided by the <see cref="F:System.Type.EmptyTypes" /> field) to get a method that takes no parameters. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one method is found with the specified name and specified parameters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="types" /> is null. -or- One of the elements in <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMethod(System.String,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Searches for the specified public method whose parameters match the specified argument types and modifiers. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the public method that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public method to get. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the method to get. -or- An empty array of <see cref="T:System.Type" /> objects (as provided by the <see cref="F:System.Type.EmptyTypes" /> field) to get a method that takes no parameters. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. To be only used when calling through COM interop, and only parameters that are passed by reference are handled. The default binder does not process this parameter. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one method is found with the specified name and specified parameters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="types" /> is null. -or- One of the elements in <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"> <summary> When overridden in a derived class, searches for the specified method whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the method to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="callConvention"> The <see cref="T:System.Reflection.CallingConventions" /> object that specifies the set of rules to use regarding the order and layout of arguments, how the return value is passed, what registers are used for arguments, and what process cleans up the stack. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the method to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a method that takes no parameters. -or- null. If <paramref name="types" /> is null, arguments are not matched. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one method is found with the specified name and matching the specified binding constraints. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. -or- <paramref name="types" /> and <paramref name="modifiers" /> do not have the same length. </exception> </member> <member name="M:System.Type.GetMethods"> <summary> Returns all the public methods of the current <see cref="T:System.Type" />. </summary> <returns> An array of <see cref="T:System.Reflection.MethodInfo" /> objects representing all the public methods defined for the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.MethodInfo" />, if no public methods are defined for the current <see cref="T:System.Type" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetMethods(System.Reflection.BindingFlags)"> <summary> When overridden in a derived class, searches for the methods defined for the current <see cref="T:System.Type" />, using the specified binding constraints. </summary> <returns> An array of <see cref="T:System.Reflection.MethodInfo" /> objects representing all methods defined for the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.MethodInfo" />, if no methods are defined for the current <see cref="T:System.Type" />, or if none of the defined methods match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetNestedType(System.String)"> <summary> Searches for the public nested type with the specified name. </summary> <returns> A <see cref="T:System.Type" /> object representing the public nested type with the specified name, if found; otherwise, null. </returns> <param name="name"> The string containing the name of the nested type to get. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetNestedType(System.String,System.Reflection.BindingFlags)"> <summary> When overridden in a derived class, searches for the specified nested type, using the specified binding constraints. </summary> <returns> A <see cref="T:System.Type" /> object representing the nested type that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The string containing the name of the nested type to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetNestedTypes"> <summary> Returns the public types nested in the current <see cref="T:System.Type" />. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing the public types nested in the current <see cref="T:System.Type" /> (the search is not recursive), or an empty array of type <see cref="T:System.Type" /> if no public types are nested in the current <see cref="T:System.Type" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetNestedTypes(System.Reflection.BindingFlags)"> <summary> When overridden in a derived class, searches for the types nested in the current <see cref="T:System.Type" />, using the specified binding constraints. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing all the types nested in the current <see cref="T:System.Type" /> that match the specified binding constraints (the search is not recursive), or an empty array of type <see cref="T:System.Type" />, if no nested types are found that match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetProperties"> <summary> Returns all the public properties of the current <see cref="T:System.Type" />. </summary> <returns> An array of <see cref="T:System.Reflection.PropertyInfo" /> objects representing all public properties of the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.PropertyInfo" />, if the current <see cref="T:System.Type" /> does not have public properties. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetProperties(System.Reflection.BindingFlags)"> <summary> When overridden in a derived class, searches for the properties of the current <see cref="T:System.Type" />, using the specified binding constraints. </summary> <returns> An array of <see cref="T:System.Reflection.PropertyInfo" /> objects representing all properties of the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.PropertyInfo" />, if the current <see cref="T:System.Type" /> does not have properties, or if none of the properties match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetProperty(System.String)"> <summary> Searches for the public property with the specified name. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the public property with the specified name, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public property to get. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one property is found with the specified name. See Remarks. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetProperty(System.String,System.Reflection.BindingFlags)"> <summary> Searches for the specified property, using the specified binding constraints. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the property that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the property to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one property is found with the specified name and matching the specified binding constraints. See Remarks. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetProperty(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Searches for the specified property whose parameters match the specified argument types and modifiers, using the specified binding constraints. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the property that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the property to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="returnType"> The return type of the property. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the indexed property to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a property that is not indexed. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one property is found with the specified name and matching the specified binding constraints. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. -or- <paramref name="types" /> and <paramref name="modifiers" /> do not have the same length. </exception> <exception cref="T:System.NullReferenceException"> An element of <paramref name="types" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetProperty(System.String,System.Type)"> <summary> Searches for the public property with the specified name and return type. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the public property with the specified name, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public property to get. </param> <param name="returnType"> The return type of the property. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one property is found with the specified name. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null, or <paramref name="returnType" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetProperty(System.String,System.Type,System.Type[])"> <summary> Searches for the specified public property whose parameters match the specified argument types. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the public property whose parameters match the specified argument types, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public property to get. </param> <param name="returnType"> The return type of the property. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the indexed property to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a property that is not indexed. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one property is found with the specified name and matching the specified argument types. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. </exception> <exception cref="T:System.NullReferenceException"> An element of <paramref name="types" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetProperty(System.String,System.Type,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Searches for the specified public property whose parameters match the specified argument types and modifiers. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the public property that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public property to get. </param> <param name="returnType"> The return type of the property. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the indexed property to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a property that is not indexed. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one property is found with the specified name and matching the specified argument types and modifiers. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. -or- <paramref name="types" /> and <paramref name="modifiers" /> do not have the same length. </exception> <exception cref="T:System.NullReferenceException"> An element of <paramref name="types" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetProperty(System.String,System.Type[])"> <summary> Searches for the specified public property whose parameters match the specified argument types. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the public property whose parameters match the specified argument types, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public property to get. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the indexed property to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a property that is not indexed. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one property is found with the specified name and matching the specified argument types. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. </exception> <exception cref="T:System.NullReferenceException"> An element of <paramref name="types" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetPropertyImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])"> <summary> When overridden in a derived class, searches for the specified property whose parameters match the specified argument types and modifiers, using the specified binding constraints. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the property that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the property to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded member, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="returnType"> The return type of the property. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the indexed property to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a property that is not indexed. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one property is found with the specified name and matching the specified binding constraints. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="types" /> is null. -or- One of the elements in <paramref name="types" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="types" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. -or- <paramref name="types" /> and <paramref name="modifiers" /> do not have the same length. </exception> </member> <member name="M:System.Type.GetType"> <summary> Gets the current <see cref="T:System.Type" />. </summary> <returns> The current <see cref="T:System.Type" />. </returns> <exception cref="T:System.Reflection.TargetInvocationException"> A class initializer is invoked and throws an exception. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.GetType(System.String)"> <summary> Gets the <see cref="T:System.Type" /> with the specified name, performing a case-sensitive search. </summary> <returns> The <see cref="T:System.Type" /> with the specified name, if found; otherwise, null. </returns> <param name="typeName"> The assembly-qualified name of the type to get. See <see cref="P:System.Type.AssemblyQualifiedName" />. If the type is in the currently executing assembly or in Mscorlib.dll, it is sufficient to supply the type name qualified by its namespace. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> A class initializer is invoked and throws an exception. </exception> <exception cref="T:System.ArgumentException"> <paramref name="typeName" /> is a pointer, passed by reference, or is a generic class with a <see cref="T:System.Void" /> as its type parameter. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="typeName" /> is invalid. -or- <paramref name="typeName" /> is an empty string. -or- <paramref name="typeName" /> represents an array of <see cref="T:System.TypedReference" />. This is a change from the behavior in the .NET Framework versions 1.0 and 1.1, which was to return a null reference. </exception> <exception cref="T:System.IO.FileNotFoundException"> The assembly or one of its dependencies was not found. </exception> <exception cref="T:System.IO.FileLoadException"> The assembly or one of its dependencies was found, but could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> The assembly or one of its dependencies is not valid. -or- Version 2.0 or later of the common language runtime is currently loaded, and the assembly was compiled with a later version. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetType(System.String,System.Boolean)"> <summary> Gets the <see cref="T:System.Type" /> with the specified name, performing a case-sensitive search and specifying whether to throw an exception if the type is not found. </summary> <returns> The <see cref="T:System.Type" /> with the specified name, if found; otherwise, null. </returns> <param name="typeName"> The assembly-qualified name of the type to get. See <see cref="P:System.Type.AssemblyQualifiedName" />. If the type is in the currently executing assembly or in Mscorlib.dll, it is sufficient to supply the type name qualified by its namespace. </param> <param name="throwOnError">true to throw an exception if the type cannot be found; false to return null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> A class initializer is invoked and throws an exception. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="throwOnError" /> is true and the type is not found. -or- <paramref name="typeName" /> is invalid. -or- <paramref name="typeName" /> is an empty string. -or- <paramref name="typeName" /> represents an array of <see cref="T:System.TypedReference" />. This is a change from the behavior in the .NET Framework versions 1.0 and 1.1, which was to return a null reference. </exception> <exception cref="T:System.ArgumentException"> <paramref name="typeName" /> is a pointer, passed by reference, or is a generic class with a <see cref="T:System.Void" /> as its type parameter. </exception> <exception cref="T:System.IO.FileNotFoundException"> The assembly or one of its dependencies was not found. </exception> <exception cref="T:System.IO.FileLoadException"> The assembly or one of its dependencies was found, but could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> The assembly or one of its dependencies is not valid. -or- Version 2.0 or later of the common language runtime is currently loaded, and the assembly was compiled with a later version. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetType(System.String,System.Boolean,System.Boolean)"> <summary> Gets the <see cref="T:System.Type" /> with the specified name, specifying whether to perform a case-sensitive search and whether to throw an exception if the type is not found. </summary> <returns> The <see cref="T:System.Type" /> with the specified name, if found; otherwise, null. </returns> <param name="typeName"> The assembly-qualified name of the type to get. See <see cref="P:System.Type.AssemblyQualifiedName" />. If the type is in the currently executing assembly or in Mscorlib.dll, it is sufficient to supply the type name qualified by its namespace. </param> <param name="throwOnError">true to throw an exception if the type cannot be found; false to return null. </param> <param name="ignoreCase">true to perform a case-insensitive search for <paramref name="typeName" />, false to perform a case-sensitive search for <paramref name="typeName" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> A class initializer is invoked and throws an exception. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="throwOnError" /> is true and the type is not found. -or- <paramref name="typeName" /> is invalid. -or- <paramref name="typeName" /> is an empty string. -or- <paramref name="typeName" /> represents an array of <see cref="T:System.TypedReference" />. This is a change from the behavior in the .NET Framework versions 1.0 and 1.1, which was to return a null reference. </exception> <exception cref="T:System.ArgumentException"> <paramref name="typeName" /> is a pointer, passed by reference, or is a generic class with a <see cref="T:System.Void" /> as its type parameter. </exception> <exception cref="T:System.IO.FileNotFoundException"> The assembly or one of its dependencies was not found. </exception> <exception cref="T:System.IO.FileLoadException"> The assembly or one of its dependencies was found, but could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> The assembly or one of its dependencies is not valid. -or- Version 2.0 or later of the common language runtime is currently loaded, and the assembly was compiled with a later version. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetTypeArray(System.Object[])"> <summary> Gets the types of the objects in the specified array. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing the types of the corresponding elements in <paramref name="args" />. </returns> <param name="args"> An array of objects whose types to determine. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="args" /> is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The class initializers are invoked and at least one throws an exception. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetTypeCode(System.Type)"> <summary> Gets the underlying type code of the specified <see cref="T:System.Type" />. </summary> <returns> The <see cref="T:System.TypeCode" /> value of the underlying type. </returns> <param name="type"> The <see cref="T:System.Type" /> whose underlying type code to get. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetTypeFromCLSID(System.Guid)"> <summary> Gets the type associated with the specified class identifier (CLSID). </summary> <returns>System.__ComObject regardless of whether the CLSID is valid. </returns> <param name="clsid"> The CLSID of the type to get. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetTypeFromCLSID(System.Guid,System.Boolean)"> <summary> Gets the type associated with the specified class identifier (CLSID), specifying whether to throw an exception if an error occurs while loading the type. </summary> <returns>System.__ComObject regardless of whether the CLSID is valid. </returns> <param name="clsid"> The CLSID of the type to get. </param> <param name="throwOnError">true to throw any exception that occurs. -or- false to ignore any exception that occurs. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetTypeFromCLSID(System.Guid,System.String)"> <summary> Gets the type associated with the specified class identifier (CLSID) from the specified server. </summary> <returns>System.__ComObject regardless of whether the CLSID is valid. </returns> <param name="clsid"> The CLSID of the type to get. </param> <param name="server"> The server from which to load the type. If the server name is null, this method automatically reverts to the local machine. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetTypeFromCLSID(System.Guid,System.String,System.Boolean)"> <summary> Gets the type associated with the specified class identifier (CLSID) from the specified server, specifying whether to throw an exception if an error occurs while loading the type. </summary> <returns>System.__ComObject regardless of whether the CLSID is valid. </returns> <param name="clsid"> The CLSID of the type to get. </param> <param name="server"> The server from which to load the type. If the server name is null, this method automatically reverts to the local machine. </param> <param name="throwOnError">true to throw any exception that occurs. -or- false to ignore any exception that occurs. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetTypeFromHandle(System.RuntimeTypeHandle)"> <summary> Gets the type referenced by the specified type handle. </summary> <returns> The type referenced by the specified <see cref="T:System.RuntimeTypeHandle" />, or null if the <see cref="P:System.RuntimeTypeHandle.Value" /> property of <paramref name="handle" /> is null. </returns> <param name="handle"> The <see cref="T:System.RuntimeTypeHandle" /> object that refers to the type. </param> <exception cref="T:System.Reflection.TargetInvocationException"> A class initializer is invoked and throws an exception. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.GetTypeFromProgID(System.String)"> <summary> Gets the type associated with the specified program identifier (ProgID), returning null if an error is encountered while loading the <see cref="T:System.Type" />. </summary> <returns> The type associated with the specified ProgID, if <paramref name="progID" /> is a valid entry in the registry and a type is associated with it; otherwise, null. </returns> <param name="progID"> The ProgID of the type to get. </param> <exception cref="T:System.ArgumentException"> <paramref name="progID" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Type.GetTypeFromProgID(System.String,System.Boolean)"> <summary> Gets the type associated with the specified program identifier (ProgID), specifying whether to throw an exception if an error occurs while loading the type. </summary> <returns> The type associated with the specified program identifier (ProgID), if <paramref name="progID" /> is a valid entry in the registry and a type is associated with it; otherwise, null. </returns> <param name="progID"> The ProgID of the type to get. </param> <param name="throwOnError">true to throw any exception that occurs. -or- false to ignore any exception that occurs. </param> <exception cref="T:System.ArgumentException"> <paramref name="progID" /> is null. </exception> <exception cref="T:System.Runtime.InteropServices.COMException"> The specified ProgID is not registered. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Type.GetTypeFromProgID(System.String,System.String)"> <summary> Gets the type associated with the specified program identifier (progID) from the specified server, returning null if an error is encountered while loading the type. </summary> <returns> The type associated with the specified program identifier (progID), if <paramref name="progID" /> is a valid entry in the registry and a type is associated with it; otherwise, null. </returns> <param name="progID"> The progID of the type to get. </param> <param name="server"> The server from which to load the type. If the server name is null, this method automatically reverts to the local machine. </param> <exception cref="T:System.ArgumentException"> <paramref name="prodID" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Type.GetTypeFromProgID(System.String,System.String,System.Boolean)"> <summary> Gets the type associated with the specified program identifier (progID) from the specified server, specifying whether to throw an exception if an error occurs while loading the type. </summary> <returns> The <see cref="T:System.Type" /> associated with the specified program identifier (progID), if <paramref name="progID" /> is a valid entry in the registry and a type is associated with it; otherwise, null. </returns> <param name="progID"> The progID of the <see cref="T:System.Type" /> to get. </param> <param name="server"> The server from which to load the type. If the server name is null, this method automatically reverts to the local machine. </param> <param name="throwOnError">true to throw any exception that occurs. -or- false to ignore any exception that occurs. </param> <exception cref="T:System.ArgumentException"> <paramref name="progID" /> is null. </exception> <exception cref="T:System.Runtime.InteropServices.COMException"> The specified progID is not registered. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Type.GetTypeHandle(System.Object)"> <summary> Gets the handle for the <see cref="T:System.Type" /> of a specified object. </summary> <returns> The handle for the <see cref="T:System.Type" /> of the specified <see cref="T:System.Object" />. </returns> <param name="o"> The <see cref="T:System.Object" /> for which to get the Type handle. </param> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.GUID"> <summary> Gets the GUID associated with the <see cref="T:System.Type" />. </summary> <returns> The GUID associated with the <see cref="T:System.Type" />. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.HasElementType"> <summary> Gets a value indicating whether the current <see cref="T:System.Type" /> encompasses or refers to another type; that is, whether the current <see cref="T:System.Type" /> is an array, a pointer, or is passed by reference. </summary> <returns>true if the <see cref="T:System.Type" /> is an array, a pointer, or is passed by reference; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.HasElementTypeImpl"> <summary> When overridden in a derived class, implements the <see cref="P:System.Type.HasElementType" /> property and determines whether the current <see cref="T:System.Type" /> encompasses or refers to another type; that is, whether the current <see cref="T:System.Type" /> is an array, a pointer, or is passed by reference. </summary> <returns>true if the <see cref="T:System.Type" /> is an array, a pointer, or is passed by reference; otherwise, false. </returns> </member> <member name="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[])"> <summary> Invokes the specified member, using the specified binding constraints and matching the specified argument list. </summary> <returns> An <see cref="T:System.Object" /> representing the return value of the invoked member. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the constructor, method, property, or field member to invoke. -or- An empty string ("") to invoke the default member. -or- For IDispatch members, a string representing the DispID, for example "[DispID=3]". </param> <param name="invokeAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. The access can be one of the BindingFlags such as Public, NonPublic, Private, InvokeMethod, GetField, and so on. The type of lookup need not be specified. If the type of lookup is omitted, BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static are used. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. Note that explicitly defining a <see cref="T:System.Reflection.Binder" /> object may be requird for successfully invoking method overloads with variable arguments. </param> <param name="target"> The <see cref="T:System.Object" /> on which to invoke the specified member. </param> <param name="args"> An array containing the arguments to pass to the member to invoke. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="invokeAttr" /> contains CreateInstance and <paramref name="typeName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="args" /> is multidimensional. -or- <paramref name="invokeAttr" /> is not a valid <see cref="T:System.Reflection.BindingFlags" /> attribute. -or- <paramref name="invokeAttr" /> does not contain one of the following binding flags: InvokeMethod, CreateInstance, GetField, SetField, GetProperty, or SetProperty. -or- <paramref name="invokeAttr" /> contains CreateInstance combined with InvokeMethod, GetField, SetField, GetProperty, or SetProperty. -or- <paramref name="invokeAttr" /> contains both GetField and SetField. -or- <paramref name="invokeAttr" /> contains both GetProperty and SetProperty. -or- <paramref name="invokeAttr" /> contains InvokeMethod combined with SetField or SetProperty. -or- <paramref name="invokeAttr" /> contains SetField and <paramref name="args" /> has more than one element. -or- This method is called on a COM object and one of the following binding flags was not passed in: BindingFlags.InvokeMethod, BindingFlags.GetProperty, BindingFlags.SetProperty, BindingFlags.PutDispProperty, or BindingFlags.PutRefDispProperty. -or- One of the named parameter arrays contains a string that is null. </exception> <exception cref="T:System.MethodAccessException"> The specified member is a class initializer. </exception> <exception cref="T:System.MissingFieldException"> The field or property cannot be found. </exception> <exception cref="T:System.MissingMethodException"> The method cannot be found. -or- The current <see cref="T:System.Type" /> object represents a type that contains open type parameters, that is, <see cref="P:System.Type.ContainsGenericParameters" /> returns true. </exception> <exception cref="T:System.Reflection.TargetException"> The specified member cannot be invoked on <paramref name="target" />. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one method matches the binding criteria. </exception> <exception cref="T:System.NotSupportedException"> The .NET Compact Framework does not currently support this method. </exception> <exception cref="T:System.InvalidOperationException"> The method represented by <paramref name="name" /> has one or more unspecified generic type parameters. That is, the method's <see cref="P:System.Reflection.MethodInfo.ContainsGenericParameters" /> property returns true. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Globalization.CultureInfo)"> <summary> Invokes the specified member, using the specified binding constraints and matching the specified argument list and culture. </summary> <returns> An <see cref="T:System.Object" /> representing the return value of the invoked member. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the constructor, method, property, or field member to invoke. -or- An empty string ("") to invoke the default member. -or- For IDispatch members, a string representing the DispID, for example "[DispID=3]". </param> <param name="invokeAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. The access can be one of the BindingFlags such as Public, NonPublic, Private, InvokeMethod, GetField, and so on. The type of lookup need not be specified. If the type of lookup is omitted, BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static are used. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. Note that explicitly defining a <see cref="T:System.Reflection.Binder" /> object may be requird for successfully invoking method overloads with variable arguments. </param> <param name="target"> The <see cref="T:System.Object" /> on which to invoke the specified member. </param> <param name="args"> An array containing the arguments to pass to the member to invoke. </param> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> object representing the globalization locale to use, which may be necessary for locale-specific conversions, such as converting a numeric String to a Double. -or- null to use the current thread's <see cref="T:System.Globalization.CultureInfo" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="invokeAttr" /> contains CreateInstance and <paramref name="typeName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="args" /> is multidimensional. -or- <paramref name="invokeAttr" /> is not a valid <see cref="T:System.Reflection.BindingFlags" /> attribute. -or- <paramref name="invokeAttr" /> does not contain one of the following binding flags: InvokeMethod, CreateInstance, GetField, SetField, GetProperty, or SetProperty. -or- <paramref name="invokeAttr" /> contains CreateInstance combined with InvokeMethod, GetField, SetField, GetProperty, or SetProperty. -or- <paramref name="invokeAttr" /> contains both GetField and SetField. -or- <paramref name="invokeAttr" /> contains both GetProperty and SetProperty. -or- <paramref name="invokeAttr" /> contains InvokeMethod combined with SetField or SetProperty. -or- <paramref name="invokeAttr" /> contains SetField and <paramref name="args" /> has more than one element. -or- This method is called on a COM object and one of the following binding flags was not passed in: BindingFlags.InvokeMethod, BindingFlags.GetProperty, BindingFlags.SetProperty, BindingFlags.PutDispProperty, or BindingFlags.PutRefDispProperty. -or- One of the named parameter arrays contains a string that is null. </exception> <exception cref="T:System.MethodAccessException"> The specified member is a class initializer. </exception> <exception cref="T:System.MissingFieldException"> The field or property cannot be found. </exception> <exception cref="T:System.MissingMethodException"> The method cannot be found. -or- The current <see cref="T:System.Type" /> object represents a type that contains open type parameters, that is, <see cref="P:System.Type.ContainsGenericParameters" /> returns true. </exception> <exception cref="T:System.Reflection.TargetException"> The specified member cannot be invoked on <paramref name="target" />. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one method matches the binding criteria. </exception> <exception cref="T:System.InvalidOperationException"> The method represented by <paramref name="name" /> has one or more unspecified generic type parameters. That is, the method's <see cref="P:System.Reflection.MethodInfo.ContainsGenericParameters" /> property returns true. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])"> <summary> When overridden in a derived class, invokes the specified member, using the specified binding constraints and matching the specified argument list, modifiers and culture. </summary> <returns> An <see cref="T:System.Object" /> representing the return value of the invoked member. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the constructor, method, property, or field member to invoke. -or- An empty string ("") to invoke the default member. -or- For IDispatch members, a string representing the DispID, for example "[DispID=3]". </param> <param name="invokeAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. The access can be one of the BindingFlags such as Public, NonPublic, Private, InvokeMethod, GetField, and so on. The type of lookup need not be specified. If the type of lookup is omitted, BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static are used. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. Note that explicitly defining a <see cref="T:System.Reflection.Binder" /> object may be requird for successfully invoking method overloads with variable arguments. </param> <param name="target"> The <see cref="T:System.Object" /> on which to invoke the specified member. </param> <param name="args"> An array containing the arguments to pass to the member to invoke. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="args" /> array. A parameter's associated attributes are stored in the member's signature. The default binder processes this parameter only when calling a COM component. </param> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> object representing the globalization locale to use, which may be necessary for locale-specific conversions, such as converting a numeric String to a Double. -or- null to use the current thread's <see cref="T:System.Globalization.CultureInfo" />. </param> <param name="namedParameters"> An array containing the names of the parameters to which the values in the <paramref name="args" /> array are passed. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="invokeAttr" /> contains CreateInstance and <paramref name="typeName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="args" /> is multidimensional. -or- <paramref name="modifiers" /> is multidimensional. -or- <paramref name="args" /> and <paramref name="modifiers" /> do not have the same length. -or- <paramref name="invokeAttr" /> is not a valid <see cref="T:System.Reflection.BindingFlags" /> attribute. -or- <paramref name="invokeAttr" /> does not contain one of the following binding flags: InvokeMethod, CreateInstance, GetField, SetField, GetProperty, or SetProperty. -or- <paramref name="invokeAttr" /> contains CreateInstance combined with InvokeMethod, GetField, SetField, GetProperty, or SetProperty. -or- <paramref name="invokeAttr" /> contains both GetField and SetField. -or- <paramref name="invokeAttr" /> contains both GetProperty and SetProperty. -or- <paramref name="invokeAttr" /> contains InvokeMethod combined with SetField or SetProperty. -or- <paramref name="invokeAttr" /> contains SetField and <paramref name="args" /> has more than one element. -or- The named parameter array is larger than the argument array. -or- This method is called on a COM object and one of the following binding flags was not passed in: BindingFlags.InvokeMethod, BindingFlags.GetProperty, BindingFlags.SetProperty, BindingFlags.PutDispProperty, or BindingFlags.PutRefDispProperty. -or- One of the named parameter arrays contains a string that is null. </exception> <exception cref="T:System.MethodAccessException"> The specified member is a class initializer. </exception> <exception cref="T:System.MissingFieldException"> The field or property cannot be found. </exception> <exception cref="T:System.MissingMethodException"> The method cannot be found. -or- The current <see cref="T:System.Type" /> object represents a type that contains open type parameters, that is, <see cref="P:System.Type.ContainsGenericParameters" /> returns true. </exception> <exception cref="T:System.Reflection.TargetException"> The specified member cannot be invoked on <paramref name="target" />. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> More than one method matches the binding criteria. </exception> <exception cref="T:System.InvalidOperationException"> The method represented by <paramref name="name" /> has one or more unspecified generic type parameters. That is, the method's <see cref="P:System.Reflection.MethodInfo.ContainsGenericParameters" /> property returns true. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsAbstract"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is abstract and must be overridden. </summary> <returns>true if the <see cref="T:System.Type" /> is abstract; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsAnsiClass"> <summary> Gets a value indicating whether the string format attribute AnsiClass is selected for the <see cref="T:System.Type" />. </summary> <returns>true if the string format attribute AnsiClass is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsArray"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is an array. </summary> <returns>true if the <see cref="T:System.Type" /> is an array; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.IsArrayImpl"> <summary> When overridden in a derived class, implements the <see cref="P:System.Type.IsArray" /> property and determines whether the <see cref="T:System.Type" /> is an array. </summary> <returns>true if the <see cref="T:System.Type" /> is an array; otherwise, false. </returns> </member> <member name="M:System.Type.IsAssignableFrom(System.Type)"> <summary> Determines whether an instance of the current <see cref="T:System.Type" /> can be assigned from an instance of the specified Type. </summary> <returns>true if <paramref name="c" /> and the current Type represent the same type, or if the current Type is in the inheritance hierarchy of <paramref name="c" />, or if the current Type is an interface that <paramref name="c" /> implements, or if <paramref name="c" /> is a generic type parameter and the current Type represents one of the constraints of <paramref name="c" />. false if none of these conditions are true, or if <paramref name="c" /> is null. </returns> <param name="c"> The Type to compare with the current Type. </param> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsAutoClass"> <summary> Gets a value indicating whether the string format attribute AutoClass is selected for the <see cref="T:System.Type" />. </summary> <returns>true if the string format attribute AutoClass is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsAutoLayout"> <summary> Gets a value indicating whether the class layout attribute AutoLayout is selected for the <see cref="T:System.Type" />. </summary> <returns>true if the class layout attribute AutoLayout is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsByRef"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is passed by reference. </summary> <returns>true if the <see cref="T:System.Type" /> is passed by reference; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.IsByRefImpl"> <summary> When overridden in a derived class, implements the <see cref="P:System.Type.IsByRef" /> property and determines whether the <see cref="T:System.Type" /> is passed by reference. </summary> <returns>true if the <see cref="T:System.Type" /> is passed by reference; otherwise, false. </returns> </member> <member name="P:System.Type.IsClass"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is a class; that is, not a value type or interface. </summary> <returns>true if the <see cref="T:System.Type" /> is a class; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsCOMObject"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is a COM object. </summary> <returns>true if the <see cref="T:System.Type" /> is a COM object; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.IsCOMObjectImpl"> <summary> When overridden in a derived class, implements the <see cref="P:System.Type.IsCOMObject" /> property and determines whether the <see cref="T:System.Type" /> is a COM object. </summary> <returns>true if the <see cref="T:System.Type" /> is a COM object; otherwise, false. </returns> </member> <member name="P:System.Type.IsContextful"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> can be hosted in a context. </summary> <returns>true if the <see cref="T:System.Type" /> can be hosted in a context; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.IsContextfulImpl"> <summary> Implements the <see cref="P:System.Type.IsContextful" /> property and determines whether the <see cref="T:System.Type" /> can be hosted in a context. </summary> <returns>true if the <see cref="T:System.Type" /> can be hosted in a context; otherwise, false. </returns> </member> <member name="P:System.Type.IsEnum"> <summary> Gets a value indicating whether the current <see cref="T:System.Type" /> represents an enumeration. </summary> <returns>true if the current <see cref="T:System.Type" /> represents an enumeration; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsExplicitLayout"> <summary> Gets a value indicating whether the class layout attribute ExplicitLayout is selected for the <see cref="T:System.Type" />. </summary> <returns>true if the class layout attribute ExplicitLayout is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsGenericParameter"> <summary> Gets a value indicating whether the current <see cref="T:System.Type" /> represents a type parameter in the definition of a generic type or method. </summary> <returns>true if the <see cref="T:System.Type" /> object represents a type parameter of a generic type definition or generic method definition; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsGenericType"> <summary> Gets a value indicating whether the current type is a generic type. </summary> <returns>true if the current type is a generic type; otherwise, false. </returns> </member> <member name="P:System.Type.IsGenericTypeDefinition"> <summary> Gets a value indicating whether the current <see cref="T:System.Type" /> represents a generic type definition, from which other generic types can be constructed. </summary> <returns>true if the <see cref="T:System.Type" /> object represents a generic type definition; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsImport"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> has a <see cref="T:System.Runtime.InteropServices.ComImportAttribute" /> attribute applied, indicating that it was imported from a COM type library. </summary> <returns>true if the <see cref="T:System.Type" /> has a <see cref="T:System.Runtime.InteropServices.ComImportAttribute" />; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.IsInstanceOfType(System.Object)"> <summary> Determines whether the specified object is an instance of the current <see cref="T:System.Type" />. </summary> <returns>true if the current Type is in the inheritance hierarchy of the object represented by <paramref name="o" />, or if the current Type is an interface that <paramref name="o" /> supports. false if neither of these conditions is the case, or if <paramref name="o" /> is null, or if the current Type is an open generic type (that is, <see cref="P:System.Type.ContainsGenericParameters" /> returns true). </returns> <param name="o"> The object to compare with the current Type. </param> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsInterface"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is an interface; that is, not a class or a value type. </summary> <returns>true if the <see cref="T:System.Type" /> is an interface; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsLayoutSequential"> <summary> Gets a value indicating whether the class layout attribute SequentialLayout is selected for the <see cref="T:System.Type" />. </summary> <returns>true if the class layout attribute SequentialLayout is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsMarshalByRef"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is marshaled by reference. </summary> <returns>true if the <see cref="T:System.Type" /> is marshaled by reference; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.IsMarshalByRefImpl"> <summary> Implements the <see cref="P:System.Type.IsMarshalByRef" /> property and determines whether the <see cref="T:System.Type" /> is marshaled by reference. </summary> <returns>true if the <see cref="T:System.Type" /> is marshaled by reference; otherwise, false. </returns> </member> <member name="P:System.Type.IsNested"> <summary> Gets a value indicating whether the current <see cref="T:System.Type" /> object represents a type whose definition is nested inside the definition of another type. </summary> <returns>true if the <see cref="T:System.Type" /> is nested inside another type; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsNestedAssembly"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is nested and visible only within its own assembly. </summary> <returns>true if the <see cref="T:System.Type" /> is nested and visible only within its own assembly; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsNestedFamANDAssem"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is nested and visible only to classes that belong to both its own family and its own assembly. </summary> <returns>true if the <see cref="T:System.Type" /> is nested and visible only to classes that belong to both its own family and its own assembly; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsNestedFamily"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is nested and visible only within its own family. </summary> <returns>true if the <see cref="T:System.Type" /> is nested and visible only within its own family; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsNestedFamORAssem"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is nested and visible only to classes that belong to either its own family or to its own assembly. </summary> <returns>true if the <see cref="T:System.Type" /> is nested and visible only to classes that belong to its own family or to its own assembly; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsNestedPrivate"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is nested and declared private. </summary> <returns>true if the <see cref="T:System.Type" /> is nested and declared private; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsNestedPublic"> <summary> Gets a value indicating whether a class is nested and declared public. </summary> <returns>true if the class is nested and declared public; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsNotPublic"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is not declared public. </summary> <returns>true if the <see cref="T:System.Type" /> is not declared public and is not a nested type; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsPointer"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is a pointer. </summary> <returns>true if the <see cref="T:System.Type" /> is a pointer; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.IsPointerImpl"> <summary> When overridden in a derived class, implements the <see cref="P:System.Type.IsPointer" /> property and determines whether the <see cref="T:System.Type" /> is a pointer. </summary> <returns>true if the <see cref="T:System.Type" /> is a pointer; otherwise, false. </returns> </member> <member name="P:System.Type.IsPrimitive"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is one of the primitive types. </summary> <returns>true if the <see cref="T:System.Type" /> is one of the primitive types; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.IsPrimitiveImpl"> <summary> When overridden in a derived class, implements the <see cref="P:System.Type.IsPrimitive" /> property and determines whether the <see cref="T:System.Type" /> is one of the primitive types. </summary> <returns>true if the <see cref="T:System.Type" /> is one of the primitive types; otherwise, false. </returns> </member> <member name="P:System.Type.IsPublic"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is declared public. </summary> <returns>true if the <see cref="T:System.Type" /> is declared public and is not a nested type; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsSealed"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is declared sealed. </summary> <returns>true if the <see cref="T:System.Type" /> is declared sealed; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsSerializable"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is serializable. </summary> <returns>true if the <see cref="T:System.Type" /> is serializable; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsSpecialName"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> has a name that requires special handling. </summary> <returns>true if the <see cref="T:System.Type" /> has a name that requires special handling; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.IsSubclassOf(System.Type)"> <summary> Determines whether the class represented by the current <see cref="T:System.Type" /> derives from the class represented by the specified <see cref="T:System.Type" />. </summary> <returns>true if the Type represented by the <paramref name="c" /> parameter and the current Type represent classes, and the class represented by the current Type derives from the class represented by <paramref name="c" />; otherwise, false. This method also returns false if <paramref name="c" /> and the current Type represent the same class. </returns> <param name="c"> The Type to compare with the current Type. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="c" /> parameter is null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsUnicodeClass"> <summary> Gets a value indicating whether the string format attribute UnicodeClass is selected for the <see cref="T:System.Type" />. </summary> <returns>true if the string format attribute UnicodeClass is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.IsValueType"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is a value type. </summary> <returns>true if the <see cref="T:System.Type" /> is a value type; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.IsValueTypeImpl"> <summary> Implements the <see cref="P:System.Type.IsValueType" /> property and determines whether the <see cref="T:System.Type" /> is a value type; that is, not a class or an interface. </summary> <returns>true if the <see cref="T:System.Type" /> is a value type; otherwise, false. </returns> </member> <member name="P:System.Type.IsVisible"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> can be accessed by code outside the assembly. </summary> <returns>true if the current <see cref="T:System.Type" /> is a public type or a public nested type such that all the enclosing types are public; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.MakeArrayType"> <summary> Returns a <see cref="T:System.Type" /> object representing a one-dimensional array of the current type, with a lower bound of zero. </summary> <returns> A <see cref="T:System.Type" /> object representing a one-dimensional array of the current type, with a lower bound of zero. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.MakeArrayType(System.Int32)"> <summary> Returns a <see cref="T:System.Type" /> object representing an array of the current type, with the specified number of dimensions. </summary> <returns> A <see cref="T:System.Type" /> object representing an array of the current type, with the specified number of dimensions. </returns> <param name="rank"> The number of dimensions for the array. </param> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="rank" /> is invalid. For example, 0 or negative. </exception> <exception cref="T:System.NotSupportedException"> The invoked method is not supported in the base class. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.MakeByRefType"> <summary> Returns a <see cref="T:System.Type" /> object that represents the current type when passed as a ref parameter (ByRef parameter in Visual Basic). </summary> <returns> A <see cref="T:System.Type" /> object that represents the current type when passed as a ref parameter (ByRef parameter in Visual Basic). </returns> <exception cref="T:System.NotSupportedException"> The invoked method is not supported in the base class. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Type.MakeGenericType(System.Type[])"> <summary> Substitutes the elements of an array of types for the type parameters of the current generic type definition and returns a <see cref="T:System.Type" /> object representing the resulting constructed type. </summary> <returns> A <see cref="T:System.Type" /> representing the constructed type formed by substituting the elements of <paramref name="typeArguments" /> for the type parameters of the current generic type. </returns> <param name="typeArguments"> An array of types to be substituted for the type parameters of the current generic type. </param> <exception cref="T:System.InvalidOperationException"> The current type does not represent a generic type definition. That is, <see cref="P:System.Type.IsGenericTypeDefinition" /> returns false. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="typeArguments" /> is null. -or- Any element of <paramref name="typeArguments" /> is null. </exception> <exception cref="T:System.ArgumentException"> The number of elements in <paramref name="typeArguments" /> is not the same as the number of type parameters in the current generic type definition. -or- Any element of <paramref name="typeArguments" /> does not satisfy the constraints specified for the corresponding type parameter of the current generic type. </exception> <exception cref="T:System.NotSupportedException"> The invoked method is not supported in the base class. Derived classes must provide an implementation. </exception> </member> <member name="M:System.Type.MakePointerType"> <summary> Returns a <see cref="T:System.Type" /> object that represents a pointer to the current type. </summary> <returns> A <see cref="T:System.Type" /> object that represents a pointer to the current type. </returns> <exception cref="T:System.NotSupportedException"> The invoked method is not supported in the base class. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.MemberType"> <summary> Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a type or a nested type. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a type or a nested type. </returns> <filterpriority>1</filterpriority> </member> <member name="F:System.Type.Missing"> <summary> Represents a missing value in the <see cref="T:System.Type" /> information. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.Module"> <summary> Gets the module (the DLL) in which the current <see cref="T:System.Type" /> is defined. </summary> <returns> The module in which the current <see cref="T:System.Type" /> is defined. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.Namespace"> <summary> Gets the namespace of the <see cref="T:System.Type" />. </summary> <returns> The namespace of the <see cref="T:System.Type" />, or null if the current instance represents a generic parameter. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.ReflectedType"> <summary> Gets the class object that was used to obtain this member. </summary> <returns> The Type object through which this MemberInfo object was obtained. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.ReflectionOnlyGetType(System.String,System.Boolean,System.Boolean)"> <summary> Gets the <see cref="T:System.Type" /> with the specified name, specifying whether to perform a case-sensitive search and whether to throw an exception if the type is not found. The type is loaded for reflection only, not for execution. </summary> <returns> The <see cref="T:System.Type" /> with the specified name, if found; otherwise, null. </returns> <param name="typeName"> The name of the <see cref="T:System.Type" /> to get. </param> <param name="throwIfNotFound">true to throw a <see cref="T:System.TypeLoadException" /> if the type cannot be found; false to return null if the type cannot be found. </param> <param name="ignoreCase">true to perform a case-insensitive search for <paramref name="typeName" />; false to perform a case-sensitive search for <paramref name="typeName" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> A class initializer is invoked and throws an exception. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="throwIfNotFound" /> is true and the type is not found. </exception> <exception cref="T:System.ArgumentException"> <paramref name="typeName" /> is invalid, for example if it contains invalid characters, or if it is a zero-length string. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.StructLayoutAttribute"> <summary> Gets a <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> that describes the layout of the current type. </summary> <returns> Gets a <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> that describes the gross layout features of the current type. </returns> <exception cref="T:System.NotSupportedException"> The invoked method is not supported in the base class. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Type.System#Runtime#InteropServices#_Type#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Type.System#Runtime#InteropServices#_Type#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Type.System#Runtime#InteropServices#_Type#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Type.System#Runtime#InteropServices#_Type#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Type.ToString"> <summary> Returns a String representing the name of the current Type. </summary> <returns> A <see cref="T:System.String" /> representing the name of the current <see cref="T:System.Type" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.TypeHandle"> <summary> Gets the handle for the current <see cref="T:System.Type" />. </summary> <returns> The handle for the current <see cref="T:System.Type" />. </returns> <exception cref="T:System.NotSupportedException"> The .NET Compact Framework does not currently support this property. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Type.TypeInitializer"> <summary> Gets the initializer for the <see cref="T:System.Type" />. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> containing the name of the class constructor for the <see cref="T:System.Type" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Type.UnderlyingSystemType"> <summary> Indicates the type provided by the common language runtime that represents this type. </summary> <returns> The underlying system type for the <see cref="T:System.Type" />. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.TypeCode"> <summary> Specifies the type of an object. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.TypeCode.Empty"> <summary> A null reference. </summary> </member> <member name="F:System.TypeCode.Object"> <summary> A general type representing any reference or value type not explicitly represented by another TypeCode. </summary> </member> <member name="F:System.TypeCode.DBNull"> <summary> A database null (column) value. </summary> </member> <member name="F:System.TypeCode.Boolean"> <summary> A simple type representing Boolean values of true or false. </summary> </member> <member name="F:System.TypeCode.Char"> <summary> An integral type representing unsigned 16-bit integers with values between 0 and 65535. The set of possible values for the <see cref="F:System.TypeCode.Char" /> type corresponds to the Unicode character set. </summary> </member> <member name="F:System.TypeCode.SByte"> <summary> An integral type representing signed 8-bit integers with values between -128 and 127. </summary> </member> <member name="F:System.TypeCode.Byte"> <summary> An integral type representing unsigned 8-bit integers with values between 0 and 255. </summary> </member> <member name="F:System.TypeCode.Int16"> <summary> An integral type representing signed 16-bit integers with values between -32768 and 32767. </summary> </member> <member name="F:System.TypeCode.UInt16"> <summary> An integral type representing unsigned 16-bit integers with values between 0 and 65535. </summary> </member> <member name="F:System.TypeCode.Int32"> <summary> An integral type representing signed 32-bit integers with values between -2147483648 and 2147483647. </summary> </member> <member name="F:System.TypeCode.UInt32"> <summary> An integral type representing unsigned 32-bit integers with values between 0 and 4294967295. </summary> </member> <member name="F:System.TypeCode.Int64"> <summary> An integral type representing signed 64-bit integers with values between -9223372036854775808 and 9223372036854775807. </summary> </member> <member name="F:System.TypeCode.UInt64"> <summary> An integral type representing unsigned 64-bit integers with values between 0 and 18446744073709551615. </summary> </member> <member name="F:System.TypeCode.Single"> <summary> A floating point type representing values ranging from approximately 1.5 x 10 -45 to 3.4 x 10 38 with a precision of 7 digits. </summary> </member> <member name="F:System.TypeCode.Double"> <summary> A floating point type representing values ranging from approximately 5.0 x 10 -324 to 1.7 x 10 308 with a precision of 15-16 digits. </summary> </member> <member name="F:System.TypeCode.Decimal"> <summary> A simple type representing values ranging from 1.0 x 10 -28 to approximately 7.9 x 10 28 with 28-29 significant digits. </summary> </member> <member name="F:System.TypeCode.DateTime"> <summary> A type representing a date and time value. </summary> </member> <member name="F:System.TypeCode.String"> <summary> A sealed class type representing Unicode character strings. </summary> </member> <member name="T:System.TypedReference"> <summary> Describes objects that contain both a managed pointer to a location and a runtime representation of the type that may be stored at that location. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.TypedReference.Equals(System.Object)"> <summary> Checks if this object is equal to the specified object. </summary> <returns>true if this object is equal to the specified object; otherwise, false. </returns> <param name="o"> The object with which to compare the current object. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.TypedReference.GetHashCode"> <summary> Returns the hash code of this object. </summary> <returns> The hash code of this object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.TypedReference.GetTargetType(System.TypedReference)"> <summary> Returns the type of the target of the specified TypedReference. </summary> <returns> The type of the target of the specified TypedReference. </returns> <param name="value"> The value whose target's type is to be returned. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.TypedReference.MakeTypedReference(System.Object,System.Reflection.FieldInfo[])"> <summary> Makes a TypedReference for a field identified by a specified object and list of field descriptions. </summary> <returns> A <see cref="T:System.TypedReference" /> for the field described by the last element of <paramref name="flds" />. </returns> <param name="target"> An object that contains the field described by the first element of <paramref name="flds" />. </param> <param name="flds"> A list of field descriptions where each element describes a field that contains the field described by the succeeding element. Each described field must be a value type. The field descriptions must be RuntimeFieldInfo objects supplied by the type system. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="target" /> or <paramref name="flds" /> is null. -or- An element of <paramref name="flds" /> is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="flds" /> array has no elements. -or- An element of <paramref name="flds" /> is not a RuntimeFieldInfo. -or- The <see cref="P:System.Reflection.FieldInfo.IsInitOnly" /> or <see cref="P:System.Reflection.FieldInfo.IsStatic" /> property of an element of <paramref name="flds" /> is true. </exception> <exception cref="T:System.MissingMemberException"> Parameter <paramref name="target" /> does not contain the field described by the first element of <paramref name="flds" />, or an element of <paramref name="flds" /> describes a field that is not contained in the field described by the succeeding element of <paramref name="flds" />. -or- The field described by an element of <paramref name="flds" /> is not a value type. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.TypedReference.SetTypedReference(System.TypedReference,System.Object)"> <summary> Converts the specified value to a TypedReference. </summary> <param name="target"> The target of the conversion. </param> <param name="value"> The value to be converted. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The requested conversion is not possible. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.TypedReference.TargetTypeToken(System.TypedReference)"> <summary> Returns the internal metadata type handle for the specified TypedReference. </summary> <returns> The internal metadata type handle for the specified TypedReference. </returns> <param name="value"> The TypedReference for which the type handle is requested. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.TypedReference.ToObject(System.TypedReference)"> <summary> Converts the specified TypedReference to an Object. </summary> <returns> An <see cref="T:System.Object" /> converted from a TypedReference. </returns> <param name="value"> The TypedReference to be converted. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.TypeInitializationException"> <summary> The exception that is thrown as a wrapper around the exception thrown by the class initializer. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.TypeInitializationException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.TypeInitializationException" /> class with the default error message, the specified type name, and a reference to the inner exception that is the root cause of this exception. </summary> <param name="fullTypeName"> The fully qualified name of the type that fails to initialize. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.TypeInitializationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the type name and additional exception information. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.TypeInitializationException.TypeName"> <summary> Gets the fully qualified name of the type that fails to initialize. </summary> <returns> The fully qualified name of the type that fails to initialize. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.TypeLoadException"> <summary> The exception that is thrown when type-loading failures occur. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.TypeLoadException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.TypeLoadException" /> class. </summary> </member> <member name="M:System.TypeLoadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.TypeLoadException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> object is null. </exception> </member> <member name="M:System.TypeLoadException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.TypeLoadException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.TypeLoadException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.TypeLoadException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.TypeLoadException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the class name, method name, resource ID, and additional exception information. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> object is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.TypeLoadException.Message"> <summary> Gets the error message for this exception. </summary> <returns> The error message string. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.TypeLoadException.TypeName"> <summary> Gets the fully qualified name of the type that causes the exception. </summary> <returns> The fully qualified type name. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.TypeUnloadedException"> <summary> The exception that is thrown when there is an attempt to access an unloaded class. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.TypeUnloadedException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.TypeUnloadedException" /> class. </summary> </member> <member name="M:System.TypeUnloadedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.TypeUnloadedException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.TypeUnloadedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.TypeUnloadedException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.TypeUnloadedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.TypeUnloadedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.UInt16"> <summary> Represents a 16-bit unsigned integer. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.UInt16" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt16.CompareTo(System.UInt16)"> <summary> Compares this instance to a specified 16-bit unsigned integer and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. </returns> <param name="value"> An unsigned integer to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt16.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.UInt16" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt16.Equals(System.UInt16)"> <summary> Returns a value indicating whether this instance is equal to a specified <see cref="T:System.UInt16" /> value. </summary> <returns>true if <paramref name="obj" /> has the same value as this instance; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.UInt16" /> value to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt16.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt16.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.UInt16" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.UInt16" />. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.UInt16.MaxValue"> <summary> Represents the largest possible value of <see cref="T:System.UInt16" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.UInt16.MinValue"> <summary> Represents the smallest possible value of <see cref="T:System.UInt16" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.Parse(System.String)"> <summary> Converts the string representation of a number to its 16-bit unsigned integer equivalent. </summary> <returns> A 16-bit unsigned integer equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its 16-bit unsigned integer equivalent. </summary> <returns> A 16-bit unsigned integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 16-bit unsigned integer equivalent. </summary> <returns> A 16-bit unsigned integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified culture-specific format to its 16-bit unsigned integer equivalent. </summary> <returns> A 16-bit unsigned integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct format. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Byte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Char" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.UInt16.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The current value of this instance, converted to a <see cref="T:System.Decimal" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The current value of this instance, converted to a <see cref="T:System.Double" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The current value of this instance, converted to an <see cref="T:System.Int16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of this instance, converted to an <see cref="T:System.Int32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The current value of this instance, converted to an <see cref="T:System.Int64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The current value of this instance, converted to an <see cref="T:System.SByte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The current value pf this instance, converted to a <see cref="T:System.Single" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The current value of this instance, converted to <paramref name="type" />. </returns> <param name="type"> The type to which to convert this <see cref="T:System.UInt16" /> value. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that supplies information about the format of the returned value. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The current value of this instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The current value of this instance, converted to a <see cref="T:System.UInt32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The current value of this instance, converted to a <see cref="T:System.UInt64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt16.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance, consisting of a sequence of digits ranging from 0 to 9, without a sign or leading zeroes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.ToString(System.String)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A numeric format string. </param> <exception cref="T:System.FormatException"> The <paramref name="format" /> parameter is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.ToString(System.String,System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A numeric format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about this instance. </param> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt16@)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 16-bit unsigned integer equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string representing the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="result"> When this method returns, contains the 16-bit unsigned integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in a format compliant with <paramref name="style" />, or represents a number less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt16.TryParse(System.String,System.UInt16@)"> <summary> Converts the string representation of a number to its 16-bit unsigned integer equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string representing the number to convert. </param> <param name="result"> When this method returns, contains the 16-bit unsigned integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in the correct format. , or represents a number less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.UInt32"> <summary> Represents a 32-bit unsigned integer. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.UInt32" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt32.CompareTo(System.UInt32)"> <summary> Compares this instance to a specified 32-bit unsigned integer and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. </returns> <param name="value"> An unsigned integer to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt32.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.UInt32" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt32.Equals(System.UInt32)"> <summary> Returns a value indicating whether this instance is equal to a specified <see cref="T:System.UInt32" />. </summary> <returns>true if <paramref name="obj" /> has the same value as this instance; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.UInt32" /> value to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt32.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt32.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.UInt32" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.UInt32" />. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.UInt32.MaxValue"> <summary> Represents the largest possible value of <see cref="T:System.UInt32" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.UInt32.MinValue"> <summary> Represents the smallest possible value of <see cref="T:System.UInt32" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.Parse(System.String)"> <summary> Converts the string representation of a number to its 32-bit unsigned integer equivalent. </summary> <returns> A 32-bit unsigned integer equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> <exception cref="T:System.FormatException"> The <paramref name="s" /> parameter is not of the correct format. </exception> <exception cref="T:System.OverflowException"> The <paramref name="s" /> parameter represents a number less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its 32-bit unsigned integer equivalent. </summary> <returns> A 32-bit unsigned integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 32-bit unsigned integer equivalent. </summary> <returns> A 32-bit unsigned integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified culture-specific format to its 32-bit unsigned integer equivalent. </summary> <returns> A 32-bit unsigned integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="s" /> is not in the correct style. </exception> <exception cref="T:System.OverflowException"> <paramref name="s" /> represents a number less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Byte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Char" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.UInt32.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Decimal" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Double" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.SByte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Single" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to <paramref name="type" />. </returns> <param name="type"> The type to which to convert this <see cref="T:System.UInt32" /> value. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that supplies culture-specific information about the format of the returned value. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt32.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance, consisting of a sequence of digits ranging from 0 to 9, without a sign or leading zeroes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.ToString(System.String)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A numeric format string. </param> <exception cref="T:System.FormatException"> The <paramref name="format" /> parameter is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.ToString(System.String,System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A numeric format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about this instance. </param> <exception cref="T:System.FormatException"> The <paramref name="format" /> parameter is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt32@)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 32-bit unsigned integer equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string representing the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="result"> When this method returns, contains the 32-bit unsigned integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in a format compliant with <paramref name="style" />, or represents a number less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt32.TryParse(System.String,System.UInt32@)"> <summary> Converts the string representation of a number to its 32-bit unsigned integer equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string representing the number to convert. </param> <param name="result"> When this method returns, contains the 32-bit unsigned integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not of the correct format, or represents a number less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.UInt64"> <summary> Represents a 64-bit unsigned integer. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.CompareTo(System.Object)"> <summary> Compares this instance to a specified object and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not a <see cref="T:System.UInt64" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt64.CompareTo(System.UInt64)"> <summary> Compares this instance to a specified 64-bit unsigned integer and returns an indication of their relative values. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="value" />. Return Value Description Less than zero This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. Greater than zero This instance is greater than <paramref name="value" />. </returns> <param name="value"> An unsigned integer to compare. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt64.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.UInt64" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt64.Equals(System.UInt64)"> <summary> Returns a value indicating whether this instance is equal to a specified <see cref="T:System.UInt64" /> value. </summary> <returns>true if <paramref name="obj" /> has the same value as this instance; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.UInt64" /> value to compare to this instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt64.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.UInt64.GetTypeCode"> <summary> Returns the <see cref="T:System.TypeCode" /> for value type <see cref="T:System.UInt64" />. </summary> <returns> The enumerated constant, <see cref="F:System.TypeCode.UInt64" />. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.UInt64.MaxValue"> <summary> Represents the largest possible value of <see cref="T:System.UInt64" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.UInt64.MinValue"> <summary> Represents the smallest possible value of <see cref="T:System.UInt64" />. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.Parse(System.String)"> <summary> Converts the string representation of a number to its 64-bit unsigned integer equivalent. </summary> <returns> A 64-bit unsigned integer equivalent to the number contained in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> <exception cref="T:System.FormatException"> The <paramref name="s" /> parameter is not in the correct format. </exception> <exception cref="T:System.OverflowException"> The <paramref name="s" /> parameter represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.Parse(System.String,System.Globalization.NumberStyles)"> <summary> Converts the string representation of a number in a specified style to its 64-bit unsigned integer equivalent. </summary> <returns> A 64-bit unsigned integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> The <paramref name="s" /> parameter is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> The <paramref name="s" /> parameter represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 64-bit unsigned integer equivalent. </summary> <returns> A 64-bit unsigned integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <exception cref="T:System.FormatException"> The <paramref name="s" /> parameter is not in a format compliant with <paramref name="style" />. </exception> <exception cref="T:System.OverflowException"> The <paramref name="s" /> parameter represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.Parse(System.String,System.IFormatProvider)"> <summary> Converts the string representation of a number in a specified culture-specific format to its 64-bit unsigned integer equivalent. </summary> <returns> A 64-bit unsigned integer equivalent to the number specified in <paramref name="s" />. </returns> <param name="s"> A string representing the number to convert. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about <paramref name="s" />. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> <exception cref="T:System.FormatException"> The <paramref name="s" /> parameter is not in the correct style. </exception> <exception cref="T:System.OverflowException"> The <paramref name="s" /> parameter represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.System#IConvertible#ToBoolean(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" />. </summary> <returns>true if the value of the current instance is not zero; otherwise, false. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Byte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToChar(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToChar(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Char" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToDateTime(System.IFormatProvider)"> <summary> This conversion is not supported. Attempting to use this method throws an <see cref="T:System.InvalidCastException" />. </summary> <returns> This conversion is not supported. No value is returned. </returns> <param name="provider"> This parameter is ignored. </param> <exception cref="T:System.InvalidCastException"> In all cases. </exception> </member> <member name="M:System.UInt64.System#IConvertible#ToDecimal(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDecimal(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Decimal" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToDouble(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToDouble(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Double" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.Int64" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToSByte(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSByte(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to an <see cref="T:System.SByte" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToSingle(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToSingle(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.Single" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToType(System.Type,System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToType(System.Type,System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to <paramref name="type" />. </returns> <param name="type"> The type to which to convert this <see cref="T:System.UInt64" /> value. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> implementation that supplies information about the format of the returned value. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToUInt16(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt16(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt16" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToUInt32(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt32(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, converted to a <see cref="T:System.UInt32" />. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.System#IConvertible#ToUInt64(System.IFormatProvider)"> <summary> For a description of this member, see <see cref="M:System.IConvertible.ToUInt64(System.IFormatProvider)" />. </summary> <returns> The value of the current instance, unchanged. </returns> <param name="provider"> This parameter is ignored. </param> </member> <member name="M:System.UInt64.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance, consisting of a sequence of digits ranging from 0 to 9, without a sign or leading zeroes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.ToString(System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="provider" />. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.ToString(System.String)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" />. </returns> <param name="format"> A numeric format string. </param> <exception cref="T:System.FormatException"> The <paramref name="format" /> parameter is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.ToString(System.String,System.IFormatProvider)"> <summary> Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> The string representation of the value of this instance as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A numeric format string. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information about this instance. </param> <exception cref="T:System.FormatException"> The <paramref name="format" /> parameter is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt64@)"> <summary> Converts the string representation of a number in a specified style and culture-specific format to its 64-bit unsigned integer equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string representing the number to convert. </param> <param name="style"> A bitwise combination of <see cref="T:System.Globalization.NumberStyles" /> values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />. </param> <param name="provider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="s" />. </param> <param name="result"> When this method returns, contains the 64-bit unsigned integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not in a format compliant with <paramref name="style" />, or represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value. -or- <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UInt64.TryParse(System.String,System.UInt64@)"> <summary> Converts the string representation of a number to its 64-bit unsigned integer equivalent. A return value indicates whether the conversion succeeded or failed. </summary> <returns>true if <paramref name="s" /> was converted successfully; otherwise, false. </returns> <param name="s"> A string representing the number to convert. </param> <param name="result"> When this method returns, contains the 64-bit unsigned integer value equivalent to the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is null, is not of the correct format, or represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. This parameter is passed uninitialized. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.UIntPtr"> <summary> A platform-specific type that is used to represent a pointer or a handle. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.UIntPtr.#ctor(System.UInt32)"> <summary> Initializes a new instance of the <see cref="T:System.UIntPtr" /> structure using the specified 32-bit pointer or handle. </summary> <param name="value"> A pointer or handle contained in a 32-bit unsigned integer. </param> </member> <member name="M:System.UIntPtr.#ctor(System.UInt64)"> <summary> Initializes a new instance of <see cref="T:System.UIntPtr" /> using the specified 64-bit pointer or handle. </summary> <param name="value"> A pointer or handle contained in a 64-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> On a 32-bit platform, <paramref name="value" /> is too large to represent as an <see cref="T:System.UIntPtr" />. </exception> </member> <member name="M:System.UIntPtr.#ctor(System.Void*)"> <summary> Initializes a new instance of <see cref="T:System.UIntPtr" /> using the specified pointer to an unspecified type. </summary> <param name="value"> A pointer to an unspecified type. </param> </member> <member name="M:System.UIntPtr.Equals(System.Object)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.UIntPtr" /> and equals the value of this instance; otherwise, false. </returns> <param name="obj"> An object to compare with this instance or null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.UIntPtr.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.UIntPtr.op_Equality(System.UIntPtr,System.UIntPtr)"> <summary> Determines whether two specified instances of <see cref="T:System.UIntPtr" /> are equal. </summary> <returns>true if <paramref name="value1" /> equals <paramref name="value2" />; otherwise, false. </returns> <param name="value1"> A <see cref="T:System.UIntPtr" />. </param> <param name="value2"> A <see cref="T:System.UIntPtr" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.UIntPtr.op_Explicit(System.UInt32)~System.UIntPtr"> <summary> Converts the value of a 32-bit unsigned integer to an <see cref="T:System.UIntPtr" />. </summary> <returns> A new instance of <see cref="T:System.UIntPtr" /> initialized to <paramref name="value" />. </returns> <param name="value"> A 32-bit unsigned integer. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.UIntPtr.op_Explicit(System.UInt64)~System.UIntPtr"> <summary> Converts the value of a 64-bit unsigned integer to an <see cref="T:System.UIntPtr" />. </summary> <returns> A new instance of <see cref="T:System.UIntPtr" /> initialized to <paramref name="value" />. </returns> <param name="value"> A 64-bit unsigned integer. </param> <exception cref="T:System.OverflowException"> On a 32-bit platform, <paramref name="value" /> is too large to represent as an <see cref="T:System.UIntPtr" />. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.UIntPtr.op_Explicit(System.UIntPtr)~System.UInt32"> <summary> Converts the value of the specified <see cref="T:System.UIntPtr" /> to a 32-bit unsigned integer. </summary> <returns> The contents of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.UIntPtr" />. </param> <exception cref="T:System.OverflowException"> On a 64-bit platform, the value of <paramref name="value" /> is too large to represent as a 32-bit unsigned integer. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.UIntPtr.op_Explicit(System.UIntPtr)~System.UInt64"> <summary> Converts the value of the specified <see cref="T:System.UIntPtr" /> to a 64-bit unsigned integer. </summary> <returns> The contents of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.UIntPtr" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.UIntPtr.op_Explicit(System.UIntPtr)~System.Void*"> <summary> Converts the value of the specified <see cref="T:System.UIntPtr" /> to a pointer to an unspecified type. </summary> <returns> The contents of <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.UIntPtr" />. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.UIntPtr.op_Explicit(System.Void*)~System.UIntPtr"> <summary> Converts the specified pointer to an unspecified type to a <see cref="T:System.UIntPtr" />. </summary> <returns> A new instance of <see cref="T:System.UIntPtr" /> initialized to <paramref name="value" />. </returns> <param name="value"> A pointer to an unspecified type. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.UIntPtr.op_Inequality(System.UIntPtr,System.UIntPtr)"> <summary> Determines whether two specified instances of <see cref="T:System.UIntPtr" /> are not equal. </summary> <returns>true if <paramref name="value1" /> does not equal <paramref name="value2" />; otherwise, false. </returns> <param name="value1"> A <see cref="T:System.UIntPtr" />. </param> <param name="value2"> A <see cref="T:System.UIntPtr" />. </param> <filterpriority>3</filterpriority> </member> <member name="P:System.UIntPtr.Size"> <summary> Gets the size of this instance. </summary> <returns> The size of a pointer or handle on this platform, measured in bytes. The value of this property is 4 on a 32-bit platform, and 8 on a 64-bit platform. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.UIntPtr.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data needed to serialize the current <see cref="T:System.UIntPtr" /> object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to populate with data. </param> <param name="context"> The destination for this serialization. (This parameter is not used; specify null.) </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.UIntPtr.ToPointer"> <summary> Converts the value of this instance to a pointer to an unspecified type. </summary> <returns> A pointer to <see cref="T:System.Void" />; that is, a pointer to memory containing data of an unspecified type. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.UIntPtr.ToString"> <summary> Converts the numeric value of this instance to its equivalent string representation. </summary> <returns> The string representation of the value of this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.UIntPtr.ToUInt32"> <summary> Converts the value of this instance to a 32-bit unsigned integer. </summary> <returns> A 32-bit unsigned integer equal to the value of this instance. </returns> <exception cref="T:System.OverflowException"> On a 64-bit platform, the value of this instance is too large to represent as a 32-bit unsigned integer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.UIntPtr.ToUInt64"> <summary> Converts the value of this instance to a 64-bit unsigned integer. </summary> <returns> A 64-bit unsigned integer equal to the value of this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="F:System.UIntPtr.Zero"> <summary> A read-only field that represents a pointer or handle that has been initialized to zero. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.UnauthorizedAccessException"> <summary> The exception that is thrown when the operating system denies access because of an I/O error or a specific type of security error. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.UnauthorizedAccessException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.UnauthorizedAccessException" /> class. </summary> </member> <member name="M:System.UnauthorizedAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.UnauthorizedAccessException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.UnauthorizedAccessException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.UnauthorizedAccessException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.UnauthorizedAccessException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.UnauthorizedAccessException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.UnhandledExceptionEventArgs"> <summary> Provides data for the event that is raised when there is an exception that is not handled in any application domain. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.UnhandledExceptionEventArgs.#ctor(System.Object,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.UnhandledExceptionEventArgs" /> class with the exception object and a common language runtime termination flag. </summary> <param name="exception"> The exception that is not handled. </param> <param name="isTerminating">true if the runtime is terminating; otherwise, false. </param> </member> <member name="P:System.UnhandledExceptionEventArgs.ExceptionObject"> <summary> Gets the unhandled exception object. </summary> <returns> The unhandled exception object. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.UnhandledExceptionEventArgs.IsTerminating"> <summary> Indicates whether the common language runtime is terminating. </summary> <returns>true if the runtime is terminating; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.UnhandledExceptionEventHandler"> <summary> Represents the method that will handle the event raised by an exception that is not handled by the application domain. </summary> <param name="sender"> The source of the unhandled exception event. </param> <param name="e"> An <paramref name="UnhandledExceptionEventArgs" /> that contains the event data. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.ValueType"> <summary> Provides the base class for value types. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.ValueType.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.ValueType" /> class. </summary> </member> <member name="M:System.ValueType.Equals(System.Object)"> <summary> Indicates whether this instance and a specified object are equal. </summary> <returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false. </returns> <param name="obj"> Another object to compare to. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.ValueType.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer that is the hash code for this instance. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.ValueType.ToString"> <summary> Returns the fully qualified type name of this instance. </summary> <returns> A <see cref="T:System.String" /> containing a fully qualified type name. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Version"> <summary> Represents the version number for a common language runtime assembly. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Version.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Version" /> class. </summary> </member> <member name="M:System.Version.#ctor(System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Version" /> class using the specified major and minor values. </summary> <param name="major"> The major version number. </param> <param name="minor"> The minor version number. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="major" /> or <paramref name="minor" /> is less than zero. </exception> </member> <member name="M:System.Version.#ctor(System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Version" /> class using the specified major, minor, and build values. </summary> <param name="major"> The major version number. </param> <param name="minor"> The minor version number. </param> <param name="build"> The build number. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="major" />, <paramref name="minor" />, or <paramref name="build" /> is less than zero. </exception> </member> <member name="M:System.Version.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Version" /> class with the specified major, minor, build, and revision numbers. </summary> <param name="major"> The major version number. </param> <param name="minor"> The minor version number. </param> <param name="build"> The build number. </param> <param name="revision"> The revision number. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="major" />, <paramref name="minor" />, <paramref name="build" />, or <paramref name="revision" /> is less than zero. </exception> </member> <member name="M:System.Version.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Version" /> class using the specified string. </summary> <param name="version"> A string containing the major, minor, build, and revision numbers, where each number is delimited with a period character ('.'). </param> <exception cref="T:System.ArgumentException"> <paramref name="version" /> has fewer than two components or more than four components. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="version" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> A major, minor, build, or revision component is less than zero. </exception> <exception cref="T:System.FormatException"> At least one component of <paramref name="version" /> does not parse to an integer. </exception> <exception cref="T:System.OverflowException"> At least one component of <paramref name="version" /> represents a number greater than <see cref="F:System.Int32.MaxValue" />. </exception> </member> <member name="P:System.Version.Build"> <summary> Gets the value of the build component of the version number for the current <see cref="T:System.Version" /> object. </summary> <returns> The build number, or -1 if the build number is undefined. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Version.Clone"> <summary> Returns a new <see cref="T:System.Version" /> object whose value is the same as the current <see cref="T:System.Version" /> object. </summary> <returns> A new <see cref="T:System.Object" /> whose values are a copy of the current <see cref="T:System.Version" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Version.CompareTo(System.Object)"> <summary> Compares the current <see cref="T:System.Version" /> object to a specified object and returns an indication of their relative values. </summary> <returns> Return Value Description Less than zero The current <see cref="T:System.Version" /> object is a version before <paramref name="version" />. Zero The current <see cref="T:System.Version" /> object is the same version as <paramref name="version" />. Greater than zero The current <see cref="T:System.Version" /> object is a version subsequent to <paramref name="version" />. -or- <paramref name="version" /> is null. </returns> <param name="version"> An object to compare, or null. </param> <exception cref="T:System.ArgumentException"> <paramref name="version" /> is not of type <see cref="T:System.Version" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Version.CompareTo(System.Version)"> <summary> Compares the current <see cref="T:System.Version" /> object to a specified <see cref="T:System.Version" /> object and returns an indication of their relative values. </summary> <returns> Return Value Description Less than zero The current <see cref="T:System.Version" /> object is a version before <paramref name="value" />. Zero The current <see cref="T:System.Version" /> object is the same version as <paramref name="value" />. Greater than zero The current <see cref="T:System.Version" /> object is a version subsequent to <paramref name="value" />. -or- <paramref name="value" /> is null. </returns> <param name="value"> A <see cref="T:System.Version" /> object to compare to the current <see cref="T:System.Version" /> object, or null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Version.Equals(System.Object)"> <summary> Returns a value indicating whether the current <see cref="T:System.Version" /> object is equal to a specified object. </summary> <returns>true if the current <see cref="T:System.Version" /> object and <paramref name="obj" /> are both <see cref="T:System.Version" /> objects, and every component of the current <see cref="T:System.Version" /> object matches the corresponding component of <paramref name="obj" />; otherwise, false. </returns> <param name="obj"> An object to compare with the current <see cref="T:System.Version" /> object, or null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Version.Equals(System.Version)"> <summary> Returns a value indicating whether the current <see cref="T:System.Version" /> object and a specified <see cref="T:System.Version" /> object represent the same value. </summary> <returns>true if every component of the current <see cref="T:System.Version" /> object matches the corresponding component of the <paramref name="obj" /> parameter; otherwise, false. </returns> <param name="obj"> A <see cref="T:System.Version" /> object to compare to the current <see cref="T:System.Version" /> object, or null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Version.GetHashCode"> <summary> Returns a hash code for the current <see cref="T:System.Version" /> object. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Version.Major"> <summary> Gets the value of the major component of the version number for the current <see cref="T:System.Version" /> object. </summary> <returns> The major version number. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Version.MajorRevision"> <summary> Gets the high 16 bits of the revision number. </summary> <returns> A 16-bit signed integer. </returns> </member> <member name="P:System.Version.Minor"> <summary> Gets the value of the minor component of the version number for the current <see cref="T:System.Version" /> object. </summary> <returns> The minor version number. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Version.MinorRevision"> <summary> Gets the low 16 bits of the revision number. </summary> <returns> A 16-bit signed integer. </returns> </member> <member name="M:System.Version.op_Equality(System.Version,System.Version)"> <summary> Determines whether two specified <see cref="T:System.Version" /> objects are equal. </summary> <returns>true if <paramref name="v1" /> equals <paramref name="v2" />; otherwise, false. </returns> <param name="v1"> The first <see cref="T:System.Version" /> object. </param> <param name="v2"> The second <see cref="T:System.Version" /> object. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Version.op_GreaterThan(System.Version,System.Version)"> <summary> Determines whether the first specified <see cref="T:System.Version" /> object is greater than the second specified <see cref="T:System.Version" /> object. </summary> <returns>true if <paramref name="v1" /> is greater than <paramref name="v2" />; otherwise, false. </returns> <param name="v1"> The first <see cref="T:System.Version" /> object. </param> <param name="v2"> The second <see cref="T:System.Version" /> object. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Version.op_GreaterThanOrEqual(System.Version,System.Version)"> <summary> Determines whether the first specified <see cref="T:System.Version" /> object is greater than or equal to the second specified <see cref="T:System.Version" /> object. </summary> <returns>true if <paramref name="v1" /> is greater than or equal to <paramref name="v2" />; otherwise, false. </returns> <param name="v1"> The first <see cref="T:System.Version" /> object. </param> <param name="v2"> The second <see cref="T:System.Version" /> object. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Version.op_Inequality(System.Version,System.Version)"> <summary> Determines whether two specified <see cref="T:System.Version" /> objects are not equal. </summary> <returns>true if <paramref name="v1" /> does not equal <paramref name="v2" />; otherwise, false. </returns> <param name="v1"> The first <see cref="T:System.Version" /> object. </param> <param name="v2"> The second <see cref="T:System.Version" /> object. </param> <filterpriority>3</filterpriority> </member> <member name="M:System.Version.op_LessThan(System.Version,System.Version)"> <summary> Determines whether the first specified <see cref="T:System.Version" /> object is less than the second specified <see cref="T:System.Version" /> object. </summary> <returns>true if <paramref name="v1" /> is less than <paramref name="v2" />; otherwise, false. </returns> <param name="v1"> The first <see cref="T:System.Version" /> object. </param> <param name="v2"> The second <see cref="T:System.Version" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="v1" /> is null. </exception> <filterpriority>3</filterpriority> </member> <member name="M:System.Version.op_LessThanOrEqual(System.Version,System.Version)"> <summary> Determines whether the first specified <see cref="T:System.Version" /> object is less than or equal to the second <see cref="T:System.Version" /> object. </summary> <returns>true if <paramref name="v1" /> is less than or equal to <paramref name="v2" />; otherwise, false. </returns> <param name="v1"> The first <see cref="T:System.Version" /> object. </param> <param name="v2"> The second <see cref="T:System.Version" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="v1" /> is null. </exception> <filterpriority>3</filterpriority> </member> <member name="P:System.Version.Revision"> <summary> Gets the value of the revision component of the version number for the current <see cref="T:System.Version" /> object. </summary> <returns> The revision number, or -1 if the revision number is undefined. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Version.ToString"> <summary> Converts the value of the current <see cref="T:System.Version" /> object to its equivalent <see cref="T:System.String" /> representation. </summary> <returns> The <see cref="T:System.String" /> representation of the values of the major, minor, build, and revision components of the current <see cref="T:System.Version" /> object, as depicted in the following format. Each component is separated by a period character ('.'). Square brackets ('[' and ']') indicate a component that will not appear in the return value if the component is not defined: major.minor[.build[.revision]] For example, if you create a <see cref="T:System.Version" /> object using the constructor Version(1,1), the returned string is "1.1". If you create a <see cref="T:System.Version" /> object using the constructor Version(1,3,4,2), the returned string is "1.3.4.2". </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Version.ToString(System.Int32)"> <summary> Converts the value of the current <see cref="T:System.Version" /> object to its equivalent <see cref="T:System.String" /> representation. A specified count indicates the number of components to return. </summary> <returns> The <see cref="T:System.String" /> representation of the values of the major, minor, build, and revision components of the current <see cref="T:System.Version" /> object, each separated by a period character ('.'). The <paramref name="fieldCount" /> parameter determines how many components are returned. fieldCount Return Value 0 An empty string (""). 1 major 2 major.minor 3 major.minor.build 4 major.minor.build.revision For example, if you create <see cref="T:System.Version" /> object using the constructor Version(1,3,5), ToString(2) returns "1.3" and ToString(4) throws an exception. </returns> <param name="fieldCount"> The number of components to return. The <paramref name="fieldCount" /> ranges from 0 to 4. </param> <exception cref="T:System.ArgumentException"> <paramref name="fieldCount" /> is less than 0, or more than 4. -or- <paramref name="fieldCount" /> is more than the number of components defined in the current <see cref="T:System.Version" /> object. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.Void"> <summary> Specifies a return value type for a method that does not return a value. </summary> <filterpriority>2</filterpriority> </member> <member name="T:System.WeakReference"> <summary> Represents a weak reference, which references an object while still allowing that object to be reclaimed by garbage collection. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.WeakReference.#ctor(System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.WeakReference" /> class, referencing the specified object. </summary> <param name="target"> The object to track or null. </param> </member> <member name="M:System.WeakReference.#ctor(System.Object,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.WeakReference" /> class, referencing the specified object and using the specified resurrection tracking. </summary> <param name="target"> An object to track. </param> <param name="trackResurrection"> Indicates when to stop tracking the object. If true, the object is tracked after finalization; if false, the object is only tracked until finalization. </param> </member> <member name="M:System.WeakReference.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.WeakReference" /> class, using deserialized data from the specified serialization and stream objects. </summary> <param name="info"> An object that holds all the data needed to serialize or deserialize the current <see cref="T:System.WeakReference" /> object. </param> <param name="context"> (Reserved) Describes the source and destination of the serialized stream specified by <paramref name="info" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.WeakReference.Finalize"> <summary> Discards the reference to the target represented by the current <see cref="T:System.WeakReference" /> object. </summary> </member> <member name="M:System.WeakReference.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with all the data needed to serialize the current <see cref="T:System.WeakReference" /> object. </summary> <param name="info"> An object that holds all the data needed to serialize or deserialize the current <see cref="T:System.WeakReference" /> object. </param> <param name="context"> (Reserved) The location where serialized data is stored and retrieved. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.WeakReference.IsAlive"> <summary> Gets an indication whether the object referenced by the current <see cref="T:System.WeakReference" /> object has been garbage collected. </summary> <returns>true if the object referenced by the current <see cref="T:System.WeakReference" /> object has not been garbage collected and is still accessible; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.WeakReference.Target"> <summary> Gets or sets the object (the target) referenced by the current <see cref="T:System.WeakReference" /> object. </summary> <returns>null if the object referenced by the current <see cref="T:System.WeakReference" /> object has been garbage collected; otherwise, a reference to the object referenced by the current <see cref="T:System.WeakReference" /> object. </returns> <exception cref="T:System.InvalidOperationException"> The reference to the target object is invalid. This exception can be thrown while setting this property if the value is a null reference or if the object has been finalized during the set operation. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.WeakReference.TrackResurrection"> <summary> Gets an indication whether the object referenced by the current <see cref="T:System.WeakReference" /> object is tracked after it is finalized. </summary> <returns>true if the object the current <see cref="T:System.WeakReference" /> object refers to is tracked after finalization; or false if the object is only tracked until finalization. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.ActivationContext.ApplicationManifestBytes"> <summary> Gets the ClickOnce application manifest for the current application. </summary> <returns> A byte array that contains the ClickOnce application manifest for the application that is associated with this <see cref="T:System.ActivationContext" />. </returns> </member> <member name="P:System.ActivationContext.DeploymentManifestBytes"> <summary> Gets the ClickOnce deployment manifest for the current application. </summary> <returns> A byte array that contains the ClickOnce deployment manifest for the application that is associated with this <see cref="T:System.ActivationContext" />. </returns> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Collections.Generic.IEnumerable{System.Reflection.Emit.CustomAttributeBuilder})"> <summary> Defines a dynamic assembly with the specified name, access mode, and custom attributes. </summary> <returns> An <see cref="T:System.Reflection.Emit.AssemblyBuilder" /> object that represents the new dynamic assembly. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The access mode for the dynamic assembly. </param> <param name="assemblyAttributes"> An enumerable list of attributes to be applied to the assembly, or null if there are no attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> starts with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> </member> <member name="M:System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.String,System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet,System.Boolean,System.Collections.Generic.IEnumerable{System.Reflection.Emit.CustomAttributeBuilder})"> <summary> Defines a dynamic assembly with the specified name, access mode, storage directory, evidence, permission requests, synchronization option, and custom attributes. </summary> <returns> An <see cref="T:System.Reflection.Emit.AssemblyBuilder" /> object that represents the new dynamic assembly. </returns> <param name="name"> The unique identity of the dynamic assembly. </param> <param name="access"> The mode in which the dynamic assembly will be accessed. </param> <param name="dir"> The name of the directory where the dynamic assembly will be saved. If <paramref name="dir" /> is null, the current directory is used. </param> <param name="evidence"> The evidence that is supplied for the dynamic assembly. The evidence is used unaltered as the final set of evidence used for policy resolution. </param> <param name="requiredPermissions"> The required permissions request. </param> <param name="optionalPermissions"> The optional permissions request. </param> <param name="refusedPermissions"> The refused permissions request. </param> <param name="isSynchronized">true to synchronize the creation of modules, types, and members in the dynamic assembly; otherwise, false. </param> <param name="assemblyAttributes"> An enumerable list of attributes to be applied to the assembly, or null if there are no attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The Name property of <paramref name="name" /> is null. -or- The Name property of <paramref name="name" /> starts with white space, or contains a forward or backward slash. </exception> <exception cref="T:System.AppDomainUnloadedException"> The operation is attempted on an unloaded application domain. </exception> </member> <member name="M:System.AppDomainManager.CheckSecuritySettings(System.Security.SecurityState)"> <summary> Returns a <see cref="T:System.Boolean" /> indicating whether the specified operation is allowed in the application domain. </summary> <returns>true if the host allows the operation specified by <paramref name="state" /> to be performed in the application domain; otherwise false. </returns> <param name="state"> A subclass of <see cref="T:System.Security.SecurityState" /> that identifies the operation whose security status is requested. </param> </member> <member name="P:System.AppDomainSetup.SandboxInterop"> <summary> Gets or sets a value that indicates whether interface caching is disabled for interop calls in the application domain, so that a QueryInterface is performed on each call. </summary> <returns>true if interface caching is disabled for interop calls in application domains created with the current <see cref="T:System.AppDomainSetup" /> object; otherwise, false. </returns> </member> <member name="T:System.DateTimeOffset"> <summary> Represents a point in time, typically expressed as a date and time of day, relative to Coordinated Universal Time (UTC). </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.DateTimeOffset.#ctor(System.DateTime)"> <summary> Initializes a new instance of the <see cref="T:System.DateTimeOffset" /> structure using the specified <see cref="T:System.DateTime" /> value. </summary> <param name="dateTime"> A date and time. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The Coordinated Universal Time (UTC) date and time that results from applying the offset is earlier than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The UTC date and time that results from applying the offset is later than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.#ctor(System.DateTime,System.TimeSpan)"> <summary> Initializes a new instance of the <see cref="T:System.DateTimeOffset" /> structure using the specified <see cref="T:System.DateTime" /> value and offset. </summary> <param name="dateTime"> A date and time. </param> <param name="offset"> The time's offset from Coordinated Universal Time (UTC). </param> <exception cref="T:System.ArgumentException"> <paramref name="dateTime.Kind" /> equals <see cref="F:System.DateTimeKind.Utc" /> and <paramref name="offset" /> does not equal zero. -or- <paramref name="dateTime.Kind" /> equals <see cref="F:System.DateTimeKind.Local" /> and <paramref name="offset" /> does not equal the offset of the system's local time zone. -or- <paramref name="offset" /> is not specified in whole minutes. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is less than -14 hours or greater than 14 hours. -or- <see cref="P:System.DateTimeOffset.UtcDateTime" /> is less than <see cref="F:System.DateTimeOffset.MinValue" /> or greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar,System.TimeSpan)"> <summary> Initializes a new instance of the <see cref="T:System.DateTimeOffset" /> structure using the specified year, month, day, hour, minute, second, millisecond, and offset of a specified calendar. </summary> <param name="year"> The year. </param> <param name="month"> The month (1 through 12). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="hour"> The hours (0 through 23). </param> <param name="minute"> The minutes (0 through 59). </param> <param name="second"> The seconds (0 through 59). </param> <param name="millisecond"> The milliseconds (0 through 999). </param> <param name="calendar"> The calendar whose time is defined. </param> <param name="offset"> The time's offset from Coordinated Universal Time (UTC). </param> <exception cref="T:System.ArgumentException"> <paramref name="offset" /> does not represent whole minutes. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="calendar" /> cannot be null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than the <paramref name="calendar" /> parameter's MinSupportedDateTime.Year or greater than MaxSupportedDateTime.Year. -or- <paramref name="month" /> is either less than or greater than the number of months in <paramref name="year" /> in the <paramref name="calendar" />. -or- <paramref name="day" /> is less than one or greater than the number of days in <paramref name="month" />. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. -or- <paramref name="millisecond" /> is less than 0 or greater than 999. -or- <paramref name="offset" /> is less than -14 hours or greater than 14 hours. -or- The <paramref name="year" />, <paramref name="month" />, and <paramref name="day" /> parameters cannot be represented as a date and time value. -or- The <see cref="P:System.DateTimeOffset.UtcDateTime" /> property is earlier than <see cref="F:System.DateTimeOffset.MinValue" /> or later than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.TimeSpan)"> <summary> Initializes a new instance of the <see cref="T:System.DateTimeOffset" /> structure using the specified year, month, day, hour, minute, second, millisecond, and offset. </summary> <param name="year"> The year (1 through 9999). </param> <param name="month"> The month (1 through 12). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="hour"> The hours (0 through 23). </param> <param name="minute"> The minutes (0 through 59). </param> <param name="second"> The seconds (0 through 59). </param> <param name="millisecond"> The milliseconds (0 through 999). </param> <param name="offset"> The time's offset from Coordinated Universal Time (UTC). </param> <exception cref="T:System.ArgumentException"> <paramref name="offset" /> does not represent whole minutes. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than one or greater than 9999. -or- <paramref name="month" /> is less than one or greater than 12. -or- <paramref name="day" /> is less than one or greater than the number of days in <paramref name="month" />. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. -or- <paramref name="millisecond" /> is less than 0 or greater than 999. -or- <paramref name="offset" /> is less than -14 or greater than 14. -or- The <see cref="P:System.DateTimeOffset.UtcDateTime" /> property is earlier than <see cref="F:System.DateTimeOffset.MinValue" /> or later than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.TimeSpan)"> <summary> Initializes a new instance of the <see cref="T:System.DateTimeOffset" /> structure using the specified year, month, day, hour, minute, second, and offset. </summary> <param name="year"> The year (1 through 9999). </param> <param name="month"> The month (1 through 12). </param> <param name="day"> The day (1 through the number of days in <paramref name="month" />). </param> <param name="hour"> The hours (0 through 23). </param> <param name="minute"> The minutes (0 through 59). </param> <param name="second"> The seconds (0 through 59). </param> <param name="offset"> The time's offset from Coordinated Universal Time (UTC). </param> <exception cref="T:System.ArgumentException"> <paramref name="offset" /> does not represent whole minutes. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than one or greater than 9999. -or- <paramref name="month" /> is less than one or greater than 12. -or- <paramref name="day" /> is less than one or greater than the number of days in <paramref name="month" />. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. -or- <paramref name="offset" /> is less than -14 hours or greater than 14 hours. -or- The <see cref="P:System.DateTimeOffset.UtcDateTime" /> property is earlier than <see cref="F:System.DateTimeOffset.MinValue" /> or later than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.#ctor(System.Int64,System.TimeSpan)"> <summary> Initializes a new instance of the <see cref="T:System.DateTimeOffset" /> structure using the specified number of ticks and offset. </summary> <param name="ticks"> A date and time expressed as the number of 100-nanosecond intervals that have elapsed since 12:00:00 midnight on January 1, 0001. </param> <param name="offset"> The time's offset from Coordinated Universal Time (UTC). </param> <exception cref="T:System.ArgumentException"> <paramref name="offset" /> is not specified in whole minutes. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <see cref="P:System.DateTimeOffset.UtcDateTime" /> property is earlier than <see cref="F:System.DateTimeOffset.MinValue" /> or later than <see cref="F:System.DateTimeOffset.MaxValue" />. -or- <paramref name="ticks" /> is less than DateTimeOffset.MinValue.Ticks or greater than DateTimeOffset.MaxValue.Ticks. -or- <paramref name="Offset" /> s less than -14 hours or greater than 14 hours. </exception> </member> <member name="M:System.DateTimeOffset.Add(System.TimeSpan)"> <summary> Adds a specified time interval to a <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose value is the sum of the date and time represented by the current <see cref="T:System.DateTimeOffset" /> object and the time interval represented by <paramref name="timeSpan" />. </returns> <param name="timeSpan"> A <see cref="T:System.TimeSpan" /> object that represents a positive or a negative time interval. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.AddDays(System.Double)"> <summary> Adds a specified number of whole and fractional days to the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose value is the sum of the date and time represented by the current <see cref="T:System.DateTimeOffset" /> object and the number of days represented by <paramref name="days" />. </returns> <param name="days"> A number of whole and fractional days. The number can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.AddHours(System.Double)"> <summary> Adds a specified number of whole and fractional hours to the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose value is the sum of the date and time represented by the current <see cref="T:System.DateTimeOffset" /> object and the number of hours represented by <paramref name="hours" />. </returns> <param name="hours"> A number of whole and fractional hours. The number can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.AddMilliseconds(System.Double)"> <summary> Adds a specified number of milliseconds to the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose value is the sum of the date and time represented by the current <see cref="T:System.DateTimeOffset" /> object and the number of whole milliseconds represented by <paramref name="milliseconds" />. </returns> <param name="milliseconds"> A number of whole and fractional milliseconds. The number can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.AddMinutes(System.Double)"> <summary> Adds a specified number of whole and fractional minutes to the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose value is the sum of the date and time represented by the current <see cref="T:System.DateTimeOffset" /> object and the number of minutes represented by <paramref name="minutes" />. </returns> <param name="minutes"> A number of whole and fractional minutes. The number can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.AddMonths(System.Int32)"> <summary> Adds a specified number of months to the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose value is the sum of the date and time represented by the current <see cref="T:System.DateTimeOffset" /> object and the number of months represented by <paramref name="months" />. </returns> <param name="months"> A number of whole months. The number can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.AddSeconds(System.Double)"> <summary> Adds a specified number of whole and fractional seconds to the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose value is the sum of the date and time represented by the current <see cref="T:System.DateTimeOffset" /> object and the number of seconds represented by <paramref name="seconds" />. </returns> <param name="seconds"> A number of whole and fractional seconds. The number can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.AddTicks(System.Int64)"> <summary> Adds a specified number of ticks to the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose value is the sum of the date and time represented by the current <see cref="T:System.DateTimeOffset" /> object and the number of ticks represented by <paramref name="ticks" />. </returns> <param name="ticks"> A number of 100-nanosecond ticks. The number can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.AddYears(System.Int32)"> <summary> Adds a specified number of years to the <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose value is the sum of the date and time represented by the current <see cref="T:System.DateTimeOffset" /> object and the number of seconds represented by <paramref name="years" />. </returns> <param name="years"> A number of years. The number can be negative or positive. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.Compare(System.DateTimeOffset,System.DateTimeOffset)"> <summary> Compares two <see cref="T:System.DateTimeOffset" /> objects and indicates whether the first is earlier than the second, equal to the second, or later than the second. </summary> <returns> A signed integer that indicates whether the value of the <paramref name="first" /> parameter is earlier than, later than, or the same time as the value of the <paramref name="second" /> parameter, as the following table shows. Return value Condition Less than zero <paramref name="first" /> is earlier than <paramref name="second" />. Zero <paramref name="first" /> is equal to <paramref name="second" />. Greater than zero <paramref name="first" /> is later than <paramref name="second" />. </returns> <param name="first"> The first <see cref="T:System.DateTimeOffset" /> object. </param> <param name="second"> The second <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.CompareTo(System.DateTimeOffset)"> <summary> Compares the current <see cref="T:System.DateTimeOffset" /> object to a specified <see cref="T:System.DateTimeOffset" /> object and indicates whether the current object is earlier than, the same as, or later than the second <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A signed integer that indicates the relationship between the current <see cref="T:System.DateTimeOffset" /> object and <paramref name="other" />, as the following table shows. Return Value Description Less than zero The current <see cref="T:System.DateTimeOffset" /> object is earlier than <paramref name="other" />. Zero The current <see cref="T:System.DateTimeOffset" /> object is the same as <paramref name="other" />. Greater than zero. The current <see cref="T:System.DateTimeOffset" /> object is later than <paramref name="other" />. </returns> <param name="other"> A <see cref="T:System.DateTimeOffset" /> object to compare with the current <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="P:System.DateTimeOffset.Date"> <summary> Gets a <see cref="T:System.DateTime" /> value that represents the date component of the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTime" /> value that represents the date component of the current <see cref="T:System.DateTimeOffset" /> object. </returns> </member> <member name="P:System.DateTimeOffset.DateTime"> <summary> Gets a <see cref="T:System.DateTime" /> value that represents the date and time of the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTime" /> value that represents the date and time of the current <see cref="T:System.DateTimeOffset" /> object. </returns> </member> <member name="P:System.DateTimeOffset.Day"> <summary> Gets the day of the month represented by the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> The day component of the current <see cref="T:System.DateTimeOffset" /> object, expressed as a value between 1 and 31. </returns> </member> <member name="P:System.DateTimeOffset.DayOfWeek"> <summary> Gets the day of the week represented by the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> One of the <see cref="T:System.DayOfWeek" /> values that indicates the day of the week of the current <see cref="T:System.DateTimeOffset" /> object. </returns> </member> <member name="P:System.DateTimeOffset.DayOfYear"> <summary> Gets the day of the year represented by the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> The day of the year of the current <see cref="T:System.DateTimeOffset" /> object, expressed as a value between 1 and 366. </returns> </member> <member name="M:System.DateTimeOffset.Equals(System.DateTimeOffset)"> <summary> Determines whether the current <see cref="T:System.DateTimeOffset" /> object represents the same point in time as a specified <see cref="T:System.DateTimeOffset" /> object. </summary> <returns>true if both <see cref="T:System.DateTimeOffset" /> objects have the same <see cref="P:System.DateTimeOffset.UtcDateTime" /> value; otherwise, false. </returns> <param name="other"> A <see cref="T:System.DateTimeOffset" /> object to compare to the current <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.Equals(System.DateTimeOffset,System.DateTimeOffset)"> <summary> Determines whether two specified <see cref="T:System.DateTimeOffset" /> objects represent the same point in time. </summary> <returns>true if the two <see cref="T:System.DateTimeOffset" /> objects have the same <see cref="P:System.DateTimeOffset.UtcDateTime" /> value; otherwise, false. </returns> <param name="first"> The first <see cref="T:System.DateTimeOffset" /> object. </param> <param name="second"> The second <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.Equals(System.Object)"> <summary> Determines whether a <see cref="T:System.DateTimeOffset" /> object represents the same point in time as a specified object. </summary> <returns>true if the <paramref name="obj" /> parameter is a <see cref="T:System.DateTimeOffset" /> object and represents the same point in time as the current <see cref="T:System.DateTimeOffset" /> object; otherwise, false. </returns> <param name="obj"> The object to compare to the current <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.EqualsExact(System.DateTimeOffset)"> <summary> Determines whether the current <see cref="T:System.DateTimeOffset" /> object represents the same time and has the same offset as a specified <see cref="T:System.DateTimeOffset" /> object. </summary> <returns>true if the current <see cref="T:System.DateTimeOffset" /> object and <paramref name="other" /> have the same date and time value and the same <see cref="P:System.DateTimeOffset.Offset" /> value; otherwise, false. </returns> <param name="other"> The <see cref="T:System.DateTimeOffset" /> object to compare to the current <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.FromFileTime(System.Int64)"> <summary> Converts the specified Windows file time to an equivalent local time. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object that represents the date and time of <paramref name="fileTime" /> with the offset set to the local time offset. </returns> <param name="fileTime"> A Windows file time, expressed in ticks. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="filetime" /> is less than zero. -or- <paramref name="filetime" /> is greater than DateTimeOffset.MaxValue.Ticks. </exception> </member> <member name="M:System.DateTimeOffset.GetHashCode"> <summary> Returns the hash code for the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A 32-bit signed integer hash code. </returns> </member> <member name="P:System.DateTimeOffset.Hour"> <summary> Gets the hour component of the time represented by the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> The hour component of the current <see cref="T:System.DateTimeOffset" /> object. This property uses a 24-hour clock; the value ranges from 0 to 23. </returns> </member> <member name="P:System.DateTimeOffset.LocalDateTime"> <summary> Gets a <see cref="T:System.DateTime" /> value that represents the local date and time of the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTime" /> value that represents the local date and time of the current <see cref="T:System.DateTimeOffset" /> object. </returns> </member> <member name="F:System.DateTimeOffset.MaxValue"> <summary> Represents the greatest possible value of <see cref="T:System.DateTimeOffset" />. This field is read-only. </summary> </member> <member name="P:System.DateTimeOffset.Millisecond"> <summary> Gets the millisecond component of the time represented by the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> The millisecond component of the current <see cref="T:System.DateTimeOffset" /> object, expressed as an integer between 0 and 999. </returns> </member> <member name="P:System.DateTimeOffset.Minute"> <summary> Gets the minute component of the time represented by the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> The minute component of the current <see cref="T:System.DateTimeOffset" /> object, expressed as an integer between 0 and 59. </returns> </member> <member name="F:System.DateTimeOffset.MinValue"> <summary> Represents the earliest possible <see cref="T:System.DateTimeOffset" /> value. This field is read-only. </summary> </member> <member name="P:System.DateTimeOffset.Month"> <summary> Gets the month component of the date represented by the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> The month component of the current <see cref="T:System.DateTimeOffset" /> object, expressed as an integer between 1 and 12. </returns> </member> <member name="P:System.DateTimeOffset.Now"> <summary> Gets a <see cref="T:System.DateTimeOffset" /> object that is set to the current date and time on the current computer, with the offset set to the local time's offset from Coordinated Universal Time (UTC). </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose date and time is the current local time and whose offset is the local time zone's offset from Coordinated Universal Time (UTC). </returns> </member> <member name="P:System.DateTimeOffset.Offset"> <summary> Gets the time's offset from Coordinated Universal Time (UTC). </summary> <returns> A <see cref="T:System.TimeSpan" /> object that represents the difference between the current <see cref="T:System.DateTimeOffset" /> object's time value and Coordinated Universal Time (UTC). </returns> </member> <member name="M:System.DateTimeOffset.op_Addition(System.DateTimeOffset,System.TimeSpan)"> <summary> Adds a specified time interval to a <see cref="T:System.DateTimeOffset" /> object that has a specified date and time, and yields a <see cref="T:System.DateTimeOffset" /> object that has new a date and time. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object whose value is the sum of the values of <paramref name="dateTimeTz" /> and <paramref name="timeSpan" />. </returns> <param name="dateTimeTz"> A <see cref="T:System.DateTimeOffset" /> object. </param> <param name="timeSpan"> A <see cref="T:System.TimeSpan" /> object that specifies the time interval to add to the <see cref="T:System.DateTimeOffset" /> object. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.op_Equality(System.DateTimeOffset,System.DateTimeOffset)"> <summary> Determines whether two specified <see cref="T:System.DateTimeOffset" /> objects represent the same point in time. </summary> <returns>true if both <see cref="T:System.DateTimeOffset" /> objects have the same <see cref="P:System.DateTimeOffset.UtcDateTime" /> value; otherwise, false. </returns> <param name="left"> The first <see cref="T:System.DateTimeOffset" /> object. </param> <param name="right"> The second <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.op_GreaterThan(System.DateTimeOffset,System.DateTimeOffset)"> <summary> Determines whether one specified <see cref="T:System.DateTimeOffset" /> object is greater than (or later than) a second specified <see cref="T:System.DateTimeOffset" /> object. </summary> <returns>true if the <see cref="P:System.DateTimeOffset.UtcDateTime" /> value of <paramref name="left" /> is later than the <see cref="P:System.DateTimeOffset.UtcDateTime" /> value of <paramref name="right" />; otherwise, false. </returns> <param name="left"> The first <see cref="T:System.DateTimeOffset" /> object. </param> <param name="right"> The second <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.op_GreaterThanOrEqual(System.DateTimeOffset,System.DateTimeOffset)"> <summary> Determines whether one specified <see cref="T:System.DateTimeOffset" /> object is greater than or equal to a second specified <see cref="T:System.DateTimeOffset" /> object. </summary> <returns>true if the <see cref="P:System.DateTimeOffset.UtcDateTime" /> value of <paramref name="left" /> is the same as or later than the <see cref="P:System.DateTimeOffset.UtcDateTime" /> value of <paramref name="right" />; otherwise, false. </returns> <param name="left"> The first <see cref="T:System.DateTimeOffset" /> object. </param> <param name="right"> The second <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.op_Implicit(System.DateTime)~System.DateTimeOffset"> <summary> Defines an implicit conversion of a <see cref="T:System.DateTime" /> object to a <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object. </returns> <param name="dateTime"> A <see cref="T:System.DateTime" /> object. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The Coordinated Universal Time (UTC) date and time that results from applying the offset is earlier than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The UTC date and time that results from applying the offset is later than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.op_Inequality(System.DateTimeOffset,System.DateTimeOffset)"> <summary> Determines whether two specified <see cref="T:System.DateTimeOffset" /> objects refer to different points in time. </summary> <returns>true if <paramref name="left" /> and <paramref name="right" /> do not have the same <see cref="P:System.DateTimeOffset.UtcDateTime" /> value; otherwise, false. </returns> <param name="left"> The first <see cref="T:System.DateTimeOffset" /> object. </param> <param name="right"> The second <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.op_LessThan(System.DateTimeOffset,System.DateTimeOffset)"> <summary> Determines whether one specified <see cref="T:System.DateTimeOffset" /> object is less than a second specified <see cref="T:System.DateTimeOffset" /> object. </summary> <returns>true if the <see cref="P:System.DateTimeOffset.UtcDateTime" /> value of <paramref name="left" /> is earlier than the <see cref="P:System.DateTimeOffset.UtcDateTime" /> value of <paramref name="right" />; otherwise, false. </returns> <param name="left"> The first <see cref="T:System.DateTimeOffset" /> object. </param> <param name="right"> The second <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.op_LessThanOrEqual(System.DateTimeOffset,System.DateTimeOffset)"> <summary> Determines whether one specified <see cref="T:System.DateTimeOffset" /> object is less than a second specified <see cref="T:System.DateTimeOffset" /> object. </summary> <returns>true if the <see cref="P:System.DateTimeOffset.UtcDateTime" /> value of <paramref name="left" /> is earlier than the <see cref="P:System.DateTimeOffset.UtcDateTime" /> value of <paramref name="right" />; otherwise, false. </returns> <param name="left"> The first <see cref="T:System.DateTimeOffset" /> object. </param> <param name="right"> The second <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.op_Subtraction(System.DateTimeOffset,System.DateTimeOffset)"> <summary> Subtracts one <see cref="T:System.DateTimeOffset" /> object from another and yields a time interval. </summary> <returns> A <see cref="T:System.TimeSpan" /> object that represents the difference between <paramref name="left" /> and <paramref name="right" />. </returns> <param name="left"> A <see cref="T:System.DateTimeOffset" /> object (the minuend). </param> <param name="right"> A second <see cref="T:System.DateTimeOffset" /> object (the subtrahend). </param> </member> <member name="M:System.DateTimeOffset.op_Subtraction(System.DateTimeOffset,System.TimeSpan)"> <summary> Subtracts a specified time interval from a specified date and time, and yields a new date and time. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object equal to the value of <paramref name="dateTimeTz" /> minus <paramref name="timeSpan" />. </returns> <param name="dateTimeTz"> A <see cref="T:System.DateTimeOffset" /> object that represents a particular date and time. </param> <param name="timeSpan"> A time interval. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" /> or greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.Parse(System.String)"> <summary> Converts the specified string representation of a date, time, and offset to its <see cref="T:System.DateTimeOffset" /> equivalent. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object that is equivalent to the date and time that is contained in <paramref name="input" />. </returns> <param name="input"> A string that contains a date and time to convert. </param> <exception cref="T:System.ArgumentException"> The offset is greater than 14 hours or less than -14 hours. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="input" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="input" /> does not contain a valid string representation of a date and time. -or- <paramref name="input" /> contains the string representation of an offset value without a date or time. </exception> </member> <member name="M:System.DateTimeOffset.Parse(System.String,System.IFormatProvider)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTimeOffset" /> equivalent using the specified culture-specific format information. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> equivalent to the date and time that is contained in <paramref name="input" /> as specified by <paramref name="formatProvider" />. </returns> <param name="input"> A string that contains a date and time to convert. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific format information about <paramref name="input" />. </param> <exception cref="T:System.ArgumentException"> The offset is greater than 14 hours or less than -14 hours. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="input" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="input" /> does not contain a valid string representation of a date and time. -or- <paramref name="input" /> contains the string representation of an offset value without a date or time. </exception> </member> <member name="M:System.DateTimeOffset.Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTimeOffset" /> equivalent using the specified culture-specific format information and formatting style. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object that is equivalent to the date and time that is contained in <paramref name="input" /> as specified by <paramref name="formatProvider" /> and <paramref name="styles" />. </returns> <param name="input"> A string that contains a date and time to convert. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific format information about <paramref name="input" />. </param> <param name="styles"> A bitwise combination of <see cref="T:System.Globalization.DateTimeStyles" /> values that indicates the permitted format of <paramref name="input" />. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />. </param> <exception cref="T:System.ArgumentException"> The offset is greater than 14 hours or less than -14 hours. -or- <paramref name="styles" /> is not a valid <see cref="T:System.Globalization.DateTimeStyles" /> value. -or- <paramref name="styles" /> includes an unsupported <see cref="T:System.Globalization.DateTimeStyles" /> value. -or- <paramref name="styles" /> includes <see cref="T:System.Globalization.DateTimeStyles" /> values that cannot be used together. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="input" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="input" /> does not contain a valid string representation of a date and time. -or- <paramref name="input" /> contains the string representation of an offset value without a date or time. </exception> </member> <member name="M:System.DateTimeOffset.ParseExact(System.String,System.String,System.IFormatProvider)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTimeOffset" /> equivalent using the specified format and culture-specific format information. The format of the string representation must match the specified format exactly. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object that is equivalent to the date and time that is contained in <paramref name="input" /> as specified by <paramref name="format" /> and <paramref name="formatProvider" />. </returns> <param name="input"> A string that contains a date and time to convert. </param> <param name="format"> A format specifier that defines the expected format of <paramref name="input" />. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="input" />. </param> <exception cref="T:System.ArgumentException"> The offset is greater than 14 hours or less than -14 hours. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="input" /> is null. -or- <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="input" /> is an empty string (""). -or- <paramref name="input" /> does not contain a valid string representation of a date and time. -or- <paramref name="format" /> is an empty string. </exception> </member> <member name="M:System.DateTimeOffset.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTimeOffset" /> equivalent using the specified format, culture-specific format information, and style. The format of the string representation must match the specified format exactly. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> equivalent to the date and time that is contained in the <paramref name="input" /> parameter as specified by the <paramref name="format" />, <paramref name="formatProvider" />, and <paramref name="styles" /> parameters. </returns> <param name="input"> A string that contains a date and time to convert. </param> <param name="format"> A format specifier that defines the expected format of <paramref name="input" />. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="input" />. </param> <param name="styles"> A bitwise combination of <see cref="T:System.Globalization.DateTimeStyles" /> values that indicates the permitted format of <paramref name="input" />. </param> <exception cref="T:System.ArgumentException"> The offset is greater than 14 hours or less than -14 hours. -or- The <paramref name="styles" /> parameter includes an unsupported value. -or- The <paramref name="styles" /> parameter contains <see cref="T:System.Globalization.DateTimeStyles" /> values that cannot be used together. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="input" /> is null. -or- <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="input" /> is an empty string (""). -or- <paramref name="input" /> does not contain a valid string representation of a date and time. -or- <paramref name="format" /> is an empty string. </exception> </member> <member name="M:System.DateTimeOffset.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTimeOffset" /> equivalent using the specified formats, culture-specific format information, and style. The format of the string representation must match one of the specified formats exactly. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> equivalent to the date and time that is contained in the <paramref name="input" /> parameter as specified by the <paramref name="formats" />, <paramref name="formatProvider" />, and <paramref name="styles" /> parameters. </returns> <param name="input"> A string that contains a date and time to convert. </param> <param name="formats"> An array of format specifiers that define the expected formats of <paramref name="input" />. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="input" />. </param> <param name="styles"> A bitwise combination of <see cref="T:System.Globalization.DateTimeStyles" /> values that indicates the permitted format of <paramref name="input" />. </param> <exception cref="T:System.ArgumentException"> The offset is greater than 14 hours or less than -14 hours. -or- <paramref name="styles" /> includes an unsupported value. -or- The <paramref name="styles" /> parameter contains <see cref="T:System.Globalization.DateTimeStyles" /> values that cannot be used together. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="input" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="input" /> is an empty string (""). -or- <paramref name="input" /> does not contain a valid string representation of a date and time. -or- No element of <paramref name="formats" /> contains a valid format specifier. </exception> </member> <member name="P:System.DateTimeOffset.Second"> <summary> Gets the second component of the clock time represented by the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> The second component of the <see cref="T:System.DateTimeOffset" /> object, expressed as an integer value between 0 and 59. </returns> </member> <member name="M:System.DateTimeOffset.Subtract(System.DateTimeOffset)"> <summary> Subtracts a <see cref="T:System.DateTimeOffset" /> value that represents a specific date and time from the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.TimeSpan" /> object that specifies the interval between the two <see cref="T:System.DateTimeOffset" /> objects. </returns> <param name="value"> A <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.Subtract(System.TimeSpan)"> <summary> Subtracts a specified time interval from the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object that is equal to the date and time represented by the current <see cref="T:System.DateTimeOffset" /> object, minus the time interval represented by <paramref name="value" />. </returns> <param name="value"> A <see cref="T:System.TimeSpan" /> object that represents a time interval. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting <see cref="T:System.DateTimeOffset" /> value is less than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> value is greater than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> </member> <member name="M:System.DateTimeOffset.System#IComparable#CompareTo(System.Object)"> <summary> Compares the value of the current <see cref="T:System.DateTimeOffset" /> object with another object of the same type. </summary> <returns> A 32-bit signed integer that indicates whether the current <see cref="T:System.DateTimeOffset" /> object is less than, equal to, or greater than <paramref name="obj" />. The return values of the method are interpreted as follows: Return Value Description Less than zero The current <see cref="T:System.DateTimeOffset" /> object is less than (earlier than) <paramref name="obj" />. Zero The current <see cref="T:System.DateTimeOffset" /> object is equal to (the same point in time as) <paramref name="obj" />. Greater than zero The current <see cref="T:System.DateTimeOffset" /> object is greater than (later than) <paramref name="obj" />. </returns> <param name="obj"> The object to compare with the current <see cref="T:System.DateTimeOffset" /> object. </param> </member> <member name="M:System.DateTimeOffset.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)"> <summary> Runs when the deserialization of an object has been completed. </summary> <param name="sender"> The object that initiated the callback. The functionality for this parameter is not currently implemented. </param> </member> <member name="M:System.DateTimeOffset.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data required to serialize the current <see cref="T:System.DateTimeOffset" /> object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to populate with data. </param> <param name="context"> The destination for this serialization (see <see cref="T:System.Runtime.Serialization.StreamingContext" />). </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> parameter is null. </exception> </member> <member name="P:System.DateTimeOffset.Ticks"> <summary> Gets the number of ticks that represents the date and time of the current <see cref="T:System.DateTimeOffset" /> object in clock time. </summary> <returns> An <see cref="T:System.Int64" /> value that represents the number of ticks in the <see cref="T:System.DateTimeOffset" /> object's clock time. </returns> </member> <member name="P:System.DateTimeOffset.TimeOfDay"> <summary> Gets the time of day for the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.TimeSpan" /> object that represents the time interval of the current date that has elapsed since midnight. </returns> </member> <member name="M:System.DateTimeOffset.ToFileTime"> <summary> Converts the value of the current <see cref="T:System.DateTimeOffset" /> object to a Windows file time. </summary> <returns> The value of the current <see cref="T:System.DateTimeOffset" /> object, expressed as a Windows file time. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting file time would represent a date and time before midnight on January 1, 1601 C.E. Coordinated Universal Time (UTC). </exception> </member> <member name="M:System.DateTimeOffset.ToLocalTime"> <summary> Converts the current <see cref="T:System.DateTimeOffset" /> object to a <see cref="T:System.DateTimeOffset" /> object that represents the local time. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object that represents the date and time of the current <see cref="T:System.DateTimeOffset" /> object converted to local time. </returns> </member> <member name="M:System.DateTimeOffset.ToOffset(System.TimeSpan)"> <summary> Converts the value of the current <see cref="T:System.DateTimeOffset" /> object to the date and time specified by an offset value. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object that is equal to the original <see cref="T:System.DateTimeOffset" /> object (that is, their <see cref="M:System.DateTimeOffset.ToUniversalTime" /> methods return identical points in time) but whose <see cref="P:System.DateTimeOffset.Offset" /> property is set to <paramref name="offset" />. </returns> <param name="offset"> The offset to convert the <see cref="T:System.DateTimeOffset" /> value to. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTimeOffset" /> object has a <see cref="P:System.DateTimeOffset.DateTime" /> value earlier than <see cref="F:System.DateTimeOffset.MinValue" />. -or- The resulting <see cref="T:System.DateTimeOffset" /> object has a <see cref="P:System.DateTimeOffset.DateTime" /> value later than <see cref="F:System.DateTimeOffset.MaxValue" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is less than -14 hours. -or- <paramref name="offset" /> is greater than 14 hours. </exception> </member> <member name="M:System.DateTimeOffset.ToString"> <summary> Converts the value of the current <see cref="T:System.DateTimeOffset" /> object to its equivalent string representation. </summary> <returns> A string representation of a <see cref="T:System.DateTimeOffset" /> object that includes the offset appended at the end of the string. </returns> </member> <member name="M:System.DateTimeOffset.ToString(System.IFormatProvider)"> <summary> Converts the value of the current <see cref="T:System.DateTimeOffset" /> object to its equivalent string representation using the specified culture-specific formatting information. </summary> <returns> A string representation of the value of the current <see cref="T:System.DateTimeOffset" /> object, as specified by <paramref name="formatProvider" />. </returns> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information. </param> </member> <member name="M:System.DateTimeOffset.ToString(System.String)"> <summary> Converts the value of the current <see cref="T:System.DateTimeOffset" /> object to its equivalent string representation using the specified format. </summary> <returns> A string representation of the value of the current <see cref="T:System.DateTimeOffset" /> object, as specified by <paramref name="format" />. </returns> <param name="format"> A format string. </param> <exception cref="T:System.FormatException"> The length of <paramref name="format" /> is one, and it is not one of the format specifier characters defined for <see cref="T:System.Globalization.DateTimeFormatInfo" />. -or- <paramref name="format" /> does not contain a valid custom format pattern. </exception> </member> <member name="M:System.DateTimeOffset.ToString(System.String,System.IFormatProvider)"> <summary> Converts the value of the current <see cref="T:System.DateTimeOffset" /> object to its equivalent string representation using the specified format and culture-specific format information. </summary> <returns> A string representation of the value of the current <see cref="T:System.DateTimeOffset" /> object, as specified by <paramref name="format" /> and <paramref name="provider" />. </returns> <param name="format"> A format string. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information. </param> <exception cref="T:System.FormatException"> The length of <paramref name="format" /> is one, and it is not one of the standard format specifier characters defined for <see cref="T:System.Globalization.DateTimeFormatInfo" />. -or- <paramref name="format" /> does not contain a valid custom format pattern. </exception> </member> <member name="M:System.DateTimeOffset.ToUniversalTime"> <summary> Converts the current <see cref="T:System.DateTimeOffset" /> object to a <see cref="T:System.DateTimeOffset" /> value that represents the Coordinated Universal Time (UTC). </summary> <returns> A <see cref="T:System.DateTimeOffset" /> object that represents the date and time of the current <see cref="T:System.DateTimeOffset" /> object converted to Coordinated Universal Time (UTC). </returns> </member> <member name="M:System.DateTimeOffset.TryParse(System.String,System.DateTimeOffset@)"> <summary> Tries to converts a specified string representation of a date and time to its <see cref="T:System.DateTimeOffset" /> equivalent, and returns a value that indicates whether the conversion succeeded. </summary> <returns>true if the <paramref name="input" /> parameter is successfully converted; otherwise, false. </returns> <param name="input"> A string that contains a date and time to convert. </param> <param name="result"> When the method returns, contains the <see cref="T:System.DateTimeOffset" /> equivalent to the date and time of <paramref name="input" />, if the conversion succeeded, or <see cref="F:System.DateTimeOffset.MinValue" />, if the conversion failed. The conversion fails if the <paramref name="input" /> parameter is null or does not contain a valid string representation of a date and time. This parameter is passed uninitialized. </param> </member> <member name="M:System.DateTimeOffset.TryParse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@)"> <summary> Tries to convert a specified string representation of a date and time to its <see cref="T:System.DateTimeOffset" /> equivalent, and returns a value that indicates whether the conversion succeeded. </summary> <returns>true if the <paramref name="input" /> parameter is successfully converted; otherwise, false. </returns> <param name="input"> A string that contains a date and time to convert. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that provides culture-specific formatting information about <paramref name="input" />. </param> <param name="styles"> A bitwise combination of <see cref="T:System.Globalization.DateTimeStyles" /> values that indicates the permitted format of <paramref name="input" />. </param> <param name="result"> When the method returns, contains the <see cref="T:System.DateTimeOffset" /> value equivalent to the date and time of <paramref name="input" />, if the conversion succeeded, or <see cref="F:System.DateTimeOffset.MinValue" />, if the conversion failed. The conversion fails if the <paramref name="input" /> parameter is null or does not contain a valid string representation of a date and time. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="styles" /> includes an undefined <see cref="T:System.Globalization.DateTimeStyles" /> value. -or- <see cref="F:System.Globalization.DateTimeStyles.NoCurrentDateDefault" /> is not supported. -or- <paramref name="styles" /> includes mutually exclusive <see cref="T:System.Globalization.DateTimeStyles" /> values. </exception> </member> <member name="M:System.DateTimeOffset.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTimeOffset" /> equivalent using the specified format, culture-specific format information, and style. The format of the string representation must match the specified format exactly. </summary> <returns>true if the <paramref name="input" /> parameter is successfully converted; otherwise, false. </returns> <param name="input"> A string that contains a date and time to convert. </param> <param name="format"> A format specifier that defines the required format of <paramref name="input" />. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="input" />. </param> <param name="styles"> A bitwise combination of <see cref="T:System.Globalization.DateTimeStyles" /> values that indicates the permitted format of input. A typical value to specify is None. </param> <param name="result"> When the method returns, contains the <see cref="T:System.DateTimeOffset" /> equivalent to the date and time of <paramref name="input" />, if the conversion succeeded, or <see cref="F:System.DateTimeOffset.MinValue" />, if the conversion failed. The conversion fails if the <paramref name="input" /> parameter is null, or does not contain a valid string representation of a date and time in the expected format defined by <paramref name="format" /> and <paramref name="provider" />. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="styles" /> includes an undefined <see cref="T:System.Globalization.DateTimeStyles" /> value. -or- <see cref="F:System.Globalization.DateTimeStyles.NoCurrentDateDefault" /> is not supported. -or- <paramref name="styles" /> includes mutually exclusive <see cref="T:System.Globalization.DateTimeStyles" /> values. </exception> </member> <member name="M:System.DateTimeOffset.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@)"> <summary> Converts the specified string representation of a date and time to its <see cref="T:System.DateTimeOffset" /> equivalent using the specified array of formats, culture-specific format information, and style. The format of the string representation must match one of the specified formats exactly. </summary> <returns>true if the <paramref name="input" /> parameter is successfully converted; otherwise, false. </returns> <param name="input"> A string that contains a date and time to convert. </param> <param name="formats"> An array that defines the expected formats of <paramref name="input" />. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that supplies culture-specific formatting information about <paramref name="input" />. </param> <param name="styles"> A bitwise combination of <see cref="T:System.Globalization.DateTimeStyles" /> values that indicates the permitted format of input. A typical value to specify is None. </param> <param name="result"> When the method returns, contains the <see cref="T:System.DateTimeOffset" /> equivalent to the date and time of <paramref name="input" />, if the conversion succeeded, or <see cref="F:System.DateTimeOffset.MinValue" />, if the conversion failed. The conversion fails if the <paramref name="input" /> does not contain a valid string representation of a date and time, or does not contain the date and time in the expected format defined by <paramref name="format" />, or if <paramref name="formats" /> is null. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentException"> <paramref name="styles" /> includes an undefined <see cref="T:System.Globalization.DateTimeStyles" /> value. -or- <see cref="F:System.Globalization.DateTimeStyles.NoCurrentDateDefault" /> is not supported. -or- <paramref name="styles" /> includes mutually exclusive <see cref="T:System.Globalization.DateTimeStyles" /> values. </exception> </member> <member name="P:System.DateTimeOffset.UtcDateTime"> <summary> Gets a <see cref="T:System.DateTime" /> value that represents the Coordinated Universal Time (UTC) date and time of the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> A <see cref="T:System.DateTime" /> value that represents the Coordinated Universal Time (UTC) date and time of the current <see cref="T:System.DateTimeOffset" /> object. </returns> </member> <member name="P:System.DateTimeOffset.UtcNow"> <summary> Gets a <see cref="T:System.DateTimeOffset" /> object whose date and time are set to the current Coordinated Universal Time (UTC) date and time and whose offset is <see cref="F:System.TimeSpan.Zero" />. </summary> <returns> A <see cref="T:System.DateTimeOffset" /> value whose date and time is the current Coordinated Universal Time (UTC) and whose offset is <see cref="F:System.TimeSpan.Zero" />. </returns> </member> <member name="P:System.DateTimeOffset.UtcTicks"> <summary> Gets the number of ticks that represents the date and time of the current <see cref="T:System.DateTimeOffset" /> object in Coordinated Universal Time (UTC). </summary> <returns> An <see cref="T:System.Int64" /> value that represents the number of ticks in the <see cref="T:System.DateTimeOffset" /> object's Coordinated Universal Time (UTC). </returns> </member> <member name="P:System.DateTimeOffset.Year"> <summary> Gets the year component of the date represented by the current <see cref="T:System.DateTimeOffset" /> object. </summary> <returns> The year component of the current <see cref="T:System.DateTimeOffset" /> object, expressed as an integer value between 0 and 9999. </returns> </member> <member name="M:System.GC.CancelFullGCNotification"> <summary> Cancels the registration of a garbage collection notification. </summary> </member> <member name="M:System.GC.Collect(System.Int32,System.GCCollectionMode)"> <summary> Forces a garbage collection from generation zero through a specified generation, at a time specified by a <see cref="T:System.GCCollectionMode" /> value. </summary> <param name="generation"> The number of the oldest generation that garbage collection can be performed on. </param> <param name="mode"> One of the <see cref="T:System.GCCollectionMode" /> values. </param> </member> <member name="M:System.GC.RegisterForFullGCNotification(System.Int32,System.Int32)"> <summary> Sets a notification to be raised when conditions favor full garbage collection and for when the collection has been completed. </summary> <param name="maxGenerationThreshold"> A number between 1 and 99 for when the notification should be raised based on the objects surviving in generation 2. </param> <param name="largeObjectHeapThreshold"> A number between 1 and 99 for when the notification should be raised based on objects allocated in the large object heap in generation 3. </param> </member> <member name="M:System.GC.WaitForFullGCApproach"> <summary> Returns the status of a registered notification for determining if a full garbage collection by the runtime is imminent. </summary> <returns> The status of the registered garbage collection notification. </returns> </member> <member name="M:System.GC.WaitForFullGCApproach(System.Int32)"> <summary> Returns the status of a registered notification for determining if a full garbage collection by the runtime is imminent, in a specified time out period. </summary> <returns> The status of the registered garbage collection notification. </returns> <param name="millisecondsTimeout"> The length of time to allow for waiting before a notification status can be obtained. Specify -1 to wait indefinitly. </param> </member> <member name="M:System.GC.WaitForFullGCComplete"> <summary> Returns the status of a registered notification for determining if a full garbage collection by the runtime has completed. </summary> <returns> The status of the registered garbage collection notification. </returns> </member> <member name="M:System.GC.WaitForFullGCComplete(System.Int32)"> <summary> Returns the status of a registered notification for determining if a full garbage collection by the runtime has completed,in a specified time out period. </summary> <returns> The status of the registered garbage collection notification. </returns> <param name="millisecondsTimeout"> The length of time to allow waiting before a notification status can be obtained. Specify -1 to wait indefinitly. </param> </member> <member name="T:System.GCCollectionMode"> <summary> Specifies the behavior for a forced garbage collection. </summary> </member> <member name="F:System.GCCollectionMode.Default"> <summary> The default setting for this enumeration, which is currently <see cref="F:System.GCCollectionMode.Forced" />. </summary> </member> <member name="F:System.GCCollectionMode.Forced"> <summary> Forces the garbage collection to occur immediately. </summary> </member> <member name="F:System.GCCollectionMode.Optimized"> <summary> Allows the garbage collector to determine whether the current time is optimal to reclaim objects. </summary> </member> <member name="T:System.GCNotificationStatus"> <summary> Provides information about the current registration for notification of the next full garbage collection. </summary> </member> <member name="F:System.GCNotificationStatus.Succeeded"> <summary> The notification was successful and the registration was not canceled. </summary> </member> <member name="F:System.GCNotificationStatus.Failed"> <summary> The notification failed for any reason. </summary> </member> <member name="F:System.GCNotificationStatus.Canceled"> <summary> The current registration was canceled by the user. </summary> </member> <member name="F:System.GCNotificationStatus.Timeout"> <summary> The time specified by the <paramref name="millisecondsTimeout" /> parameter for either <see cref="M:System.GC.WaitForFullGCApproach(System.Int32)" /> or <see cref="M:System.GC.WaitForFullGCComplete(System.Int32)" /> has elapsed. </summary> </member> <member name="F:System.GCNotificationStatus.NotApplicable"> <summary> The registration is inapplicable because there is no current registration for garbage collection or concurrent garbage collection is enabled. See the <gcConcurrent> runtime setting for information about how to disable concurrent garbage collection. </summary> </member> <member name="M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CultureInfo,System.Globalization.CompareOptions)"> <summary> Compares substrings of two specified <see cref="T:System.String" /> objects using the specified comparison options and culture-specific information to influence the comparison, and returns an integer that indicates the relationship of the two substrings to each other in the sort order. </summary> <returns> An integer that indicates the lexical relationship between the two substrings, as shown in the following table. Value Condition Less than zero The substring in <paramref name="strA" /> is less than the substring in <paramref name="strB" />. Zero The substrings are equal or <paramref name="length" /> is zero. Greater than zero The substring in <paramref name="strA" /> is greater than the substring in <paramref name="strB" />. </returns> <param name="strA"> The first string. </param> <param name="indexA"> The starting position of the substring within <paramref name="strA" />. </param> <param name="strB"> The second string. </param> <param name="indexB"> The starting position of the substring within <paramref name="strB" />. </param> <param name="length"> The maximum number of characters in the substrings to compare. </param> <param name="culture"> The culture that supplies culture-specific comparison information. </param> <param name="options"> Options to use when performing the comparison (such as ignoring case or symbols). </param> <exception cref="T:System.ArgumentException"> <paramref name="options" /> is not a <see cref="T:System.Globalization.CompareOptions" /> value. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="indexA" /> is greater than <paramref name="strA" />.Length. -or- <paramref name="indexB" /> is greater than <paramref name="strB" />.Length. -or- <paramref name="indexA" />, <paramref name="indexB" />, or <paramref name="length" /> is negative. -or- Either <paramref name="strA" /> or <paramref name="strB" /> is null, and <paramref name="length" /> is greater than zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> </member> <member name="M:System.String.Compare(System.String,System.String,System.Globalization.CultureInfo,System.Globalization.CompareOptions)"> <summary> Compares two specified <see cref="T:System.String" /> objects using the specified comparison options and culture-specific information to influence the comparison, and returns an integer that indicates the relationship of the two strings to each other in the sort order. </summary> <returns> A 32-bit signed integer that indicates the lexical relationship between <paramref name="strA" /> and <paramref name="strB" />, as shown in the following table Value Condition Less than zero <paramref name="strA" /> is less than <paramref name="strB" />. Zero <paramref name="strA" /> equals <paramref name="strB" />. Greater than zero <paramref name="strA" /> is greater than <paramref name="strB" />. </returns> <param name="strA"> The first string. </param> <param name="strB"> The second string. </param> <param name="culture"> The culture that supplies culture-specific comparison information. </param> <param name="options"> Options to use when performing the comparison (such as ignoring case or symbols). </param> <exception cref="T:System.ArgumentException"> <paramref name="options" /> is not a <see cref="T:System.Globalization.CompareOptions" /> value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> </member> <member name="M:System.MulticastDelegate.DynamicInvokeImpl(System.Object[])"> <summary> Processes the full invocation list. </summary> <returns> An array of type <see cref="T:System.Object" /> that contains the return value of the encapsulated method. </returns> <param name="args"> The arguments to pass to the encapsulated method. </param> <exception cref="T:System.MemberAccessException"> Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. -or- There is an attempt to invoke a method to which the caller does not have access (that is, a private method). </exception> <exception cref="T:System.ArgumentException"> The number, order, or type of parameters is invalid. </exception> <exception cref="T:System.Reflection.TargetException"> An encapsulated method is not static, and the target object is null. -or- There is an attempt to invoke a method on an object or class that does not support the method. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> One of the encapsulated methods throws an exception. </exception> </member> <member name="M:System.Delegate.Finalize"> <summary> Releases the resources held by the current instance. </summary> </member> <member name="M:System.MulticastDelegate.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.MulticastDelegate" /> class. </summary> </member> <member name="M:System.Enum.System#IConvertible#ToString(System.IFormatProvider)"> <summary> Converts the current value to a string based on the underlying type. </summary> <returns> The converted value. </returns> <param name="provider"> An object that supplies culture-specific formatting information. </param> </member> <member name="M:System.SByte.System#IConvertible#GetTypeCode"> <summary> For a description of this member, see <see cref="M:System.IConvertible.GetTypeCode" />. </summary> <returns> <see cref="F:System.TypeCode.SByte" />. </returns> </member> <member name="T:System.Collections.ArrayList"> <summary> Implements the <see cref="T:System.Collections.IList" /> interface using an array whose size is dynamically increased as required. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.ArrayList" /> class that is empty and has the default initial capacity. </summary> </member> <member name="M:System.Collections.ArrayList.#ctor(System.Collections.ICollection)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.ArrayList" /> class that contains elements copied from the specified collection and that has the same initial capacity as the number of elements copied. </summary> <param name="c"> The <see cref="T:System.Collections.ICollection" /> whose elements are copied to the new list. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="c" /> is null. </exception> </member> <member name="M:System.Collections.ArrayList.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.ArrayList" /> class that is empty and has the specified initial capacity. </summary> <param name="capacity"> The number of elements that the new list can initially store. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. </exception> </member> <member name="M:System.Collections.ArrayList.Adapter(System.Collections.IList)"> <summary> Creates an <see cref="T:System.Collections.ArrayList" /> wrapper for a specific <see cref="T:System.Collections.IList" />. </summary> <returns> The <see cref="T:System.Collections.ArrayList" /> wrapper around the <see cref="T:System.Collections.IList" />. </returns> <param name="list"> The <see cref="T:System.Collections.IList" /> to wrap. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="list" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.Add(System.Object)"> <summary> Adds an object to the end of the <see cref="T:System.Collections.ArrayList" />. </summary> <returns> The <see cref="T:System.Collections.ArrayList" /> index at which the <paramref name="value" /> has been added. </returns> <param name="value"> The <see cref="T:System.Object" /> to be added to the end of the <see cref="T:System.Collections.ArrayList" />. The value can be null. </param> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. -or- The <see cref="T:System.Collections.ArrayList" /> has a fixed size. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.AddRange(System.Collections.ICollection)"> <summary> Adds the elements of an <see cref="T:System.Collections.ICollection" /> to the end of the <see cref="T:System.Collections.ArrayList" />. </summary> <param name="c"> The <see cref="T:System.Collections.ICollection" /> whose elements should be added to the end of the <see cref="T:System.Collections.ArrayList" />. The collection itself cannot be null, but it can contain elements that are null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="c" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. -or- The <see cref="T:System.Collections.ArrayList" /> has a fixed size. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.BinarySearch(System.Int32,System.Int32,System.Object,System.Collections.IComparer)"> <summary> Searches a range of elements in the sorted <see cref="T:System.Collections.ArrayList" /> for an element using the specified comparer and returns the zero-based index of the element. </summary> <returns> The zero-based index of <paramref name="value" /> in the sorted <see cref="T:System.Collections.ArrayList" />, if <paramref name="value" /> is found; otherwise, a negative number, which is the bitwise complement of the index of the next element that is larger than <paramref name="value" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.ArrayList.Count" />. </returns> <param name="index"> The zero-based starting index of the range to search. </param> <param name="count"> The length of the range to search. </param> <param name="value"> The <see cref="T:System.Object" /> to locate. The value can be null. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements. -or- null to use the default comparer that is the <see cref="T:System.IComparable" /> implementation of each element. </param> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in the <see cref="T:System.Collections.ArrayList" />. -or- <paramref name="comparer" /> is null and neither <paramref name="value" /> nor the elements of <see cref="T:System.Collections.ArrayList" /> implement the <see cref="T:System.IComparable" /> interface. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null and <paramref name="value" /> is not of the same type as the elements of the <see cref="T:System.Collections.ArrayList" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="count" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.BinarySearch(System.Object)"> <summary> Searches the entire sorted <see cref="T:System.Collections.ArrayList" /> for an element using the default comparer and returns the zero-based index of the element. </summary> <returns> The zero-based index of <paramref name="value" /> in the sorted <see cref="T:System.Collections.ArrayList" />, if <paramref name="value" /> is found; otherwise, a negative number, which is the bitwise complement of the index of the next element that is larger than <paramref name="value" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.ArrayList.Count" />. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate. The value can be null. </param> <exception cref="T:System.ArgumentException"> Neither <paramref name="value" /> nor the elements of <see cref="T:System.Collections.ArrayList" /> implement the <see cref="T:System.IComparable" /> interface. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="value" /> is not of the same type as the elements of the <see cref="T:System.Collections.ArrayList" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.BinarySearch(System.Object,System.Collections.IComparer)"> <summary> Searches the entire sorted <see cref="T:System.Collections.ArrayList" /> for an element using the specified comparer and returns the zero-based index of the element. </summary> <returns> The zero-based index of <paramref name="value" /> in the sorted <see cref="T:System.Collections.ArrayList" />, if <paramref name="value" /> is found; otherwise, a negative number, which is the bitwise complement of the index of the next element that is larger than <paramref name="value" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.ArrayList.Count" />. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate. The value can be null. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements. -or- null to use the default comparer that is the <see cref="T:System.IComparable" /> implementation of each element. </param> <exception cref="T:System.ArgumentException"> <paramref name="comparer" /> is null and neither <paramref name="value" /> nor the elements of <see cref="T:System.Collections.ArrayList" /> implement the <see cref="T:System.IComparable" /> interface. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null and <paramref name="value" /> is not of the same type as the elements of the <see cref="T:System.Collections.ArrayList" />. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Collections.ArrayList.Capacity"> <summary> Gets or sets the number of elements that the <see cref="T:System.Collections.ArrayList" /> can contain. </summary> <returns> The number of elements that the <see cref="T:System.Collections.ArrayList" /> can contain. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> <see cref="P:System.Collections.ArrayList.Capacity" /> is set to a value that is less than <see cref="P:System.Collections.ArrayList.Count" />. </exception> <exception cref="T:System.OutOfMemoryException"> There is not enough memory available on the system. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.Clear"> <summary> Removes all elements from the <see cref="T:System.Collections.ArrayList" />. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. -or- The <see cref="T:System.Collections.ArrayList" /> has a fixed size. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.Clone"> <summary> Creates a shallow copy of the <see cref="T:System.Collections.ArrayList" />. </summary> <returns> A shallow copy of the <see cref="T:System.Collections.ArrayList" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.Contains(System.Object)"> <summary> Determines whether an element is in the <see cref="T:System.Collections.ArrayList" />. </summary> <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.ArrayList" />; otherwise, false. </returns> <param name="item"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.CopyTo(System.Array)"> <summary> Copies the entire <see cref="T:System.Collections.ArrayList" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the beginning of the target array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ArrayList" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- The number of elements in the source <see cref="T:System.Collections.ArrayList" /> is greater than the number of elements that the destination <paramref name="array" /> can contain. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.ArrayList" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.CopyTo(System.Array,System.Int32)"> <summary> Copies the entire <see cref="T:System.Collections.ArrayList" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ArrayList" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="arrayIndex"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="arrayIndex" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.ArrayList" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.ArrayList" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.CopyTo(System.Int32,System.Array,System.Int32,System.Int32)"> <summary> Copies a range of elements from the <see cref="T:System.Collections.ArrayList" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array. </summary> <param name="index"> The zero-based index in the source <see cref="T:System.Collections.ArrayList" /> at which copying begins. </param> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ArrayList" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="arrayIndex"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <param name="count"> The number of elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="arrayIndex" /> is less than zero. -or- <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the <see cref="P:System.Collections.ArrayList.Count" /> of the source <see cref="T:System.Collections.ArrayList" />. -or- <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements from <paramref name="index" /> to the end of the source <see cref="T:System.Collections.ArrayList" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.ArrayList" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.ArrayList.Count"> <summary> Gets the number of elements actually contained in the <see cref="T:System.Collections.ArrayList" />. </summary> <returns> The number of elements actually contained in the <see cref="T:System.Collections.ArrayList" />. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.FixedSize(System.Collections.ArrayList)"> <summary> Returns an <see cref="T:System.Collections.ArrayList" /> wrapper with a fixed size. </summary> <returns> An <see cref="T:System.Collections.ArrayList" /> wrapper with a fixed size. </returns> <param name="list"> The <see cref="T:System.Collections.ArrayList" /> to wrap. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="list" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.FixedSize(System.Collections.IList)"> <summary> Returns an <see cref="T:System.Collections.IList" /> wrapper with a fixed size. </summary> <returns> An <see cref="T:System.Collections.IList" /> wrapper with a fixed size. </returns> <param name="list"> The <see cref="T:System.Collections.IList" /> to wrap. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="list" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.GetEnumerator"> <summary> Returns an enumerator for the entire <see cref="T:System.Collections.ArrayList" />. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for the entire <see cref="T:System.Collections.ArrayList" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.GetEnumerator(System.Int32,System.Int32)"> <summary> Returns an enumerator for a range of elements in the <see cref="T:System.Collections.ArrayList" />. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for the specified range of elements in the <see cref="T:System.Collections.ArrayList" />. </returns> <param name="index"> The zero-based starting index of the <see cref="T:System.Collections.ArrayList" /> section that the enumerator should refer to. </param> <param name="count"> The number of elements in the <see cref="T:System.Collections.ArrayList" /> section that the enumerator should refer to. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not specify a valid range in the <see cref="T:System.Collections.ArrayList" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.GetRange(System.Int32,System.Int32)"> <summary> Returns an <see cref="T:System.Collections.ArrayList" /> which represents a subset of the elements in the source <see cref="T:System.Collections.ArrayList" />. </summary> <returns> An <see cref="T:System.Collections.ArrayList" /> which represents a subset of the elements in the source <see cref="T:System.Collections.ArrayList" />. </returns> <param name="index"> The zero-based <see cref="T:System.Collections.ArrayList" /> index at which the range starts. </param> <param name="count"> The number of elements in the range. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.ArrayList" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.IndexOf(System.Object)"> <summary> Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.ArrayList" />. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the entire <see cref="T:System.Collections.ArrayList" />, if found; otherwise, -1. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.IndexOf(System.Object,System.Int32)"> <summary> Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that extends from the specified index to the last element. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that extends from <paramref name="startIndex" /> to the last element, if found; otherwise, -1. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be null. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.ArrayList" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.IndexOf(System.Object,System.Int32,System.Int32)"> <summary> Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that starts at the specified index and contains the specified number of elements. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that starts at <paramref name="startIndex" /> and contains <paramref name="count" /> number of elements, if found; otherwise, -1. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be null. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="count"> The number of elements in the section to search. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.ArrayList" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.ArrayList" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.Insert(System.Int32,System.Object)"> <summary> Inserts an element into the <see cref="T:System.Collections.ArrayList" /> at the specified index. </summary> <param name="index"> The zero-based index at which <paramref name="value" /> should be inserted. </param> <param name="value"> The <see cref="T:System.Object" /> to insert. The value can be null. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is greater than <see cref="P:System.Collections.ArrayList.Count" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. -or- The <see cref="T:System.Collections.ArrayList" /> has a fixed size. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.InsertRange(System.Int32,System.Collections.ICollection)"> <summary> Inserts the elements of a collection into the <see cref="T:System.Collections.ArrayList" /> at the specified index. </summary> <param name="index"> The zero-based index at which the new elements should be inserted. </param> <param name="c"> The <see cref="T:System.Collections.ICollection" /> whose elements should be inserted into the <see cref="T:System.Collections.ArrayList" />. The collection itself cannot be null, but it can contain elements that are null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="c" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is greater than <see cref="P:System.Collections.ArrayList.Count" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. -or- The <see cref="T:System.Collections.ArrayList" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.ArrayList.IsFixedSize"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.ArrayList" /> has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.ArrayList" /> has a fixed size; otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.ArrayList.IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.ArrayList" /> is read-only. </summary> <returns>true if the <see cref="T:System.Collections.ArrayList" /> is read-only; otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.ArrayList.IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.ArrayList" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.ArrayList" /> is synchronized (thread safe); otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.ArrayList.Item(System.Int32)"> <summary> Gets or sets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The zero-based index of the element to get or set. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.ArrayList.Count" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.LastIndexOf(System.Object)"> <summary> Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the last occurrence within the entire <see cref="T:System.Collections.ArrayList" />. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the entire the <see cref="T:System.Collections.ArrayList" />, if found; otherwise, -1. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.LastIndexOf(System.Object,System.Int32)"> <summary> Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that extends from the first element to the specified index. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that extends from the first element to <paramref name="startIndex" />, if found; otherwise, -1. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be null. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.ArrayList" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.LastIndexOf(System.Object,System.Int32,System.Int32)"> <summary> Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that contains the specified number of elements and ends at the specified index. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that contains <paramref name="count" /> number of elements and ends at <paramref name="startIndex" />, if found; otherwise, -1. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be null. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="count"> The number of elements in the section to search. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.ArrayList" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.ArrayList" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.ReadOnly(System.Collections.ArrayList)"> <summary> Returns a read-only <see cref="T:System.Collections.ArrayList" /> wrapper. </summary> <returns> A read-only <see cref="T:System.Collections.ArrayList" /> wrapper around <paramref name="list" />. </returns> <param name="list"> The <see cref="T:System.Collections.ArrayList" /> to wrap. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="list" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.ReadOnly(System.Collections.IList)"> <summary> Returns a read-only <see cref="T:System.Collections.IList" /> wrapper. </summary> <returns> A read-only <see cref="T:System.Collections.IList" /> wrapper around <paramref name="list" />. </returns> <param name="list"> The <see cref="T:System.Collections.IList" /> to wrap. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="list" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.Remove(System.Object)"> <summary> Removes the first occurrence of a specific object from the <see cref="T:System.Collections.ArrayList" />. </summary> <param name="obj"> The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.ArrayList" />. The value can be null. </param> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. -or- The <see cref="T:System.Collections.ArrayList" /> has a fixed size. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.RemoveAt(System.Int32)"> <summary> Removes the element at the specified index of the <see cref="T:System.Collections.ArrayList" />. </summary> <param name="index"> The zero-based index of the element to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.ArrayList.Count" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. -or- The <see cref="T:System.Collections.ArrayList" /> has a fixed size. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.RemoveRange(System.Int32,System.Int32)"> <summary> Removes a range of elements from the <see cref="T:System.Collections.ArrayList" />. </summary> <param name="index"> The zero-based starting index of the range of elements to remove. </param> <param name="count"> The number of elements to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.ArrayList" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. -or- The <see cref="T:System.Collections.ArrayList" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.Repeat(System.Object,System.Int32)"> <summary> Returns an <see cref="T:System.Collections.ArrayList" /> whose elements are copies of the specified value. </summary> <returns> An <see cref="T:System.Collections.ArrayList" /> with <paramref name="count" /> number of elements, all of which are copies of <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.Object" /> to copy multiple times in the new <see cref="T:System.Collections.ArrayList" />. The value can be null. </param> <param name="count"> The number of times <paramref name="value" /> should be copied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.Reverse"> <summary> Reverses the order of the elements in the entire <see cref="T:System.Collections.ArrayList" />. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.Reverse(System.Int32,System.Int32)"> <summary> Reverses the order of the elements in the specified range. </summary> <param name="index"> The zero-based starting index of the range to reverse. </param> <param name="count"> The number of elements in the range to reverse. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.ArrayList" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.SetRange(System.Int32,System.Collections.ICollection)"> <summary> Copies the elements of a collection over a range of elements in the <see cref="T:System.Collections.ArrayList" />. </summary> <param name="index"> The zero-based <see cref="T:System.Collections.ArrayList" /> index at which to start copying the elements of <paramref name="c" />. </param> <param name="c"> The <see cref="T:System.Collections.ICollection" /> whose elements to copy to the <see cref="T:System.Collections.ArrayList" />. The collection itself cannot be null, but it can contain elements that are null. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> plus the number of elements in <paramref name="c" /> is greater than <see cref="P:System.Collections.ArrayList.Count" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="c" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.Sort"> <summary> Sorts the elements in the entire <see cref="T:System.Collections.ArrayList" /> using the <see cref="T:System.IComparable" /> implementation of each element. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.Sort(System.Collections.IComparer)"> <summary> Sorts the elements in the entire <see cref="T:System.Collections.ArrayList" /> using the specified comparer. </summary> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements. -or- null to use the <see cref="T:System.IComparable" /> implementation of each element. </param> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.Sort(System.Int32,System.Int32,System.Collections.IComparer)"> <summary> Sorts the elements in a range of elements in <see cref="T:System.Collections.ArrayList" /> using the specified comparer. </summary> <param name="index"> The zero-based starting index of the range to sort. </param> <param name="count"> The length of the range to sort. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements. -or- null to use the <see cref="T:System.IComparable" /> implementation of each element. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not specify a valid range in the <see cref="T:System.Collections.ArrayList" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.Synchronized(System.Collections.ArrayList)"> <summary> Returns an <see cref="T:System.Collections.ArrayList" /> wrapper that is synchronized (thread safe). </summary> <returns> An <see cref="T:System.Collections.ArrayList" /> wrapper that is synchronized (thread safe). </returns> <param name="list"> The <see cref="T:System.Collections.ArrayList" /> to synchronize. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="list" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.Synchronized(System.Collections.IList)"> <summary> Returns an <see cref="T:System.Collections.IList" /> wrapper that is synchronized (thread safe). </summary> <returns> An <see cref="T:System.Collections.IList" /> wrapper that is synchronized (thread safe). </returns> <param name="list"> The <see cref="T:System.Collections.IList" /> to synchronize. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="list" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.ArrayList.SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ArrayList" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.ArrayList" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ArrayList.ToArray"> <summary> Copies the elements of the <see cref="T:System.Collections.ArrayList" /> to a new <see cref="T:System.Object" /> array. </summary> <returns> An <see cref="T:System.Object" /> array containing copies of the elements of the <see cref="T:System.Collections.ArrayList" />. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.ToArray(System.Type)"> <summary> Copies the elements of the <see cref="T:System.Collections.ArrayList" /> to a new array of the specified element type. </summary> <returns> An array of the specified element type containing copies of the elements of the <see cref="T:System.Collections.ArrayList" />. </returns> <param name="type"> The element <see cref="T:System.Type" /> of the destination array to create and copy elements to. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.ArrayList" /> cannot be cast automatically to the specified type. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ArrayList.TrimToSize"> <summary> Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.ArrayList" />. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.ArrayList" /> is read-only. -or- The <see cref="T:System.Collections.ArrayList" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.BitArray"> <summary> Manages a compact array of bit values, which are represented as Booleans, where true indicates that the bit is on (1) and false indicates the bit is off (0). </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.BitArray.#ctor(System.Boolean[])"> <summary> Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that contains bit values copied from the specified array of Booleans. </summary> <param name="values"> An array of Booleans to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="values" /> is null. </exception> </member> <member name="M:System.Collections.BitArray.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that contains bit values copied from the specified array of bytes. </summary> <param name="bytes"> An array of bytes containing the values to copy, where each byte represents eight consecutive bits. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentException"> The length of <paramref name="bytes" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> </member> <member name="M:System.Collections.BitArray.#ctor(System.Collections.BitArray)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that contains bit values copied from the specified <see cref="T:System.Collections.BitArray" />. </summary> <param name="bits"> The <see cref="T:System.Collections.BitArray" /> to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bits" /> is null. </exception> </member> <member name="M:System.Collections.BitArray.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that can hold the specified number of bit values, which are initially set to false. </summary> <param name="length"> The number of bit values in the new <see cref="T:System.Collections.BitArray" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="length" /> is less than zero. </exception> </member> <member name="M:System.Collections.BitArray.#ctor(System.Int32,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that can hold the specified number of bit values, which are initially set to the specified value. </summary> <param name="length"> The number of bit values in the new <see cref="T:System.Collections.BitArray" />. </param> <param name="defaultValue"> The Boolean value to assign to each bit. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="length" /> is less than zero. </exception> </member> <member name="M:System.Collections.BitArray.#ctor(System.Int32[])"> <summary> Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that contains bit values copied from the specified array of 32-bit integers. </summary> <param name="values"> An array of integers containing the values to copy, where each integer represents 32 consecutive bits. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="values" /> is null. </exception> <exception cref="T:System.ArgumentException"> The length of <paramref name="values" /> is greater than <see cref="F:System.Int32.MaxValue" /></exception> </member> <member name="M:System.Collections.BitArray.And(System.Collections.BitArray)"> <summary> Performs the bitwise AND operation on the elements in the current <see cref="T:System.Collections.BitArray" /> against the corresponding elements in the specified <see cref="T:System.Collections.BitArray" />. </summary> <returns> A <see cref="T:System.Collections.BitArray" /> containing the result of the bitwise AND operation on the elements in the current <see cref="T:System.Collections.BitArray" /> against the corresponding elements in the specified <see cref="T:System.Collections.BitArray" />. </returns> <param name="value"> The <see cref="T:System.Collections.BitArray" /> with which to perform the bitwise AND operation. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.BitArray.Clone"> <summary> Creates a shallow copy of the <see cref="T:System.Collections.BitArray" />. </summary> <returns> A shallow copy of the <see cref="T:System.Collections.BitArray" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.BitArray.CopyTo(System.Array,System.Int32)"> <summary> Copies the entire <see cref="T:System.Collections.BitArray" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.BitArray" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.BitArray" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.BitArray" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.BitArray.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.BitArray" />. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.BitArray" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.BitArray.Get(System.Int32)"> <summary> Gets the value of the bit at a specific position in the <see cref="T:System.Collections.BitArray" />. </summary> <returns> The value of the bit at position <paramref name="index" />. </returns> <param name="index"> The zero-based index of the value to get. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is greater than or equal to the number of elements in the <see cref="T:System.Collections.BitArray" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.BitArray.GetEnumerator"> <summary> Returns an enumerator that iterates through the <see cref="T:System.Collections.BitArray" />. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for the entire <see cref="T:System.Collections.BitArray" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.BitArray.IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.BitArray" /> is read-only. </summary> <returns> This property is always false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.BitArray.IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.BitArray" /> is synchronized (thread safe). </summary> <returns> This property is always false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.BitArray.Item(System.Int32)"> <summary> Gets or sets the value of the bit at a specific position in the <see cref="T:System.Collections.BitArray" />. </summary> <returns> The value of the bit at position <paramref name="index" />. </returns> <param name="index"> The zero-based index of the value to get or set. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.BitArray.Count" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.BitArray.Length"> <summary> Gets or sets the number of elements in the <see cref="T:System.Collections.BitArray" />. </summary> <returns> The number of elements in the <see cref="T:System.Collections.BitArray" />. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is set to a value that is less than zero. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.BitArray.Not"> <summary> Inverts all the bit values in the current <see cref="T:System.Collections.BitArray" />, so that elements set to true are changed to false, and elements set to false are changed to true. </summary> <returns> The current instance with inverted bit values. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.BitArray.Or(System.Collections.BitArray)"> <summary> Performs the bitwise OR operation on the elements in the current <see cref="T:System.Collections.BitArray" /> against the corresponding elements in the specified <see cref="T:System.Collections.BitArray" />. </summary> <returns> A <see cref="T:System.Collections.BitArray" /> containing the result of the bitwise OR operation on the elements in the current <see cref="T:System.Collections.BitArray" /> against the corresponding elements in the specified <see cref="T:System.Collections.BitArray" />. </returns> <param name="value"> The <see cref="T:System.Collections.BitArray" /> with which to perform the bitwise OR operation. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.BitArray.Set(System.Int32,System.Boolean)"> <summary> Sets the bit at a specific position in the <see cref="T:System.Collections.BitArray" /> to the specified value. </summary> <param name="index"> The zero-based index of the bit to set. </param> <param name="value"> The Boolean value to assign to the bit. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is greater than or equal to the number of elements in the <see cref="T:System.Collections.BitArray" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.BitArray.SetAll(System.Boolean)"> <summary> Sets all bits in the <see cref="T:System.Collections.BitArray" /> to the specified value. </summary> <param name="value"> The Boolean value to assign to all bits. </param> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.BitArray.SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.BitArray" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.BitArray" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.BitArray.Xor(System.Collections.BitArray)"> <summary> Performs the bitwise exclusive OR operation on the elements in the current <see cref="T:System.Collections.BitArray" /> against the corresponding elements in the specified <see cref="T:System.Collections.BitArray" />. </summary> <returns> A <see cref="T:System.Collections.BitArray" /> containing the result of the bitwise exclusive OR operation on the elements in the current <see cref="T:System.Collections.BitArray" /> against the corresponding elements in the specified <see cref="T:System.Collections.BitArray" />. </returns> <param name="value"> The <see cref="T:System.Collections.BitArray" /> with which to perform the bitwise exclusive OR operation. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.CaseInsensitiveComparer"> <summary> Compares two objects for equivalence, ignoring the case of strings. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.CaseInsensitiveComparer.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.CaseInsensitiveComparer" /> class using the <see cref="P:System.Threading.Thread.CurrentCulture" /> of the current thread. </summary> </member> <member name="M:System.Collections.CaseInsensitiveComparer.#ctor(System.Globalization.CultureInfo)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.CaseInsensitiveComparer" /> class using the specified <see cref="T:System.Globalization.CultureInfo" />. </summary> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> to use for the new <see cref="T:System.Collections.CaseInsensitiveComparer" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> </member> <member name="M:System.Collections.CaseInsensitiveComparer.Compare(System.Object,System.Object)"> <summary> Performs a case-insensitive comparison of two objects of the same type and returns a value indicating whether one is less than, equal to, or greater than the other. </summary> <returns> Value Condition Less than zero <paramref name="a" /> is less than <paramref name="b" />, with casing ignored. Zero <paramref name="a" /> equals <paramref name="b" />, with casing ignored. Greater than zero <paramref name="a" /> is greater than <paramref name="b" />, with casing ignored. </returns> <param name="a"> The first object to compare. </param> <param name="b"> The second object to compare. </param> <exception cref="T:System.ArgumentException"> Neither <paramref name="a" /> nor <paramref name="b" /> implements the <see cref="T:System.IComparable" /> interface. -or- <paramref name="a" /> and <paramref name="b" /> are of different types. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.CaseInsensitiveComparer.Default"> <summary> Gets an instance of <see cref="T:System.Collections.CaseInsensitiveComparer" /> that is associated with the <see cref="P:System.Threading.Thread.CurrentCulture" /> of the current thread and that is always available. </summary> <returns> An instance of <see cref="T:System.Collections.CaseInsensitiveComparer" /> that is associated with the <see cref="P:System.Threading.Thread.CurrentCulture" /> of the current thread. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Collections.CaseInsensitiveComparer.DefaultInvariant"> <summary> Gets an instance of <see cref="T:System.Collections.CaseInsensitiveComparer" /> that is associated with <see cref="P:System.Globalization.CultureInfo.InvariantCulture" /> and that is always available. </summary> <returns> An instance of <see cref="T:System.Collections.CaseInsensitiveComparer" /> that is associated with <see cref="P:System.Globalization.CultureInfo.InvariantCulture" />. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Collections.CaseInsensitiveHashCodeProvider"> <summary> Supplies a hash code for an object, using a hashing algorithm that ignores the case of strings. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.CaseInsensitiveHashCodeProvider.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.CaseInsensitiveHashCodeProvider" /> class using the <see cref="P:System.Threading.Thread.CurrentCulture" /> of the current thread. </summary> </member> <member name="M:System.Collections.CaseInsensitiveHashCodeProvider.#ctor(System.Globalization.CultureInfo)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.CaseInsensitiveHashCodeProvider" /> class using the specified <see cref="T:System.Globalization.CultureInfo" />. </summary> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> to use for the new <see cref="T:System.Collections.CaseInsensitiveHashCodeProvider" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> </member> <member name="P:System.Collections.CaseInsensitiveHashCodeProvider.Default"> <summary> Gets an instance of <see cref="T:System.Collections.CaseInsensitiveHashCodeProvider" /> that is associated with the <see cref="P:System.Threading.Thread.CurrentCulture" /> of the current thread and that is always available. </summary> <returns> An instance of <see cref="T:System.Collections.CaseInsensitiveHashCodeProvider" /> that is associated with the <see cref="P:System.Threading.Thread.CurrentCulture" /> of the current thread. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Collections.CaseInsensitiveHashCodeProvider.DefaultInvariant"> <summary> Gets an instance of <see cref="T:System.Collections.CaseInsensitiveHashCodeProvider" /> that is associated with <see cref="P:System.Globalization.CultureInfo.InvariantCulture" /> and that is always available. </summary> <returns> An instance of <see cref="T:System.Collections.CaseInsensitiveHashCodeProvider" /> that is associated with <see cref="P:System.Globalization.CultureInfo.InvariantCulture" />. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Collections.CaseInsensitiveHashCodeProvider.GetHashCode(System.Object)"> <summary> Returns a hash code for the given object, using a hashing algorithm that ignores the case of strings. </summary> <returns> A hash code for the given object, using a hashing algorithm that ignores the case of strings. </returns> <param name="obj"> The <see cref="T:System.Object" /> for which a hash code is to be returned. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="obj" /> is null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Collections.CollectionBase"> <summary> Provides the abstract base class for a strongly typed collection. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.CollectionBase.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.CollectionBase" /> class with the default initial capacity. </summary> </member> <member name="M:System.Collections.CollectionBase.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.CollectionBase" /> class with the specified capacity. </summary> <param name="capacity"> The number of elements that the new list can initially store. </param> </member> <member name="P:System.Collections.CollectionBase.Capacity"> <summary> Gets or sets the number of elements that the <see cref="T:System.Collections.CollectionBase" /> can contain. </summary> <returns> The number of elements that the <see cref="T:System.Collections.CollectionBase" /> can contain. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> <see cref="P:System.Collections.CollectionBase.Capacity" /> is set to a value that is less than <see cref="P:System.Collections.CollectionBase.Count" />. </exception> <exception cref="T:System.OutOfMemoryException"> There is not enough memory available on the system. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.CollectionBase.Clear"> <summary> Removes all objects from the <see cref="T:System.Collections.CollectionBase" /> instance. This method cannot be overridden. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.CollectionBase.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.CollectionBase" /> instance. This property cannot be overridden. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.CollectionBase" /> instance. Retrieving the value of this property is an O(1) operation. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.CollectionBase.GetEnumerator"> <summary> Returns an enumerator that iterates through the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.CollectionBase" /> instance. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.CollectionBase.InnerList"> <summary> Gets an <see cref="T:System.Collections.ArrayList" /> containing the list of elements in the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> <returns> An <see cref="T:System.Collections.ArrayList" /> representing the <see cref="T:System.Collections.CollectionBase" /> instance itself. Retrieving the value of this property is an O(1) operation. </returns> </member> <member name="P:System.Collections.CollectionBase.List"> <summary> Gets an <see cref="T:System.Collections.IList" /> containing the list of elements in the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> <returns> An <see cref="T:System.Collections.IList" /> representing the <see cref="T:System.Collections.CollectionBase" /> instance itself. </returns> </member> <member name="M:System.Collections.CollectionBase.OnClear"> <summary> Performs additional custom processes when clearing the contents of the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> </member> <member name="M:System.Collections.CollectionBase.OnClearComplete"> <summary> Performs additional custom processes after clearing the contents of the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> </member> <member name="M:System.Collections.CollectionBase.OnInsert(System.Int32,System.Object)"> <summary> Performs additional custom processes before inserting a new element into the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> <param name="index"> The zero-based index at which to insert <paramref name="value" />. </param> <param name="value"> The new value of the element at <paramref name="index" />. </param> </member> <member name="M:System.Collections.CollectionBase.OnInsertComplete(System.Int32,System.Object)"> <summary> Performs additional custom processes after inserting a new element into the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> <param name="index"> The zero-based index at which to insert <paramref name="value" />. </param> <param name="value"> The new value of the element at <paramref name="index" />. </param> </member> <member name="M:System.Collections.CollectionBase.OnRemove(System.Int32,System.Object)"> <summary> Performs additional custom processes when removing an element from the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> <param name="index"> The zero-based index at which <paramref name="value" /> can be found. </param> <param name="value"> The value of the element to remove from <paramref name="index" />. </param> </member> <member name="M:System.Collections.CollectionBase.OnRemoveComplete(System.Int32,System.Object)"> <summary> Performs additional custom processes after removing an element from the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> <param name="index"> The zero-based index at which <paramref name="value" /> can be found. </param> <param name="value"> The value of the element to remove from <paramref name="index" />. </param> </member> <member name="M:System.Collections.CollectionBase.OnSet(System.Int32,System.Object,System.Object)"> <summary> Performs additional custom processes before setting a value in the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> <param name="index"> The zero-based index at which <paramref name="oldValue" /> can be found. </param> <param name="oldValue"> The value to replace with <paramref name="newValue" />. </param> <param name="newValue"> The new value of the element at <paramref name="index" />. </param> </member> <member name="M:System.Collections.CollectionBase.OnSetComplete(System.Int32,System.Object,System.Object)"> <summary> Performs additional custom processes after setting a value in the <see cref="T:System.Collections.CollectionBase" /> instance. </summary> <param name="index"> The zero-based index at which <paramref name="oldValue" /> can be found. </param> <param name="oldValue"> The value to replace with <paramref name="newValue" />. </param> <param name="newValue"> The new value of the element at <paramref name="index" />. </param> </member> <member name="M:System.Collections.CollectionBase.OnValidate(System.Object)"> <summary> Performs additional custom processes when validating a value. </summary> <param name="value"> The object to validate. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> </member> <member name="M:System.Collections.CollectionBase.RemoveAt(System.Int32)"> <summary> Removes the element at the specified index of the <see cref="T:System.Collections.CollectionBase" /> instance. This method is not overridable. </summary> <param name="index"> The zero-based index of the element to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.CollectionBase.Count" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.CollectionBase.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies the entire <see cref="T:System.Collections.CollectionBase" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.CollectionBase" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.CollectionBase" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.CollectionBase" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.CollectionBase.System#Collections#ICollection#IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.CollectionBase" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.CollectionBase" /> is synchronized (thread safe); otherwise, false. The default is false. </returns> </member> <member name="P:System.Collections.CollectionBase.System#Collections#ICollection#SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.CollectionBase" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.CollectionBase" />. </returns> </member> <member name="M:System.Collections.CollectionBase.System#Collections#IList#Add(System.Object)"> <summary> Adds an object to the end of the <see cref="T:System.Collections.CollectionBase" />. </summary> <returns> The <see cref="T:System.Collections.CollectionBase" /> index at which the <paramref name="value" /> has been added. </returns> <param name="value"> The <see cref="T:System.Object" /> to be added to the end of the <see cref="T:System.Collections.CollectionBase" />. </param> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.CollectionBase" /> is read-only. -or- The <see cref="T:System.Collections.CollectionBase" /> has a fixed size. </exception> </member> <member name="M:System.Collections.CollectionBase.System#Collections#IList#Contains(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.CollectionBase" /> contains a specific element. </summary> <returns>true if the <see cref="T:System.Collections.CollectionBase" /> contains the specified <paramref name="value" />; otherwise, false. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.CollectionBase" />. </param> </member> <member name="M:System.Collections.CollectionBase.System#Collections#IList#IndexOf(System.Object)"> <summary> Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.CollectionBase" />. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the entire <see cref="T:System.Collections.CollectionBase" />, if found; otherwise, -1. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.CollectionBase" />. </param> </member> <member name="M:System.Collections.CollectionBase.System#Collections#IList#Insert(System.Int32,System.Object)"> <summary> Inserts an element into the <see cref="T:System.Collections.CollectionBase" /> at the specified index. </summary> <param name="index"> The zero-based index at which <paramref name="value" /> should be inserted. </param> <param name="value"> The <see cref="T:System.Object" /> to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is greater than <see cref="P:System.Collections.CollectionBase.Count" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.CollectionBase" /> is read-only. -or- The <see cref="T:System.Collections.CollectionBase" /> has a fixed size. </exception> </member> <member name="P:System.Collections.CollectionBase.System#Collections#IList#IsFixedSize"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.CollectionBase" /> has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.CollectionBase" /> has a fixed size; otherwise, false. The default is false. </returns> </member> <member name="P:System.Collections.CollectionBase.System#Collections#IList#IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.CollectionBase" /> is read-only. </summary> <returns>true if the <see cref="T:System.Collections.CollectionBase" /> is read-only; otherwise, false. The default is false. </returns> </member> <member name="P:System.Collections.CollectionBase.System#Collections#IList#Item(System.Int32)"> <summary> Gets or sets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The zero-based index of the element to get or set. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.CollectionBase.Count" />. </exception> </member> <member name="M:System.Collections.CollectionBase.System#Collections#IList#Remove(System.Object)"> <summary> Removes the first occurrence of a specific object from the <see cref="T:System.Collections.CollectionBase" />. </summary> <param name="value"> The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.CollectionBase" />. </param> <exception cref="T:System.ArgumentException"> The <paramref name="value" /> parameter was not found in the <see cref="T:System.Collections.CollectionBase" /> object. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.CollectionBase" /> is read-only. -or- The <see cref="T:System.Collections.CollectionBase" /> has a fixed size. </exception> </member> <member name="T:System.Collections.Comparer"> <summary> Compares two objects for equivalence, where string comparisons are case-sensitive. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Comparer.#ctor(System.Globalization.CultureInfo)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Comparer" /> class using the specified <see cref="T:System.Globalization.CultureInfo" />. </summary> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> to use for the new <see cref="T:System.Collections.Comparer" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> </member> <member name="M:System.Collections.Comparer.Compare(System.Object,System.Object)"> <summary> Performs a case-sensitive comparison of two objects of the same type and returns a value indicating whether one is less than, equal to, or greater than the other. </summary> <returns> Value Condition Less than zero <paramref name="a" /> is less than <paramref name="b" />. Zero <paramref name="a" /> equals <paramref name="b" />. Greater than zero <paramref name="a" /> is greater than <paramref name="b" />. </returns> <param name="a"> The first object to compare. </param> <param name="b"> The second object to compare. </param> <exception cref="T:System.ArgumentException"> Neither <paramref name="a" /> nor <paramref name="b" /> implements the <see cref="T:System.IComparable" /> interface. -or- <paramref name="a" /> and <paramref name="b" /> are of different types and neither one can handle comparisons with the other. </exception> <filterpriority>2</filterpriority> </member> <member name="F:System.Collections.Comparer.Default"> <summary> Represents an instance of <see cref="T:System.Collections.Comparer" /> that is associated with the <see cref="P:System.Threading.Thread.CurrentCulture" /> of the current thread. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Collections.Comparer.DefaultInvariant"> <summary> Represents an instance of <see cref="T:System.Collections.Comparer" /> that is associated with <see cref="P:System.Globalization.CultureInfo.InvariantCulture" />. This field is read-only. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Comparer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data required for serialization. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to populate with data. </param> <param name="context"> The context information about the source or destination of the serialization. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> parameter is null. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.DictionaryBase"> <summary> Provides the abstract base class for a strongly typed collection of key/value pairs. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.DictionaryBase.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.DictionaryBase" /> class. </summary> </member> <member name="M:System.Collections.DictionaryBase.Clear"> <summary> Clears the contents of the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.DictionaryBase.CopyTo(System.Array,System.Int32)"> <summary> Copies the <see cref="T:System.Collections.DictionaryBase" /> elements to a one-dimensional <see cref="T:System.Array" /> at the specified index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the <see cref="T:System.Collections.DictionaryEntry" /> objects copied from the <see cref="T:System.Collections.DictionaryBase" /> instance. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.DictionaryBase" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.DictionaryBase" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.DictionaryBase.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.DictionaryBase" /> instance. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.DictionaryBase.Dictionary"> <summary> Gets the list of elements contained in the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <returns> An <see cref="T:System.Collections.IDictionary" /> representing the <see cref="T:System.Collections.DictionaryBase" /> instance itself. </returns> </member> <member name="M:System.Collections.DictionaryBase.GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> that iterates through the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <returns> An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.DictionaryBase" /> instance. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.DictionaryBase.InnerHashtable"> <summary> Gets the list of elements contained in the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <returns> A <see cref="T:System.Collections.Hashtable" /> representing the <see cref="T:System.Collections.DictionaryBase" /> instance itself. </returns> </member> <member name="M:System.Collections.DictionaryBase.OnClear"> <summary> Performs additional custom processes before clearing the contents of the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> </member> <member name="M:System.Collections.DictionaryBase.OnClearComplete"> <summary> Performs additional custom processes after clearing the contents of the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> </member> <member name="M:System.Collections.DictionaryBase.OnGet(System.Object,System.Object)"> <summary> Gets the element with the specified key and value in the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <returns> An <see cref="T:System.Object" /> containing the element with the specified key and value. </returns> <param name="key"> The key of the element to get. </param> <param name="currentValue"> The current value of the element associated with <paramref name="key" />. </param> </member> <member name="M:System.Collections.DictionaryBase.OnInsert(System.Object,System.Object)"> <summary> Performs additional custom processes before inserting a new element into the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <param name="key"> The key of the element to insert. </param> <param name="value"> The value of the element to insert. </param> </member> <member name="M:System.Collections.DictionaryBase.OnInsertComplete(System.Object,System.Object)"> <summary> Performs additional custom processes after inserting a new element into the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <param name="key"> The key of the element to insert. </param> <param name="value"> The value of the element to insert. </param> </member> <member name="M:System.Collections.DictionaryBase.OnRemove(System.Object,System.Object)"> <summary> Performs additional custom processes before removing an element from the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <param name="key"> The key of the element to remove. </param> <param name="value"> The value of the element to remove. </param> </member> <member name="M:System.Collections.DictionaryBase.OnRemoveComplete(System.Object,System.Object)"> <summary> Performs additional custom processes after removing an element from the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <param name="key"> The key of the element to remove. </param> <param name="value"> The value of the element to remove. </param> </member> <member name="M:System.Collections.DictionaryBase.OnSet(System.Object,System.Object,System.Object)"> <summary> Performs additional custom processes before setting a value in the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <param name="key"> The key of the element to locate. </param> <param name="oldValue"> The old value of the element associated with <paramref name="key" />. </param> <param name="newValue"> The new value of the element associated with <paramref name="key" />. </param> </member> <member name="M:System.Collections.DictionaryBase.OnSetComplete(System.Object,System.Object,System.Object)"> <summary> Performs additional custom processes after setting a value in the <see cref="T:System.Collections.DictionaryBase" /> instance. </summary> <param name="key"> The key of the element to locate. </param> <param name="oldValue"> The old value of the element associated with <paramref name="key" />. </param> <param name="newValue"> The new value of the element associated with <paramref name="key" />. </param> </member> <member name="M:System.Collections.DictionaryBase.OnValidate(System.Object,System.Object)"> <summary> Performs additional custom processes when validating the element with the specified key and value. </summary> <param name="key"> The key of the element to validate. </param> <param name="value"> The value of the element to validate. </param> </member> <member name="P:System.Collections.DictionaryBase.System#Collections#ICollection#IsSynchronized"> <summary> Gets a value indicating whether access to a <see cref="T:System.Collections.DictionaryBase" /> object is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.DictionaryBase" /> object is synchronized (thread safe); otherwise, false. The default is false. </returns> </member> <member name="P:System.Collections.DictionaryBase.System#Collections#ICollection#SyncRoot"> <summary> Gets an object that can be used to synchronize access to a <see cref="T:System.Collections.DictionaryBase" /> object. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.DictionaryBase" /> object. </returns> </member> <member name="M:System.Collections.DictionaryBase.System#Collections#IDictionary#Add(System.Object,System.Object)"> <summary> Adds an element with the specified key and value into the <see cref="T:System.Collections.DictionaryBase" />. </summary> <param name="key"> The key of the element to add. </param> <param name="value"> The value of the element to add. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> An element with the same key already exists in the <see cref="T:System.Collections.DictionaryBase" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.DictionaryBase" /> is read-only. -or- The <see cref="T:System.Collections.DictionaryBase" /> has a fixed size. </exception> </member> <member name="M:System.Collections.DictionaryBase.System#Collections#IDictionary#Contains(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.DictionaryBase" /> contains a specific key. </summary> <returns>true if the <see cref="T:System.Collections.DictionaryBase" /> contains an element with the specified key; otherwise, false. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.DictionaryBase" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="P:System.Collections.DictionaryBase.System#Collections#IDictionary#IsFixedSize"> <summary> Gets a value indicating whether a <see cref="T:System.Collections.DictionaryBase" /> object has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.DictionaryBase" /> object has a fixed size; otherwise, false. The default is false. </returns> </member> <member name="P:System.Collections.DictionaryBase.System#Collections#IDictionary#IsReadOnly"> <summary> Gets a value indicating whether a <see cref="T:System.Collections.DictionaryBase" /> object is read-only. </summary> <returns>true if the <see cref="T:System.Collections.DictionaryBase" /> object is read-only; otherwise, false. The default is false. </returns> </member> <member name="P:System.Collections.DictionaryBase.System#Collections#IDictionary#Item(System.Object)"> <summary> Gets or sets the value associated with the specified key. </summary> <returns> The value associated with the specified key. If the specified key is not found, attempting to get it returns null, and attempting to set it creates a new element using the specified key. </returns> <param name="key"> The key whose value to get or set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The property is set and the <see cref="T:System.Collections.DictionaryBase" /> is read-only. -or- The property is set, <paramref name="key" /> does not exist in the collection, and the <see cref="T:System.Collections.DictionaryBase" /> has a fixed size. </exception> </member> <member name="P:System.Collections.DictionaryBase.System#Collections#IDictionary#Keys"> <summary> Gets an <see cref="T:System.Collections.ICollection" /> object containing the keys in the <see cref="T:System.Collections.DictionaryBase" /> object. </summary> <returns> An <see cref="T:System.Collections.ICollection" /> object containing the keys in the <see cref="T:System.Collections.DictionaryBase" /> object. </returns> </member> <member name="M:System.Collections.DictionaryBase.System#Collections#IDictionary#Remove(System.Object)"> <summary> Removes the element with the specified key from the <see cref="T:System.Collections.DictionaryBase" />. </summary> <param name="key"> The key of the element to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.DictionaryBase" /> is read-only. -or- The <see cref="T:System.Collections.DictionaryBase" /> has a fixed size. </exception> </member> <member name="P:System.Collections.DictionaryBase.System#Collections#IDictionary#Values"> <summary> Gets an <see cref="T:System.Collections.ICollection" /> object containing the values in the <see cref="T:System.Collections.DictionaryBase" /> object. </summary> <returns> An <see cref="T:System.Collections.ICollection" /> object containing the values in the <see cref="T:System.Collections.DictionaryBase" /> object. </returns> </member> <member name="M:System.Collections.DictionaryBase.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IEnumerator" /> that iterates through the <see cref="T:System.Collections.DictionaryBase" />. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.DictionaryBase" />. </returns> </member> <member name="T:System.Collections.DictionaryEntry"> <summary> Defines a dictionary key/value pair that can be set or retrieved. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.DictionaryEntry.#ctor(System.Object,System.Object)"> <summary> Initializes an instance of the <see cref="T:System.Collections.DictionaryEntry" /> type with the specified key and value. </summary> <param name="key"> The object defined in each key/value pair. </param> <param name="value"> The definition associated with <paramref name="key" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null and the .NET Framework version is 1.0 or 1.1. </exception> </member> <member name="P:System.Collections.DictionaryEntry.Key"> <summary> Gets or sets the key in the key/value pair. </summary> <returns> The key in the key/value pair. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Collections.DictionaryEntry.Value"> <summary> Gets or sets the value in the key/value pair. </summary> <returns> The value in the key/value pair. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.Collections.Hashtable"> <summary> Represents a collection of key/value pairs that are organized based on the hash code of the key. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Hashtable.#ctor"> <summary> Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the default initial capacity, load factor, hash code provider, and comparer. </summary> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to the new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the default load factor, hash code provider, and comparer. </summary> <param name="d"> The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="d" /> is null. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Collections.IEqualityComparer)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to a new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the default load factor and the specified <see cref="T:System.Collections.IEqualityComparer" /> object. </summary> <param name="d"> The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object. </param> <param name="equalityComparer"> The <see cref="T:System.Collections.IEqualityComparer" /> object that defines the hash code provider and the comparer to use with the <see cref="T:System.Collections.Hashtable" />. -or- null to use the default hash code provider and the default comparer. The default hash code provider is each key's implementation of <see cref="M:System.Object.GetHashCode" /> and the default comparer is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="d" /> is null. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Collections.IHashCodeProvider,System.Collections.IComparer)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to the new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the default load factor, and the specified hash code provider and comparer. </summary> <param name="d"> The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object. </param> <param name="hcp"> The <see cref="T:System.Collections.IHashCodeProvider" /> object that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" />. -or- null to use the default hash code provider, which is each key's implementation of <see cref="M:System.Object.GetHashCode" />. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> object to use to determine whether two keys are equal. -or- null to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="d" /> is null. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to the new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the specified load factor, and the default hash code provider and comparer. </summary> <param name="d"> The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object. </param> <param name="loadFactor"> A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="d" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="loadFactor" /> is less than 0.1. -or- <paramref name="loadFactor" /> is greater than 1.0. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single,System.Collections.IEqualityComparer)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to the new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the specified load factor and <see cref="T:System.Collections.IEqualityComparer" /> object. </summary> <param name="d"> The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object. </param> <param name="loadFactor"> A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets. </param> <param name="equalityComparer"> The <see cref="T:System.Collections.IEqualityComparer" /> object that defines the hash code provider and the comparer to use with the <see cref="T:System.Collections.Hashtable" />. -or- null to use the default hash code provider and the default comparer. The default hash code provider is each key's implementation of <see cref="M:System.Object.GetHashCode" /> and the default comparer is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="d" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="loadFactor" /> is less than 0.1. -or- <paramref name="loadFactor" /> is greater than 1.0. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to the new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the specified load factor, hash code provider, and comparer. </summary> <param name="d"> The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object. </param> <param name="loadFactor"> A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets. </param> <param name="hcp"> The <see cref="T:System.Collections.IHashCodeProvider" /> object that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" />. -or- null to use the default hash code provider, which is each key's implementation of <see cref="M:System.Object.GetHashCode" />. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> object to use to determine whether two keys are equal. -or- null to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="d" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="loadFactor" /> is less than 0.1. -or- <paramref name="loadFactor" /> is greater than 1.0. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IEqualityComparer)"> <summary> Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the default initial capacity and load factor, and the specified <see cref="T:System.Collections.IEqualityComparer" /> object. </summary> <param name="equalityComparer"> The <see cref="T:System.Collections.IEqualityComparer" /> object that defines the hash code provider and the comparer to use with the <see cref="T:System.Collections.Hashtable" /> object. -or- null to use the default hash code provider and the default comparer. The default hash code provider is each key's implementation of <see cref="M:System.Object.GetHashCode" /> and the default comparer is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />. </param> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IHashCodeProvider,System.Collections.IComparer)"> <summary> Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the default initial capacity and load factor, and the specified hash code provider and comparer. </summary> <param name="hcp"> The <see cref="T:System.Collections.IHashCodeProvider" /> object that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" /> object. -or- null to use the default hash code provider, which is each key's implementation of <see cref="M:System.Object.GetHashCode" />. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> object to use to determine whether two keys are equal. -or- null to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />. </param> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Int32)"> <summary> Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity, and the default load factor, hash code provider, and comparer. </summary> <param name="capacity"> The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Int32,System.Collections.IEqualityComparer)"> <summary> Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity and <see cref="T:System.Collections.IEqualityComparer" />, and the default load factor. </summary> <param name="capacity"> The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain. </param> <param name="equalityComparer"> The <see cref="T:System.Collections.IEqualityComparer" /> object that defines the hash code provider and the comparer to use with the <see cref="T:System.Collections.Hashtable" />. -or- null to use the default hash code provider and the default comparer. The default hash code provider is each key's implementation of <see cref="M:System.Object.GetHashCode" /> and the default comparer is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Int32,System.Collections.IHashCodeProvider,System.Collections.IComparer)"> <summary> Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity, hash code provider, comparer, and the default load factor. </summary> <param name="capacity"> The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain. </param> <param name="hcp"> The <see cref="T:System.Collections.IHashCodeProvider" /> object that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" />. -or- null to use the default hash code provider, which is each key's implementation of <see cref="M:System.Object.GetHashCode" />. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> object to use to determine whether two keys are equal. -or- null to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Int32,System.Single)"> <summary> Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity and load factor, and the default hash code provider and comparer. </summary> <param name="capacity"> The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain. </param> <param name="loadFactor"> A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. -or- <paramref name="loadFactor" /> is less than 0.1. -or- <paramref name="loadFactor" /> is greater than 1.0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="capacity" /> is causing an overflow. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Int32,System.Single,System.Collections.IEqualityComparer)"> <summary> Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity, load factor, and <see cref="T:System.Collections.IEqualityComparer" /> object. </summary> <param name="capacity"> The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain. </param> <param name="loadFactor"> A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets. </param> <param name="equalityComparer"> The <see cref="T:System.Collections.IEqualityComparer" /> object that defines the hash code provider and the comparer to use with the <see cref="T:System.Collections.Hashtable" />. -or- null to use the default hash code provider and the default comparer. The default hash code provider is each key's implementation of <see cref="M:System.Object.GetHashCode" /> and the default comparer is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. -or- <paramref name="loadFactor" /> is less than 0.1. -or- <paramref name="loadFactor" /> is greater than 1.0. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Int32,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)"> <summary> Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity, load factor, hash code provider, and comparer. </summary> <param name="capacity"> The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain. </param> <param name="loadFactor"> A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets. </param> <param name="hcp"> The <see cref="T:System.Collections.IHashCodeProvider" /> object that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" />. -or- null to use the default hash code provider, which is each key's implementation of <see cref="M:System.Object.GetHashCode" />. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> object to use to determine whether two keys are equal. -or- null to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. -or- <paramref name="loadFactor" /> is less than 0.1. -or- <paramref name="loadFactor" /> is greater than 1.0. </exception> </member> <member name="M:System.Collections.Hashtable.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class that is serializable using the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects. </summary> <param name="info"> A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Hashtable" /> object. </param> <param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Hashtable" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Collections.Hashtable.Add(System.Object,System.Object)"> <summary> Adds an element with the specified key and value into the <see cref="T:System.Collections.Hashtable" />. </summary> <param name="key"> The key of the element to add. </param> <param name="value"> The value of the element to add. The value can be null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> An element with the same key already exists in the <see cref="T:System.Collections.Hashtable" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Hashtable" /> is read-only. -or- The <see cref="T:System.Collections.Hashtable" /> has a fixed size. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Hashtable.Clear"> <summary> Removes all elements from the <see cref="T:System.Collections.Hashtable" />. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Hashtable" /> is read-only. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Hashtable.Clone"> <summary> Creates a shallow copy of the <see cref="T:System.Collections.Hashtable" />. </summary> <returns> A shallow copy of the <see cref="T:System.Collections.Hashtable" />. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Collections.Hashtable.comparer"> <summary> Gets or sets the <see cref="T:System.Collections.IComparer" /> to use for the <see cref="T:System.Collections.Hashtable" />. </summary> <returns> The <see cref="T:System.Collections.IComparer" /> to use for the <see cref="T:System.Collections.Hashtable" />. </returns> <exception cref="T:System.ArgumentException"> The property is set to a value, but the hash table was created using an <see cref="T:System.Collections.IEqualityComparer" />. </exception> </member> <member name="M:System.Collections.Hashtable.Contains(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.Hashtable" /> contains a specific key. </summary> <returns>true if the <see cref="T:System.Collections.Hashtable" /> contains an element with the specified key; otherwise, false. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.Hashtable" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Hashtable.ContainsKey(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.Hashtable" /> contains a specific key. </summary> <returns>true if the <see cref="T:System.Collections.Hashtable" /> contains an element with the specified key; otherwise, false. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.Hashtable" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Hashtable.ContainsValue(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.Hashtable" /> contains a specific value. </summary> <returns>true if the <see cref="T:System.Collections.Hashtable" /> contains an element with the specified <paramref name="value" />; otherwise, false. </returns> <param name="value"> The value to locate in the <see cref="T:System.Collections.Hashtable" />. The value can be null. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Hashtable.CopyTo(System.Array,System.Int32)"> <summary> Copies the <see cref="T:System.Collections.Hashtable" /> elements to a one-dimensional <see cref="T:System.Array" /> instance at the specified index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the <see cref="T:System.Collections.DictionaryEntry" /> objects copied from <see cref="T:System.Collections.Hashtable" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="arrayIndex"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="arrayIndex" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.Hashtable" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.Hashtable" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Hashtable.Count"> <summary> Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Hashtable" />. </summary> <returns> The number of key/value pairs contained in the <see cref="T:System.Collections.Hashtable" />. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Collections.Hashtable.EqualityComparer"> <summary> Gets the <see cref="T:System.Collections.IEqualityComparer" /> to use for the <see cref="T:System.Collections.Hashtable" />. </summary> <returns> The <see cref="T:System.Collections.IEqualityComparer" /> to use for the <see cref="T:System.Collections.Hashtable" />. </returns> <exception cref="T:System.ArgumentException"> The property is set to a value, but the hash table was created using an <see cref="T:System.Collections.IHashCodeProvider" /> and an <see cref="T:System.Collections.IComparer" />. </exception> </member> <member name="M:System.Collections.Hashtable.GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> that iterates through the <see cref="T:System.Collections.Hashtable" />. </summary> <returns> An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.Hashtable" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Hashtable.GetHash(System.Object)"> <summary> Returns the hash code for the specified key. </summary> <returns> The hash code for <paramref name="key" />. </returns> <param name="key"> The <see cref="T:System.Object" /> for which a hash code is to be returned. </param> <exception cref="T:System.NullReferenceException"> <paramref name="key" /> is null. </exception> </member> <member name="M:System.Collections.Hashtable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Hashtable" />. </summary> <param name="info"> A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Hashtable" />. </param> <param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Hashtable" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Hashtable.hcp"> <summary> Gets or sets the object that can dispense hash codes. </summary> <returns> The object that can dispense hash codes. </returns> <exception cref="T:System.ArgumentException"> The property is set to a value, but the hash table was created using an <see cref="T:System.Collections.IEqualityComparer" />. </exception> </member> <member name="P:System.Collections.Hashtable.IsFixedSize"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.Hashtable" /> has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.Hashtable" /> has a fixed size; otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Hashtable.IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.Hashtable" /> is read-only. </summary> <returns>true if the <see cref="T:System.Collections.Hashtable" /> is read-only; otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Hashtable.IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.Hashtable" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.Hashtable" /> is synchronized (thread safe); otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Hashtable.Item(System.Object)"> <summary> Gets or sets the value associated with the specified key. </summary> <returns> The value associated with the specified key. If the specified key is not found, attempting to get it returns null, and attempting to set it creates a new element using the specified key. </returns> <param name="key"> The key whose value to get or set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The property is set and the <see cref="T:System.Collections.Hashtable" /> is read-only. -or- The property is set, <paramref name="key" /> does not exist in the collection, and the <see cref="T:System.Collections.Hashtable" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Hashtable.KeyEquals(System.Object,System.Object)"> <summary> Compares a specific <see cref="T:System.Object" /> with a specific key in the <see cref="T:System.Collections.Hashtable" />. </summary> <returns>true if <paramref name="item" /> and <paramref name="key" /> are equal; otherwise, false. </returns> <param name="item"> The <see cref="T:System.Object" /> to compare with <paramref name="key" />. </param> <param name="key"> The key in the <see cref="T:System.Collections.Hashtable" /> to compare with <paramref name="item" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="item" /> is null. -or- <paramref name="key" /> is null. </exception> </member> <member name="P:System.Collections.Hashtable.Keys"> <summary> Gets an <see cref="T:System.Collections.ICollection" /> containing the keys in the <see cref="T:System.Collections.Hashtable" />. </summary> <returns> An <see cref="T:System.Collections.ICollection" /> containing the keys in the <see cref="T:System.Collections.Hashtable" />. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Hashtable.OnDeserialization(System.Object)"> <summary> Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete. </summary> <param name="sender"> The source of the deserialization event. </param> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Hashtable" /> is invalid. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Hashtable.Remove(System.Object)"> <summary> Removes the element with the specified key from the <see cref="T:System.Collections.Hashtable" />. </summary> <param name="key"> The key of the element to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Hashtable" /> is read-only. -or- The <see cref="T:System.Collections.Hashtable" /> has a fixed size. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Hashtable.Synchronized(System.Collections.Hashtable)"> <summary> Returns a synchronized (thread safe) wrapper for the <see cref="T:System.Collections.Hashtable" />. </summary> <returns> A synchronized (thread safe) wrapper for the <see cref="T:System.Collections.Hashtable" />. </returns> <param name="table"> The <see cref="T:System.Collections.Hashtable" /> to synchronize. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="table" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Collections.Hashtable.SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.Hashtable" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.Hashtable" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Hashtable.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an enumerator that iterates through a collection. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection. </returns> </member> <member name="P:System.Collections.Hashtable.Values"> <summary> Gets an <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.Hashtable" />. </summary> <returns> An <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.Hashtable" />. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.Collections.ICollection"> <summary> Defines size, enumerators, and synchronization methods for all nongeneric collections. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.ICollection.CopyTo(System.Array,System.Int32)"> <summary> Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.ArgumentException"> The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.ICollection.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.ICollection" />. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.ICollection" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.ICollection.IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.ICollection.SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.IComparer"> <summary> Exposes a method that compares two objects. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.IComparer.Compare(System.Object,System.Object)"> <summary> Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. </summary> <returns> Value Condition Less than zero <paramref name="x" /> is less than <paramref name="y" />. Zero <paramref name="x" /> equals <paramref name="y" />. Greater than zero <paramref name="x" /> is greater than <paramref name="y" />. </returns> <param name="x"> The first object to compare. </param> <param name="y"> The second object to compare. </param> <exception cref="T:System.ArgumentException"> Neither <paramref name="x" /> nor <paramref name="y" /> implements the <see cref="T:System.IComparable" /> interface. -or- <paramref name="x" /> and <paramref name="y" /> are of different types and neither one can handle comparisons with the other. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.IDictionary"> <summary> Represents a nongeneric collection of key/value pairs. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.IDictionary.Add(System.Object,System.Object)"> <summary> Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary" /> object. </summary> <param name="key"> The <see cref="T:System.Object" /> to use as the key of the element to add. </param> <param name="value"> The <see cref="T:System.Object" /> to use as the value of the element to add. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> An element with the same key already exists in the <see cref="T:System.Collections.IDictionary" /> object. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.IDictionary" /> is read-only. -or- The <see cref="T:System.Collections.IDictionary" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IDictionary.Clear"> <summary> Removes all elements from the <see cref="T:System.Collections.IDictionary" /> object. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.IDictionary" /> object is read-only. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IDictionary.Contains(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.IDictionary" /> object contains an element with the specified key. </summary> <returns>true if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, false. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.IDictionary" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IDictionary.GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> object for the <see cref="T:System.Collections.IDictionary" /> object. </summary> <returns> An <see cref="T:System.Collections.IDictionaryEnumerator" /> object for the <see cref="T:System.Collections.IDictionary" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IDictionary.IsFixedSize"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IDictionary" /> object has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.IDictionary" /> object has a fixed size; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IDictionary.IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IDictionary" /> object is read-only. </summary> <returns>true if the <see cref="T:System.Collections.IDictionary" /> object is read-only; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IDictionary.Item(System.Object)"> <summary> Gets or sets the element with the specified key. </summary> <returns> The element with the specified key. </returns> <param name="key"> The key of the element to get or set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The property is set and the <see cref="T:System.Collections.IDictionary" /> object is read-only. -or- The property is set, <paramref name="key" /> does not exist in the collection, and the <see cref="T:System.Collections.IDictionary" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IDictionary.Keys"> <summary> Gets an <see cref="T:System.Collections.ICollection" /> object containing the keys of the <see cref="T:System.Collections.IDictionary" /> object. </summary> <returns> An <see cref="T:System.Collections.ICollection" /> object containing the keys of the <see cref="T:System.Collections.IDictionary" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IDictionary.Remove(System.Object)"> <summary> Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary" /> object. </summary> <param name="key"> The key of the element to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.IDictionary" /> object is read-only. -or- The <see cref="T:System.Collections.IDictionary" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IDictionary.Values"> <summary> Gets an <see cref="T:System.Collections.ICollection" /> object containing the values in the <see cref="T:System.Collections.IDictionary" /> object. </summary> <returns> An <see cref="T:System.Collections.ICollection" /> object containing the values in the <see cref="T:System.Collections.IDictionary" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.IDictionaryEnumerator"> <summary> Enumerates the elements of a nongeneric dictionary. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IDictionaryEnumerator.Entry"> <summary> Gets both the key and the value of the current dictionary entry. </summary> <returns> A <see cref="T:System.Collections.DictionaryEntry" /> containing both the key and the value of the current dictionary entry. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.Collections.IDictionaryEnumerator" /> is positioned before the first entry of the dictionary or after the last entry. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IDictionaryEnumerator.Key"> <summary> Gets the key of the current dictionary entry. </summary> <returns> The key of the current element of the enumeration. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.Collections.IDictionaryEnumerator" /> is positioned before the first entry of the dictionary or after the last entry. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IDictionaryEnumerator.Value"> <summary> Gets the value of the current dictionary entry. </summary> <returns> The value of the current element of the enumeration. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.Collections.IDictionaryEnumerator" /> is positioned before the first entry of the dictionary or after the last entry. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.IEnumerable"> <summary> Exposes the enumerator, which supports a simple iteration over a non-generic collection. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.IEnumerable.GetEnumerator"> <summary> Returns an enumerator that iterates through a collection. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.IEnumerator"> <summary> Supports a simple iteration over a nongeneric collection. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.Collections.IEnumerator.Current"> <summary> Gets the current element in the collection. </summary> <returns> The current element in the collection. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first element of the collection or after the last element. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IEnumerator.MoveNext"> <summary> Advances the enumerator to the next element of the collection. </summary> <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. </returns> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IEnumerator.Reset"> <summary> Sets the enumerator to its initial position, which is before the first element in the collection. </summary> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.IEqualityComparer"> <summary> Defines methods to support the comparison of objects for equality. </summary> </member> <member name="M:System.Collections.IEqualityComparer.Equals(System.Object,System.Object)"> <summary> Determines whether the specified objects are equal. </summary> <returns>true if the specified objects are equal; otherwise, false. </returns> <param name="x"> The first object to compare. </param> <param name="y"> The second object to compare. </param> <exception cref="T:System.ArgumentException"> <paramref name="x" /> and <paramref name="y" /> are of different types and neither one can handle comparisons with the other. </exception> </member> <member name="M:System.Collections.IEqualityComparer.GetHashCode(System.Object)"> <summary> Returns a hash code for the specified object. </summary> <returns> A hash code for the specified object. </returns> <param name="obj"> The <see cref="T:System.Object" /> for which a hash code is to be returned. </param> <exception cref="T:System.ArgumentNullException"> The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null. </exception> </member> <member name="T:System.Collections.IHashCodeProvider"> <summary> Supplies a hash code for an object, using a custom hash function. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IHashCodeProvider.GetHashCode(System.Object)"> <summary> Returns a hash code for the specified object. </summary> <returns> A hash code for the specified object. </returns> <param name="obj"> The <see cref="T:System.Object" /> for which a hash code is to be returned. </param> <exception cref="T:System.ArgumentNullException"> The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.IList"> <summary> Represents a non-generic collection of objects that can be individually accessed by index. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.IList.Add(System.Object)"> <summary> Adds an item to the <see cref="T:System.Collections.IList" />. </summary> <returns> The position into which the new element was inserted. </returns> <param name="value"> The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.IList" /> is read-only. -or- The <see cref="T:System.Collections.IList" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IList.Clear"> <summary> Removes all items from the <see cref="T:System.Collections.IList" />. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.IList" /> is read-only. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IList.Contains(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.IList" /> contains a specific value. </summary> <returns>true if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, false. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IList.IndexOf(System.Object)"> <summary> Determines the index of a specific item in the <see cref="T:System.Collections.IList" />. </summary> <returns> The index of <paramref name="value" /> if found in the list; otherwise, -1. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IList.Insert(System.Int32,System.Object)"> <summary> Inserts an item to the <see cref="T:System.Collections.IList" /> at the specified index. </summary> <param name="index"> The zero-based index at which <paramref name="value" /> should be inserted. </param> <param name="value"> The <see cref="T:System.Object" /> to insert into the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.IList" /> is read-only. -or- The <see cref="T:System.Collections.IList" /> has a fixed size. </exception> <exception cref="T:System.NullReferenceException"> <paramref name="value" /> is null reference in the <see cref="T:System.Collections.IList" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IList.IsFixedSize"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IList" /> has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IList.IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IList" /> is read-only. </summary> <returns>true if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.IList.Item(System.Int32)"> <summary> Gets or sets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The zero-based index of the element to get or set. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />. </exception> <exception cref="T:System.NotSupportedException"> The property is set and the <see cref="T:System.Collections.IList" /> is read-only. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IList.Remove(System.Object)"> <summary> Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList" />. </summary> <param name="value"> The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.IList" /> is read-only. -or- The <see cref="T:System.Collections.IList" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.IList.RemoveAt(System.Int32)"> <summary> Removes the <see cref="T:System.Collections.IList" /> item at the specified index. </summary> <param name="index"> The zero-based index of the item to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.IList" /> is read-only. -or- The <see cref="T:System.Collections.IList" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.Queue"> <summary> Represents a first-in, first-out collection of objects. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Queue.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Queue" /> class that is empty, has the default initial capacity, and uses the default growth factor. </summary> </member> <member name="M:System.Collections.Queue.#ctor(System.Collections.ICollection)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Queue" /> class that contains elements copied from the specified collection, has the same initial capacity as the number of elements copied, and uses the default growth factor. </summary> <param name="col"> The <see cref="T:System.Collections.ICollection" /> to copy elements from. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="col" /> is null. </exception> </member> <member name="M:System.Collections.Queue.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Queue" /> class that is empty, has the specified initial capacity, and uses the default growth factor. </summary> <param name="capacity"> The initial number of elements that the <see cref="T:System.Collections.Queue" /> can contain. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. </exception> </member> <member name="M:System.Collections.Queue.#ctor(System.Int32,System.Single)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Queue" /> class that is empty, has the specified initial capacity, and uses the specified growth factor. </summary> <param name="capacity"> The initial number of elements that the <see cref="T:System.Collections.Queue" /> can contain. </param> <param name="growFactor"> The factor by which the capacity of the <see cref="T:System.Collections.Queue" /> is expanded. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. -or- <paramref name="growFactor" /> is less than 1.0 or greater than 10.0. </exception> </member> <member name="M:System.Collections.Queue.Clear"> <summary> Removes all objects from the <see cref="T:System.Collections.Queue" />. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Queue.Clone"> <summary> Creates a shallow copy of the <see cref="T:System.Collections.Queue" />. </summary> <returns> A shallow copy of the <see cref="T:System.Collections.Queue" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Queue.Contains(System.Object)"> <summary> Determines whether an element is in the <see cref="T:System.Collections.Queue" />. </summary> <returns>true if <paramref name="obj" /> is found in the <see cref="T:System.Collections.Queue" />; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.Queue" />. The value can be null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Queue.CopyTo(System.Array,System.Int32)"> <summary> Copies the <see cref="T:System.Collections.Queue" /> elements to an existing one-dimensional <see cref="T:System.Array" />, starting at the specified array index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Queue" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.Queue" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.ArrayTypeMismatchException"> The type of the source <see cref="T:System.Collections.Queue" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Queue.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.Queue" />. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.Queue" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Queue.Dequeue"> <summary> Removes and returns the object at the beginning of the <see cref="T:System.Collections.Queue" />. </summary> <returns> The object that is removed from the beginning of the <see cref="T:System.Collections.Queue" />. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.Collections.Queue" /> is empty. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Queue.Enqueue(System.Object)"> <summary> Adds an object to the end of the <see cref="T:System.Collections.Queue" />. </summary> <param name="obj"> The object to add to the <see cref="T:System.Collections.Queue" />. The value can be null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Queue.GetEnumerator"> <summary> Returns an enumerator that iterates through the <see cref="T:System.Collections.Queue" />. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.Queue" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Queue.IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.Queue" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.Queue" /> is synchronized (thread safe); otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Queue.Peek"> <summary> Returns the object at the beginning of the <see cref="T:System.Collections.Queue" /> without removing it. </summary> <returns> The object at the beginning of the <see cref="T:System.Collections.Queue" />. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.Collections.Queue" /> is empty. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Queue.Synchronized(System.Collections.Queue)"> <summary> Returns a <see cref="T:System.Collections.Queue" /> wrapper that is synchronized (thread safe). </summary> <returns> A <see cref="T:System.Collections.Queue" /> wrapper that is synchronized (thread safe). </returns> <param name="queue"> The <see cref="T:System.Collections.Queue" /> to synchronize. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="queue" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Queue.SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.Queue" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.Queue" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Queue.ToArray"> <summary> Copies the <see cref="T:System.Collections.Queue" /> elements to a new array. </summary> <returns> A new array containing elements copied from the <see cref="T:System.Collections.Queue" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Queue.TrimToSize"> <summary> Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Queue" />. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Queue" /> is read-only. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.ReadOnlyCollectionBase"> <summary> Provides the abstract base class for a strongly typed non-generic read-only collection. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ReadOnlyCollectionBase.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.ReadOnlyCollectionBase" /> class. </summary> </member> <member name="P:System.Collections.ReadOnlyCollectionBase.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.ReadOnlyCollectionBase" /> instance. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.ReadOnlyCollectionBase" /> instance. Retrieving the value of this property is an O(1) operation. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.ReadOnlyCollectionBase.GetEnumerator"> <summary> Returns an enumerator that iterates through the <see cref="T:System.Collections.ReadOnlyCollectionBase" /> instance. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.ReadOnlyCollectionBase" /> instance. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.ReadOnlyCollectionBase.InnerList"> <summary> Gets the list of elements contained in the <see cref="T:System.Collections.ReadOnlyCollectionBase" /> instance. </summary> <returns> An <see cref="T:System.Collections.ArrayList" /> representing the <see cref="T:System.Collections.ReadOnlyCollectionBase" /> instance itself. </returns> </member> <member name="M:System.Collections.ReadOnlyCollectionBase.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies the entire <see cref="T:System.Collections.ReadOnlyCollectionBase" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ReadOnlyCollectionBase" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.ReadOnlyCollectionBase" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.ReadOnlyCollectionBase" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.ReadOnlyCollectionBase.System#Collections#ICollection#IsSynchronized"> <summary> Gets a value indicating whether access to a <see cref="T:System.Collections.ReadOnlyCollectionBase" /> object is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.ReadOnlyCollectionBase" /> object is synchronized (thread safe); otherwise, false. The default is false. </returns> </member> <member name="P:System.Collections.ReadOnlyCollectionBase.System#Collections#ICollection#SyncRoot"> <summary> Gets an object that can be used to synchronize access to a <see cref="T:System.Collections.ReadOnlyCollectionBase" /> object. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.ReadOnlyCollectionBase" /> object. </returns> </member> <member name="T:System.Collections.SortedList"> <summary> Represents a collection of key/value pairs that are sorted by the keys and are accessible by key and by index. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.SortedList.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.SortedList" /> class that is empty, has the default initial capacity, and is sorted according to the <see cref="T:System.IComparable" /> interface implemented by each key added to the <see cref="T:System.Collections.SortedList" /> object. </summary> </member> <member name="M:System.Collections.SortedList.#ctor(System.Collections.IComparer)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.SortedList" /> class that is empty, has the default initial capacity, and is sorted according to the specified <see cref="T:System.Collections.IComparer" /> interface. </summary> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing keys. -or- null to use the <see cref="T:System.IComparable" /> implementation of each key. </param> </member> <member name="M:System.Collections.SortedList.#ctor(System.Collections.IComparer,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.SortedList" /> class that is empty, has the specified initial capacity, and is sorted according to the specified <see cref="T:System.Collections.IComparer" /> interface. </summary> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing keys. -or- null to use the <see cref="T:System.IComparable" /> implementation of each key. </param> <param name="capacity"> The initial number of elements that the <see cref="T:System.Collections.SortedList" /> object can contain. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. </exception> <exception cref="T:System.OutOfMemoryException"> There is not enough available memory to create a <see cref="T:System.Collections.SortedList" /> object with the specified <paramref name="capacity" />. </exception> </member> <member name="M:System.Collections.SortedList.#ctor(System.Collections.IDictionary)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.SortedList" /> class that contains elements copied from the specified dictionary, has the same initial capacity as the number of elements copied, and is sorted according to the <see cref="T:System.IComparable" /> interface implemented by each key. </summary> <param name="d"> The <see cref="T:System.Collections.IDictionary" /> implementation to copy to a new <see cref="T:System.Collections.SortedList" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="d" /> is null. </exception> <exception cref="T:System.InvalidCastException"> One or more elements in <paramref name="d" /> do not implement the <see cref="T:System.IComparable" /> interface. </exception> </member> <member name="M:System.Collections.SortedList.#ctor(System.Collections.IDictionary,System.Collections.IComparer)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.SortedList" /> class that contains elements copied from the specified dictionary, has the same initial capacity as the number of elements copied, and is sorted according to the specified <see cref="T:System.Collections.IComparer" /> interface. </summary> <param name="d"> The <see cref="T:System.Collections.IDictionary" /> implementation to copy to a new <see cref="T:System.Collections.SortedList" /> object. </param> <param name="comparer"> The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing keys. -or- null to use the <see cref="T:System.IComparable" /> implementation of each key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="d" /> is null. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="comparer" /> is null, and one or more elements in <paramref name="d" /> do not implement the <see cref="T:System.IComparable" /> interface. </exception> </member> <member name="M:System.Collections.SortedList.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.SortedList" /> class that is empty, has the specified initial capacity, and is sorted according to the <see cref="T:System.IComparable" /> interface implemented by each key added to the <see cref="T:System.Collections.SortedList" /> object. </summary> <param name="initialCapacity"> The initial number of elements that the <see cref="T:System.Collections.SortedList" /> object can contain. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="initialCapacity" /> is less than zero. </exception> <exception cref="T:System.OutOfMemoryException"> There is not enough available memory to create a <see cref="T:System.Collections.SortedList" /> object with the specified <paramref name="initialCapacity" />. </exception> </member> <member name="M:System.Collections.SortedList.Add(System.Object,System.Object)"> <summary> Adds an element with the specified key and value to a <see cref="T:System.Collections.SortedList" /> object. </summary> <param name="key"> The key of the element to add. </param> <param name="value"> The value of the element to add. The value can be null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> An element with the specified <paramref name="key" /> already exists in the <see cref="T:System.Collections.SortedList" /> object. -or- The <see cref="T:System.Collections.SortedList" /> is set to use the <see cref="T:System.IComparable" /> interface, and <paramref name="key" /> does not implement the <see cref="T:System.IComparable" /> interface. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.SortedList" /> is read-only. -or- The <see cref="T:System.Collections.SortedList" /> has a fixed size. </exception> <exception cref="T:System.OutOfMemoryException"> There is not enough available memory to add the element to the <see cref="T:System.Collections.SortedList" />. </exception> <exception cref="T:System.InvalidOperationException"> The comparer throws an exception. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.SortedList.Capacity"> <summary> Gets or sets the capacity of a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> The number of elements that the <see cref="T:System.Collections.SortedList" /> object can contain. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value assigned is less than the current number of elements in the <see cref="T:System.Collections.SortedList" /> object. </exception> <exception cref="T:System.OutOfMemoryException"> There is not enough memory available on the system. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.SortedList.Clear"> <summary> Removes all elements from a <see cref="T:System.Collections.SortedList" /> object. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.SortedList" /> object is read-only. -or- The <see cref="T:System.Collections.SortedList" /> has a fixed size. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.SortedList.Clone"> <summary> Creates a shallow copy of a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> A shallow copy of the <see cref="T:System.Collections.SortedList" /> object. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Collections.SortedList.Contains(System.Object)"> <summary> Determines whether a <see cref="T:System.Collections.SortedList" /> object contains a specific key. </summary> <returns>true if the <see cref="T:System.Collections.SortedList" /> object contains an element with the specified <paramref name="key" />; otherwise, false. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.SortedList" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The comparer throws an exception. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.SortedList.ContainsKey(System.Object)"> <summary> Determines whether a <see cref="T:System.Collections.SortedList" /> object contains a specific key. </summary> <returns>true if the <see cref="T:System.Collections.SortedList" /> object contains an element with the specified <paramref name="key" />; otherwise, false. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.SortedList" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The comparer throws an exception. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.SortedList.ContainsValue(System.Object)"> <summary> Determines whether a <see cref="T:System.Collections.SortedList" /> object contains a specific value. </summary> <returns>true if the <see cref="T:System.Collections.SortedList" /> object contains an element with the specified <paramref name="value" />; otherwise, false. </returns> <param name="value"> The value to locate in the <see cref="T:System.Collections.SortedList" /> object. The value can be null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.SortedList.CopyTo(System.Array,System.Int32)"> <summary> Copies <see cref="T:System.Collections.SortedList" /> elements to a one-dimensional <see cref="T:System.Array" /> object, starting at the specified index in the array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> object that is the destination of the <see cref="T:System.Collections.DictionaryEntry" /> objects copied from <see cref="T:System.Collections.SortedList" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="arrayIndex"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="arrayIndex" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.SortedList" /> object is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.SortedList" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.SortedList.Count"> <summary> Gets the number of elements contained in a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.SortedList" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.SortedList.GetByIndex(System.Int32)"> <summary> Gets the value at the specified index of a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> The value at the specified index of the <see cref="T:System.Collections.SortedList" /> object. </returns> <param name="index"> The zero-based index of the value to get. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.SortedList" /> object. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.SortedList.GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> object that iterates through a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> An <see cref="T:System.Collections.IDictionaryEnumerator" /> object for the <see cref="T:System.Collections.SortedList" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.SortedList.GetKey(System.Int32)"> <summary> Gets the key at the specified index of a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> The key at the specified index of the <see cref="T:System.Collections.SortedList" /> object. </returns> <param name="index"> The zero-based index of the key to get. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.SortedList" /> object. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.SortedList.GetKeyList"> <summary> Gets the keys in a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> An <see cref="T:System.Collections.IList" /> object containing the keys in the <see cref="T:System.Collections.SortedList" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.SortedList.GetValueList"> <summary> Gets the values in a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> An <see cref="T:System.Collections.IList" /> object containing the values in the <see cref="T:System.Collections.SortedList" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.SortedList.IndexOfKey(System.Object)"> <summary> Returns the zero-based index of the specified key in a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> The zero-based index of the <paramref name="key" /> parameter, if <paramref name="key" /> is found in the <see cref="T:System.Collections.SortedList" /> object; otherwise, -1. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.SortedList" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The comparer throws an exception. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.SortedList.IndexOfValue(System.Object)"> <summary> Returns the zero-based index of the first occurrence of the specified value in a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> The zero-based index of the first occurrence of the <paramref name="value" /> parameter, if <paramref name="value" /> is found in the <see cref="T:System.Collections.SortedList" /> object; otherwise, -1. </returns> <param name="value"> The value to locate in the <see cref="T:System.Collections.SortedList" /> object. The value can be null. </param> <filterpriority>1</filterpriority> </member> <member name="P:System.Collections.SortedList.IsFixedSize"> <summary> Gets a value indicating whether a <see cref="T:System.Collections.SortedList" /> object has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.SortedList" /> object has a fixed size; otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.SortedList.IsReadOnly"> <summary> Gets a value indicating whether a <see cref="T:System.Collections.SortedList" /> object is read-only. </summary> <returns>true if the <see cref="T:System.Collections.SortedList" /> object is read-only; otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.SortedList.IsSynchronized"> <summary> Gets a value indicating whether access to a <see cref="T:System.Collections.SortedList" /> object is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.SortedList" /> object is synchronized (thread safe); otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.SortedList.Item(System.Object)"> <summary> Gets and sets the value associated with a specific key in a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> The value associated with the <paramref name="key" /> parameter in the <see cref="T:System.Collections.SortedList" /> object, if <paramref name="key" /> is found; otherwise, null. </returns> <param name="key"> The key associated with the value to get or set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The property is set and the <see cref="T:System.Collections.SortedList" /> object is read-only. -or- The property is set, <paramref name="key" /> does not exist in the collection, and the <see cref="T:System.Collections.SortedList" /> has a fixed size. </exception> <exception cref="T:System.OutOfMemoryException"> There is not enough available memory to add the element to the <see cref="T:System.Collections.SortedList" />. </exception> <exception cref="T:System.InvalidOperationException"> The comparer throws an exception. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Collections.SortedList.Keys"> <summary> Gets the keys in a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> An <see cref="T:System.Collections.ICollection" /> object containing the keys in the <see cref="T:System.Collections.SortedList" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.SortedList.Remove(System.Object)"> <summary> Removes the element with the specified key from a <see cref="T:System.Collections.SortedList" /> object. </summary> <param name="key"> The key of the element to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.SortedList" /> object is read-only. -or- The <see cref="T:System.Collections.SortedList" /> has a fixed size. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.SortedList.RemoveAt(System.Int32)"> <summary> Removes the element at the specified index of a <see cref="T:System.Collections.SortedList" /> object. </summary> <param name="index"> The zero-based index of the element to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.SortedList" /> object. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.SortedList" /> is read-only. -or- The <see cref="T:System.Collections.SortedList" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.SortedList.SetByIndex(System.Int32,System.Object)"> <summary> Replaces the value at a specific index in a <see cref="T:System.Collections.SortedList" /> object. </summary> <param name="index"> The zero-based index at which to save <paramref name="value" />. </param> <param name="value"> The <see cref="T:System.Object" /> to save into the <see cref="T:System.Collections.SortedList" /> object. The value can be null. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.SortedList" /> object. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.SortedList.Synchronized(System.Collections.SortedList)"> <summary> Returns a synchronized (thread-safe) wrapper for a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> A synchronized (thread-safe) wrapper for the <see cref="T:System.Collections.SortedList" /> object. </returns> <param name="list"> The <see cref="T:System.Collections.SortedList" /> object to synchronize. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="list" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Collections.SortedList.SyncRoot"> <summary> Gets an object that can be used to synchronize access to a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.SortedList" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.SortedList.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IEnumerator" /> that iterates through the <see cref="T:System.Collections.SortedList" />. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.SortedList" />. </returns> </member> <member name="M:System.Collections.SortedList.TrimToSize"> <summary> Sets the capacity to the actual number of elements in a <see cref="T:System.Collections.SortedList" /> object. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.SortedList" /> object is read-only. -or- The <see cref="T:System.Collections.SortedList" /> has a fixed size. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.SortedList.Values"> <summary> Gets the values in a <see cref="T:System.Collections.SortedList" /> object. </summary> <returns> An <see cref="T:System.Collections.ICollection" /> object containing the values in the <see cref="T:System.Collections.SortedList" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.Collections.Stack"> <summary> Represents a simple last-in-first-out (LIFO) non-generic collection of objects. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Stack.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Stack" /> class that is empty and has the default initial capacity. </summary> </member> <member name="M:System.Collections.Stack.#ctor(System.Collections.ICollection)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Stack" /> class that contains elements copied from the specified collection and has the same initial capacity as the number of elements copied. </summary> <param name="col"> The <see cref="T:System.Collections.ICollection" /> to copy elements from. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="col" /> is null. </exception> </member> <member name="M:System.Collections.Stack.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Stack" /> class that is empty and has the specified initial capacity or the default initial capacity, whichever is greater. </summary> <param name="initialCapacity"> The initial number of elements that the <see cref="T:System.Collections.Stack" /> can contain. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="initialCapacity" /> is less than zero. </exception> </member> <member name="M:System.Collections.Stack.Clear"> <summary> Removes all objects from the <see cref="T:System.Collections.Stack" />. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Stack.Clone"> <summary> Creates a shallow copy of the <see cref="T:System.Collections.Stack" />. </summary> <returns> A shallow copy of the <see cref="T:System.Collections.Stack" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Stack.Contains(System.Object)"> <summary> Determines whether an element is in the <see cref="T:System.Collections.Stack" />. </summary> <returns>true, if <paramref name="obj" /> is found in the <see cref="T:System.Collections.Stack" />; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.Stack" />. The value can be null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Stack.CopyTo(System.Array,System.Int32)"> <summary> Copies the <see cref="T:System.Collections.Stack" /> to an existing one-dimensional <see cref="T:System.Array" />, starting at the specified array index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Stack" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.Stack" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> <exception cref="T:System.InvalidCastException"> The type of the source <see cref="T:System.Collections.Stack" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Stack.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.Stack" />. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.Stack" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Stack.GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.Stack" />. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.Stack" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Stack.IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.Stack" /> is synchronized (thread safe). </summary> <returns>true, if access to the <see cref="T:System.Collections.Stack" /> is synchronized (thread safe); otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Stack.Peek"> <summary> Returns the object at the top of the <see cref="T:System.Collections.Stack" /> without removing it. </summary> <returns> The <see cref="T:System.Object" /> at the top of the <see cref="T:System.Collections.Stack" />. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.Collections.Stack" /> is empty. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Stack.Pop"> <summary> Removes and returns the object at the top of the <see cref="T:System.Collections.Stack" />. </summary> <returns> The <see cref="T:System.Object" /> removed from the top of the <see cref="T:System.Collections.Stack" />. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.Collections.Stack" /> is empty. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Stack.Push(System.Object)"> <summary> Inserts an object at the top of the <see cref="T:System.Collections.Stack" />. </summary> <param name="obj"> The <see cref="T:System.Object" /> to push onto the <see cref="T:System.Collections.Stack" />. The value can be null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Stack.Synchronized(System.Collections.Stack)"> <summary> Returns a synchronized (thread safe) wrapper for the <see cref="T:System.Collections.Stack" />. </summary> <returns> A synchronized wrapper around the <see cref="T:System.Collections.Stack" />. </returns> <param name="stack"> The <see cref="T:System.Collections.Stack" /> to synchronize. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="stack" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Collections.Stack.SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.Stack" />. </summary> <returns> An <see cref="T:System.Object" /> that can be used to synchronize access to the <see cref="T:System.Collections.Stack" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Collections.Stack.ToArray"> <summary> Copies the <see cref="T:System.Collections.Stack" /> to a new array. </summary> <returns> A new array containing copies of the elements of the <see cref="T:System.Collections.Stack" />. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Collections.Generic.Comparer`1"> <summary> Provides a base class for implementations of the <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface. </summary> <typeparam name="T"> The type of objects to compare. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Generic.Comparer`1.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.Comparer`1" /> class. </summary> </member> <member name="M:System.Collections.Generic.Comparer`1.Compare(`0,`0)"> <summary> When overridden in a derived class, performs a comparison of two objects of the same type and returns a value indicating whether one object is less than, equal to, or greater than the other. </summary> <returns> Value Condition Less than zero <paramref name="x" /> is less than <paramref name="y" />. Zero <paramref name="x" /> equals <paramref name="y" />. Greater than zero <paramref name="x" /> is greater than <paramref name="y" />. </returns> <param name="x"> The first object to compare. </param> <param name="y"> The second object to compare. </param> <exception cref="T:System.ArgumentException"> Type <paramref name="T" /> does not implement either the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface. </exception> </member> <member name="P:System.Collections.Generic.Comparer`1.Default"> <summary> Returns a default sort order comparer for the type specified by the generic argument. </summary> <returns> An object that inherits <see cref="T:System.Collections.Generic.Comparer`1" /> and serves as a sort order comparer for type <paramref name="T" />. </returns> </member> <member name="M:System.Collections.Generic.Comparer`1.System#Collections#IComparer#Compare(System.Object,System.Object)"> <summary> Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. </summary> <returns> Value Condition Less than zero <paramref name="x" /> is less than <paramref name="y" />. Zero <paramref name="x" /> equals <paramref name="y" />. Greater than zero <paramref name="x" /> is greater than <paramref name="y" />. </returns> <param name="x"> The first object to compare. </param> <param name="y"> The second object to compare. </param> <exception cref="T:System.ArgumentException"> <paramref name="x" /> or <paramref name="y" /> is of a type that cannot be cast to type <paramref name="T" />. -or- <paramref name="x" /> and <paramref name="y" /> do not implement either the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface. </exception> </member> <member name="T:System.Collections.Generic.Dictionary`2"> <summary> Represents a collection of keys and values. </summary> <typeparam name="TKey"> The type of the keys in the dictionary. </typeparam> <typeparam name="TValue"> The type of the values in the dictionary. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Generic.Dictionary`2.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that is empty, has the default initial capacity, and uses the default equality comparer for the key type. </summary> </member> <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2" /> and uses the default equality comparer for the key type. </summary> <param name="dictionary"> The <see cref="T:System.Collections.Generic.IDictionary`2" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.Dictionary`2" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="dictionary" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="dictionary" /> contains one or more duplicate keys. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IEqualityComparer{`0})"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2" /> and uses the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />. </summary> <param name="dictionary"> The <see cref="T:System.Collections.Generic.IDictionary`2" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.Dictionary`2" />. </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1" /> for the type of the key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="dictionary" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="dictionary" /> contains one or more duplicate keys. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEqualityComparer{`0})"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that is empty, has the default initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />. </summary> <param name="comparer"> The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1" /> for the type of the key. </param> </member> <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that is empty, has the specified initial capacity, and uses the default equality comparer for the key type. </summary> <param name="capacity"> The initial number of elements that the <see cref="T:System.Collections.Generic.Dictionary`2" /> can contain. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than 0. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0})"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that is empty, has the specified initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />. </summary> <param name="capacity"> The initial number of elements that the <see cref="T:System.Collections.Generic.Dictionary`2" /> can contain. </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1" /> for the type of the key. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than 0. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class with serialized data. </summary> <param name="info"> A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Generic.Dictionary`2" />. </param> <param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.Dictionary`2" />. </param> </member> <member name="M:System.Collections.Generic.Dictionary`2.Add(`0,`1)"> <summary> Adds the specified key and value to the dictionary. </summary> <param name="key"> The key of the element to add. </param> <param name="value"> The value of the element to add. The value can be null for reference types. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> An element with the same key already exists in the <see cref="T:System.Collections.Generic.Dictionary`2" />. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.Clear"> <summary> Removes all keys and values from the <see cref="T:System.Collections.Generic.Dictionary`2" />. </summary> </member> <member name="P:System.Collections.Generic.Dictionary`2.Comparer"> <summary> Gets the <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> that is used to determine equality of keys for the dictionary. </summary> <returns> The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> generic interface implementation that is used to determine equality of keys for the current <see cref="T:System.Collections.Generic.Dictionary`2" /> and to provide hash values for the keys. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.ContainsKey(`0)"> <summary> Determines whether the <see cref="T:System.Collections.Generic.Dictionary`2" /> contains the specified key. </summary> <returns>true if the <see cref="T:System.Collections.Generic.Dictionary`2" /> contains an element with the specified key; otherwise, false. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.Generic.Dictionary`2" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.ContainsValue(`1)"> <summary> Determines whether the <see cref="T:System.Collections.Generic.Dictionary`2" /> contains a specific value. </summary> <returns>true if the <see cref="T:System.Collections.Generic.Dictionary`2" /> contains an element with the specified value; otherwise, false. </returns> <param name="value"> The value to locate in the <see cref="T:System.Collections.Generic.Dictionary`2" />. The value can be null for reference types. </param> </member> <member name="P:System.Collections.Generic.Dictionary`2.Count"> <summary> Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Generic.Dictionary`2" />. </summary> <returns> The number of key/value pairs contained in the <see cref="T:System.Collections.Generic.Dictionary`2" />. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.GetEnumerator"> <summary> Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Dictionary`2" />. </summary> <returns> A <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator" /> structure for the <see cref="T:System.Collections.Generic.Dictionary`2" />. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.Dictionary`2" /> instance. </summary> <param name="info"> A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.Dictionary`2" /> instance. </param> <param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.Dictionary`2" /> instance. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.Item(`0)"> <summary> Gets or sets the value associated with the specified key. </summary> <returns> The value associated with the specified key. If the specified key is not found, a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException" />, and a set operation creates a new element with the specified key. </returns> <param name="key"> The key of the value to get or set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.Collections.Generic.KeyNotFoundException"> The property is retrieved and <paramref name="key" /> does not exist in the collection. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.Keys"> <summary> Gets a collection containing the keys in the <see cref="T:System.Collections.Generic.Dictionary`2" />. </summary> <returns> A <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> containing the keys in the <see cref="T:System.Collections.Generic.Dictionary`2" />. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.OnDeserialization(System.Object)"> <summary> Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete. </summary> <param name="sender"> The source of the deserialization event. </param> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.Dictionary`2" /> instance is invalid. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.Remove(`0)"> <summary> Removes the value with the specified key from the <see cref="T:System.Collections.Generic.Dictionary`2" />. </summary> <returns>true if the element is successfully found and removed; otherwise, false. This method returns false if <paramref name="key" /> is not found in the <see cref="T:System.Collections.Generic.Dictionary`2" />. </returns> <param name="key"> The key of the element to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#Add(System.Collections.Generic.KeyValuePair{`0,`1})"></member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})"></member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)"></member> <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#IsReadOnly"></member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})"></member> <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys"></member> <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values"></member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IEnumerable{T}#GetEnumerator"></member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an array, starting at the specified array index. </summary> <param name="array"> The one-dimensional array that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The array must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- <paramref name="index" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="array" /> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. -or- The type of the source <see cref="T:System.Collections.Generic.ICollection`1" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2" />, this property always returns false. </returns> </member> <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)"> <summary> Adds the specified key and value to the dictionary. </summary> <param name="key"> The object to use as the key. </param> <param name="value"> The object to use as the value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.Dictionary`2" />. -or- <paramref name="value" /> is of a type that is not assignable to <paramref name="TValue" />, the type of values in the <see cref="T:System.Collections.Generic.Dictionary`2" />. -or- A value with the same key already exists in the <see cref="T:System.Collections.Generic.Dictionary`2" />. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Contains(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.IDictionary" /> contains an element with the specified key. </summary> <returns>true if the <see cref="T:System.Collections.IDictionary" /> contains an element with the specified key; otherwise, false. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.IDictionary" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />. </summary> <returns> An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />. </returns> </member> <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsFixedSize"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IDictionary" /> has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.IDictionary" /> has a fixed size; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2" />, this property always returns false. </returns> </member> <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IDictionary" /> is read-only. </summary> <returns>true if the <see cref="T:System.Collections.IDictionary" /> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2" />, this property always returns false. </returns> </member> <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Item(System.Object)"> <summary> Gets or sets the value with the specified key. </summary> <returns> The value associated with the specified key, or null if <paramref name="key" /> is not in the dictionary or <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.Dictionary`2" />. </returns> <param name="key"> The key of the value to get. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> A value is being assigned, and <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.Dictionary`2" />. -or- A value is being assigned, and <paramref name="value" /> is of a type that is not assignable to the value type <paramref name="TValue" /> of the <see cref="T:System.Collections.Generic.Dictionary`2" />. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Keys"> <summary> Gets an <see cref="T:System.Collections.ICollection" /> containing the keys of the <see cref="T:System.Collections.IDictionary" />. </summary> <returns> An <see cref="T:System.Collections.ICollection" /> containing the keys of the <see cref="T:System.Collections.IDictionary" />. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Remove(System.Object)"> <summary> Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary" />. </summary> <param name="key"> The key of the element to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Values"> <summary> Gets an <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.IDictionary" />. </summary> <returns> An <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.IDictionary" />. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an enumerator that iterates through the collection. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@)"> <summary> Gets the value associated with the specified key. </summary> <returns>true if the <see cref="T:System.Collections.Generic.Dictionary`2" /> contains an element with the specified key; otherwise, false. </returns> <param name="key"> The key of the value to get. </param> <param name="value"> When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.Values"> <summary> Gets a collection containing the values in the <see cref="T:System.Collections.Generic.Dictionary`2" />. </summary> <returns> A <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> containing the values in the <see cref="T:System.Collections.Generic.Dictionary`2" />. </returns> </member> <member name="T:System.Collections.Generic.Dictionary`2.Enumerator"> <summary> Enumerates the elements of a <see cref="T:System.Collections.Generic.Dictionary`2" />. </summary> </member> <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.Current"> <summary> Gets the element at the current position of the enumerator. </summary> <returns> The element in the <see cref="T:System.Collections.Generic.Dictionary`2" /> at the current position of the enumerator. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.Dispose"> <summary> Releases all resources used by the <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator" />. </summary> </member> <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.MoveNext"> <summary> Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Dictionary`2" />. </summary> <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. </returns> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry"> <summary> Gets the element at the current position of the enumerator. </summary> <returns> The element in the dictionary at the current position of the enumerator, as a <see cref="T:System.Collections.DictionaryEntry" />. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first element of the collection or after the last element. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key"> <summary> Gets the key of the element at the current position of the enumerator. </summary> <returns> The key of the element in the dictionary at the current position of the enumerator. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first element of the collection or after the last element. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value"> <summary> Gets the value of the element at the current position of the enumerator. </summary> <returns> The value of the element in the dictionary at the current position of the enumerator. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first element of the collection or after the last element. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Current"> <summary> Gets the element at the current position of the enumerator. </summary> <returns> The element in the collection at the current position of the enumerator, as an <see cref="T:System.Object" />. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first element of the collection or after the last element. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Reset"> <summary> Sets the enumerator to its initial position, which is before the first element in the collection. </summary> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> </member> <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection"> <summary> Represents the collection of keys in a <see cref="T:System.Collections.Generic.Dictionary`2" />. This class cannot be inherited. </summary> </member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> class that reflects the keys in the specified <see cref="T:System.Collections.Generic.Dictionary`2" />. </summary> <param name="dictionary"> The <see cref="T:System.Collections.Generic.Dictionary`2" /> whose keys are reflected in the new <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="dictionary" /> is null. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.CopyTo(`0[],System.Int32)"> <summary> Copies the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> elements to an existing one-dimensional <see cref="T:System.Array" />, starting at the specified array index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />. Retrieving the value of this property is an O(1) operation. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.GetEnumerator"> <summary> Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />. </summary> <returns> A <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator" /> for the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Add(`0)"></member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Clear"></member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Contains(`0)"></member> <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#IsReadOnly"></member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Remove(`0)"></member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator"></member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="array" /> does not have zero-based indexing. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. -or- The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />, this property always returns false. </returns> </member> <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />, this property always returns the current instance. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an enumerator that iterates through a collection. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection. </returns> </member> <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator"> <summary> Enumerates the elements of a <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />. </summary> </member> <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Current"> <summary> Gets the element at the current position of the enumerator. </summary> <returns> The element in the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> at the current position of the enumerator. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Dispose"> <summary> Releases all resources used by the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator" />. </summary> </member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.MoveNext"> <summary> Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />. </summary> <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. </returns> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current"> <summary> Gets the element at the current position of the enumerator. </summary> <returns> The element in the collection at the current position of the enumerator. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first element of the collection or after the last element. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset"> <summary> Sets the enumerator to its initial position, which is before the first element in the collection. </summary> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> </member> <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection"> <summary> Represents the collection of values in a <see cref="T:System.Collections.Generic.Dictionary`2" />. This class cannot be inherited. </summary> </member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> class that reflects the values in the specified <see cref="T:System.Collections.Generic.Dictionary`2" />. </summary> <param name="dictionary"> The <see cref="T:System.Collections.Generic.Dictionary`2" /> whose values are reflected in the new <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="dictionary" /> is null. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.CopyTo(`1[],System.Int32)"> <summary> Copies the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> elements to an existing one-dimensional <see cref="T:System.Array" />, starting at the specified array index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.GetEnumerator"> <summary> Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />. </summary> <returns> A <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator" /> for the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Add(`1)"></member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Clear"></member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Contains(`1)"></member> <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#IsReadOnly"></member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Remove(`1)"></member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator"></member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="array" /> does not have zero-based indexing. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. -or- The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />, this property always returns false. </returns> </member> <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />, this property always returns the current instance. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an enumerator that iterates through a collection. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection. </returns> </member> <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator"> <summary> Enumerates the elements of a <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />. </summary> </member> <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Current"> <summary> Gets the element at the current position of the enumerator. </summary> <returns> The element in the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> at the current position of the enumerator. </returns> </member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Dispose"> <summary> Releases all resources used by the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator" />. </summary> </member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.MoveNext"> <summary> Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />. </summary> <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. </returns> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> </member> <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current"> <summary> Gets the element at the current position of the enumerator. </summary> <returns> The element in the collection at the current position of the enumerator. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first element of the collection or after the last element. </exception> </member> <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset"> <summary> Sets the enumerator to its initial position, which is before the first element in the collection. </summary> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> </member> <member name="T:System.Collections.Generic.EqualityComparer`1"> <summary> Provides a base class for implementations of the <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> generic interface. </summary> <typeparam name="T"> The type of objects to compare. </typeparam> </member> <member name="M:System.Collections.Generic.EqualityComparer`1.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.EqualityComparer`1" /> class. </summary> </member> <member name="P:System.Collections.Generic.EqualityComparer`1.Default"> <summary> Returns a default equality comparer for the type specified by the generic argument. </summary> <returns> The default instance of the <see cref="T:System.Collections.Generic.EqualityComparer`1" /> class for type <paramref name="T" />. </returns> </member> <member name="M:System.Collections.Generic.EqualityComparer`1.Equals(`0,`0)"> <summary> When overridden in a derived class, determines whether two objects of type <paramref name="T" /> are equal. </summary> <returns>true if the specified objects are equal; otherwise, false. </returns> <param name="x"> The first object to compare. </param> <param name="y"> The second object to compare. </param> </member> <member name="M:System.Collections.Generic.EqualityComparer`1.GetHashCode(`0)"> <summary> When overridden in a derived class, serves as a hash function for the specified object for hashing algorithms and data structures, such as a hash table. </summary> <returns> A hash code for the specified object. </returns> <param name="obj"> The object for which to get a hash code. </param> <exception cref="T:System.ArgumentNullException"> The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null. </exception> </member> <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#Equals(System.Object,System.Object)"> <summary> Determines whether the specified objects are equal. </summary> <returns>true if the specified objects are equal; otherwise, false. </returns> <param name="x"> The first object to compare. </param> <param name="y"> The second object to compare. </param> <exception cref="T:System.ArgumentException"> <paramref name="x" /> or <paramref name="y" /> is of a type that cannot be cast to type <paramref name="T" />. </exception> </member> <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#GetHashCode(System.Object)"> <summary> Returns a hash code for the specified object. </summary> <returns> A hash code for the specified object. </returns> <param name="obj"> The <see cref="T:System.Object" /> for which a hash code is to be returned. </param> <exception cref="T:System.ArgumentNullException"> The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null. -or- <paramref name="obj" /> is of a type that cannot be cast to type <paramref name="T" />. </exception> </member> <member name="T:System.Collections.Generic.ICollection`1"> <summary> Defines methods to manipulate generic collections. </summary> <typeparam name="T"> The type of the elements in the collection. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Generic.ICollection`1.Add(`0)"> <summary> Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1" />. </summary> <param name="item"> The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" />. </param> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only. </exception> </member> <member name="M:System.Collections.Generic.ICollection`1.Clear"> <summary> Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />. </summary> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only. </exception> </member> <member name="M:System.Collections.Generic.ICollection`1.Contains(`0)"> <summary> Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value. </summary> <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />. </param> </member> <member name="M:System.Collections.Generic.ICollection`1.CopyTo(`0[],System.Int32)"> <summary> Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="arrayIndex"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="arrayIndex" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />. -or- Type <paramref name="T" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.Generic.ICollection`1.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />. </returns> </member> <member name="P:System.Collections.Generic.ICollection`1.IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only. </summary> <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false. </returns> </member> <member name="M:System.Collections.Generic.ICollection`1.Remove(`0)"> <summary> Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />. </summary> <returns>true if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false. This method also returns false if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />. </returns> <param name="item"> The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />. </param> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only. </exception> </member> <member name="T:System.Collections.Generic.IComparer`1"> <summary> Defines a method that a type implements to compare two objects. </summary> <typeparam name="T"> The type of objects to compare. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Generic.IComparer`1.Compare(`0,`0)"> <summary> Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. </summary> <returns> Value Condition Less than zero <paramref name="x" /> is less than <paramref name="y" />. Zero <paramref name="x" /> equals <paramref name="y" />. Greater than zero <paramref name="x" /> is greater than <paramref name="y" />. </returns> <param name="x"> The first object to compare. </param> <param name="y"> The second object to compare. </param> </member> <member name="T:System.Collections.Generic.IDictionary`2"> <summary> Represents a generic collection of key/value pairs. </summary> <typeparam name="TKey"> The type of keys in the dictionary. </typeparam> <typeparam name="TValue"> The type of values in the dictionary. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Generic.IDictionary`2.Add(`0,`1)"> <summary> Adds an element with the provided key and value to the <see cref="T:System.Collections.Generic.IDictionary`2" />. </summary> <param name="key"> The object to use as the key of the element to add. </param> <param name="value"> The object to use as the value of the element to add. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> An element with the same key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Generic.IDictionary`2" /> is read-only. </exception> </member> <member name="M:System.Collections.Generic.IDictionary`2.ContainsKey(`0)"> <summary> Determines whether the <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the specified key. </summary> <returns>true if the <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the key; otherwise, false. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="P:System.Collections.Generic.IDictionary`2.Item(`0)"> <summary> Gets or sets the element with the specified key. </summary> <returns> The element with the specified key. </returns> <param name="key"> The key of the element to get or set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.Collections.Generic.KeyNotFoundException"> The property is retrieved and <paramref name="key" /> is not found. </exception> <exception cref="T:System.NotSupportedException"> The property is set and the <see cref="T:System.Collections.Generic.IDictionary`2" /> is read-only. </exception> </member> <member name="P:System.Collections.Generic.IDictionary`2.Keys"> <summary> Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />. </summary> <returns> An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />. </returns> </member> <member name="M:System.Collections.Generic.IDictionary`2.Remove(`0)"> <summary> Removes the element with the specified key from the <see cref="T:System.Collections.Generic.IDictionary`2" />. </summary> <returns>true if the element is successfully removed; otherwise, false. This method also returns false if <paramref name="key" /> was not found in the original <see cref="T:System.Collections.Generic.IDictionary`2" />. </returns> <param name="key"> The key of the element to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Generic.IDictionary`2" /> is read-only. </exception> </member> <member name="M:System.Collections.Generic.IDictionary`2.TryGetValue(`0,`1@)"> <summary> Gets the value associated with the specified key. </summary> <returns>true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the specified key; otherwise, false. </returns> <param name="key"> The key whose value to get. </param> <param name="value"> When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="P:System.Collections.Generic.IDictionary`2.Values"> <summary> Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />. </summary> <returns> An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />. </returns> </member> <member name="T:System.Collections.Generic.IEnumerable`1"> <summary> Exposes the enumerator, which supports a simple iteration over a collection of a specified type. </summary> <typeparam name="T"> The type of objects to enumerate. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Generic.IEnumerable`1.GetEnumerator"> <summary> Returns an enumerator that iterates through the collection. </summary> <returns> A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.Collections.Generic.IEnumerator`1"> <summary> Supports a simple iteration over a generic collection. </summary> <typeparam name="T"> The type of objects to enumerate. </typeparam> <filterpriority>1</filterpriority> </member> <member name="P:System.Collections.Generic.IEnumerator`1.Current"> <summary> Gets the element in the collection at the current position of the enumerator. </summary> <returns> The element in the collection at the current position of the enumerator. </returns> </member> <member name="T:System.Collections.Generic.IEqualityComparer`1"> <summary> Defines methods to support the comparison of objects for equality. </summary> <typeparam name="T"> The type of objects to compare. </typeparam> </member> <member name="M:System.Collections.Generic.IEqualityComparer`1.Equals(`0,`0)"> <summary> Determines whether the specified objects are equal. </summary> <returns>true if the specified objects are equal; otherwise, false. </returns> <param name="x"> The first object of type <paramref name="T" /> to compare. </param> <param name="y"> The second object of type <paramref name="T" /> to compare. </param> </member> <member name="M:System.Collections.Generic.IEqualityComparer`1.GetHashCode(`0)"> <summary> Returns a hash code for the specified object. </summary> <returns> A hash code for the specified object. </returns> <param name="obj"> The <see cref="T:System.Object" /> for which a hash code is to be returned. </param> <exception cref="T:System.ArgumentNullException"> The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null. </exception> </member> <member name="T:System.Collections.Generic.IList`1"> <summary> Represents a collection of objects that can be individually accessed by index. </summary> <typeparam name="T"> The type of elements in the list. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Generic.IList`1.IndexOf(`0)"> <summary> Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1" />. </summary> <returns> The index of <paramref name="item" /> if found in the list; otherwise, -1. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.Generic.IList`1" />. </param> </member> <member name="M:System.Collections.Generic.IList`1.Insert(System.Int32,`0)"> <summary> Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index. </summary> <param name="index"> The zero-based index at which <paramref name="item" /> should be inserted. </param> <param name="item"> The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Generic.IList`1" /> is read-only. </exception> </member> <member name="P:System.Collections.Generic.IList`1.Item(System.Int32)"> <summary> Gets or sets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The zero-based index of the element to get or set. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1" />. </exception> <exception cref="T:System.NotSupportedException"> The property is set and the <see cref="T:System.Collections.Generic.IList`1" /> is read-only. </exception> </member> <member name="M:System.Collections.Generic.IList`1.RemoveAt(System.Int32)"> <summary> Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index. </summary> <param name="index"> The zero-based index of the item to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1" />. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Collections.Generic.IList`1" /> is read-only. </exception> </member> <member name="T:System.Collections.Generic.KeyNotFoundException"> <summary> The exception that is thrown when the key specified for accessing an element in a collection does not match any key in the collection. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Generic.KeyNotFoundException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.KeyNotFoundException" /> class using default property values. </summary> </member> <member name="M:System.Collections.Generic.KeyNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.KeyNotFoundException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.Collections.Generic.KeyNotFoundException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.KeyNotFoundException" /> class with the specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.Collections.Generic.KeyNotFoundException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.KeyNotFoundException" /> class with the specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Collections.Generic.KeyValuePair`2"> <summary> Defines a key/value pair that can be set or retrieved. </summary> <typeparam name="TKey"> The type of the key. </typeparam> <typeparam name="TValue"> The type of the value. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Generic.KeyValuePair`2.#ctor(`0,`1)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structure with the specified key and value. </summary> <param name="key"> The object defined in each key/value pair. </param> <param name="value"> The definition associated with <paramref name="key" />. </param> </member> <member name="P:System.Collections.Generic.KeyValuePair`2.Key"> <summary> Gets the key in the key/value pair. </summary> <returns> A <paramref name="TKey" /> that is the key of the <see cref="T:System.Collections.Generic.KeyValuePair`2" />. </returns> </member> <member name="M:System.Collections.Generic.KeyValuePair`2.ToString"> <summary> Returns a string representation of the <see cref="T:System.Collections.Generic.KeyValuePair`2" />, using the string representations of the key and value. </summary> <returns> A string representation of the <see cref="T:System.Collections.Generic.KeyValuePair`2" />, which includes the string representations of the key and value. </returns> </member> <member name="P:System.Collections.Generic.KeyValuePair`2.Value"> <summary> Gets the value in the key/value pair. </summary> <returns> A <paramref name="TValue" /> that is the value of the <see cref="T:System.Collections.Generic.KeyValuePair`2" />. </returns> </member> <member name="T:System.Collections.Generic.List`1"> <summary> Represents a strongly typed list of objects that can be accessed by index. Provides methods to search, sort, and manipulate lists. </summary> <typeparam name="T"> The type of elements in the list. </typeparam> <filterpriority>1</filterpriority> </member> <member name="M:System.Collections.Generic.List`1.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.List`1" /> class that is empty and has the default initial capacity. </summary> </member> <member name="M:System.Collections.Generic.List`1.#ctor(System.Collections.Generic.IEnumerable{`0})"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.List`1" /> class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied. </summary> <param name="collection"> The collection whose elements are copied to the new list. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="collection" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.Generic.List`1" /> class that is empty and has the specified initial capacity. </summary> <param name="capacity"> The number of elements that the new list can initially store. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than 0. </exception> </member> <member name="M:System.Collections.Generic.List`1.Add(`0)"> <summary> Adds an object to the end of the <see cref="T:System.Collections.Generic.List`1" />. </summary> <param name="item"> The object to be added to the end of the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> </member> <member name="M:System.Collections.Generic.List`1.AddRange(System.Collections.Generic.IEnumerable{`0})"> <summary> Adds the elements of the specified collection to the end of the <see cref="T:System.Collections.Generic.List`1" />. </summary> <param name="collection"> The collection whose elements should be added to the end of the <see cref="T:System.Collections.Generic.List`1" />. The collection itself cannot be null, but it can contain elements that are null, if type <paramref name="T" /> is a reference type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="collection" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.AsReadOnly"> <summary> Returns a read-only <see cref="T:System.Collections.Generic.IList`1" /> wrapper for the current collection. </summary> <returns> A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> that acts as a read-only wrapper around the current <see cref="T:System.Collections.Generic.List`1" />. </returns> </member> <member name="M:System.Collections.Generic.List`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0})"> <summary> Searches a range of elements in the sorted <see cref="T:System.Collections.Generic.List`1" /> for an element using the specified comparer and returns the zero-based index of the element. </summary> <returns> The zero-based index of <paramref name="item" /> in the sorted <see cref="T:System.Collections.Generic.List`1" />, if <paramref name="item" /> is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than <paramref name="item" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.List`1.Count" />. </returns> <param name="index"> The zero-based starting index of the range to search. </param> <param name="count"> The length of the range to search. </param> <param name="item"> The object to locate. The value can be null for reference types. </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing elements, or null to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="count" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in the <see cref="T:System.Collections.Generic.List`1" />. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find an implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.BinarySearch(`0)"> <summary> Searches the entire sorted <see cref="T:System.Collections.Generic.List`1" /> for an element using the default comparer and returns the zero-based index of the element. </summary> <returns> The zero-based index of <paramref name="item" /> in the sorted <see cref="T:System.Collections.Generic.List`1" />, if <paramref name="item" /> is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than <paramref name="item" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.List`1.Count" />. </returns> <param name="item"> The object to locate. The value can be null for reference types. </param> <exception cref="T:System.InvalidOperationException"> The default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find an implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0})"> <summary> Searches the entire sorted <see cref="T:System.Collections.Generic.List`1" /> for an element using the specified comparer and returns the zero-based index of the element. </summary> <returns> The zero-based index of <paramref name="item" /> in the sorted <see cref="T:System.Collections.Generic.List`1" />, if <paramref name="item" /> is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than <paramref name="item" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.List`1.Count" />. </returns> <param name="item"> The object to locate. The value can be null for reference types. </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing elements. -or- null to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" />. </param> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find an implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />. </exception> </member> <member name="P:System.Collections.Generic.List`1.Capacity"> <summary> Gets or sets the total number of elements the internal data structure can hold without resizing. </summary> <returns> The number of elements that the <see cref="T:System.Collections.Generic.List`1" /> can contain before resizing is required. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> <see cref="P:System.Collections.Generic.List`1.Capacity" /> is set to a value that is less than <see cref="P:System.Collections.Generic.List`1.Count" />. </exception> <exception cref="T:System.OutOfMemoryException"> There is not enough memory available on the system. </exception> </member> <member name="M:System.Collections.Generic.List`1.Clear"> <summary> Removes all elements from the <see cref="T:System.Collections.Generic.List`1" />. </summary> </member> <member name="M:System.Collections.Generic.List`1.Contains(`0)"> <summary> Determines whether an element is in the <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.List`1" />; otherwise, false. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> </member> <member name="M:System.Collections.Generic.List`1.ConvertAll``1(System.Converter{`0,``0})"> <summary> Converts the elements in the current <see cref="T:System.Collections.Generic.List`1" /> to another type, and returns a list containing the converted elements. </summary> <returns> A <see cref="T:System.Collections.Generic.List`1" /> of the target type containing the converted elements from the current <see cref="T:System.Collections.Generic.List`1" />. </returns> <param name="converter"> A <see cref="T:System.Converter`2" /> delegate that converts each element from one type to another type. </param> <typeparam name="TOutput"> The type of the elements of the target array. </typeparam> <exception cref="T:System.ArgumentNullException"> <paramref name="converter" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32)"> <summary> Copies a range of elements from the <see cref="T:System.Collections.Generic.List`1" /> to a compatible one-dimensional array, starting at the specified index of the target array. </summary> <param name="index"> The zero-based index in the source <see cref="T:System.Collections.Generic.List`1" /> at which copying begins. </param> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="arrayIndex"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <param name="count"> The number of elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="arrayIndex" /> is less than 0. -or- <paramref name="count" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> is equal to or greater than the <see cref="P:System.Collections.Generic.List`1.Count" /> of the source <see cref="T:System.Collections.Generic.List`1" />. -or- <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements from <paramref name="index" /> to the end of the source <see cref="T:System.Collections.Generic.List`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.CopyTo(`0[])"> <summary> Copies the entire <see cref="T:System.Collections.Generic.List`1" /> to a compatible one-dimensional array, starting at the beginning of the target array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentException"> The number of elements in the source <see cref="T:System.Collections.Generic.List`1" /> is greater than the number of elements that the destination <paramref name="array" /> can contain. </exception> </member> <member name="M:System.Collections.Generic.List`1.CopyTo(`0[],System.Int32)"> <summary> Copies the entire <see cref="T:System.Collections.Generic.List`1" /> to a compatible one-dimensional array, starting at the specified index of the target array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="arrayIndex"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="arrayIndex" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.Generic.List`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.Generic.List`1.Count"> <summary> Gets the number of elements actually contained in the <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns> The number of elements actually contained in the <see cref="T:System.Collections.Generic.List`1" />. </returns> </member> <member name="M:System.Collections.Generic.List`1.Exists(System.Predicate{`0})"> <summary> Determines whether the <see cref="T:System.Collections.Generic.List`1" /> contains elements that match the conditions defined by the specified predicate. </summary> <returns>true if the <see cref="T:System.Collections.Generic.List`1" /> contains one or more elements that match the conditions defined by the specified predicate; otherwise, false. </returns> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the elements to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.Find(System.Predicate{`0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns> The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T" />. </returns> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.FindAll(System.Predicate{`0})"> <summary> Retrieves all the elements that match the conditions defined by the specified predicate. </summary> <returns> A <see cref="T:System.Collections.Generic.List`1" /> containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty <see cref="T:System.Collections.Generic.List`1" />. </returns> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the elements to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that starts at the specified index and contains the specified number of elements. </summary> <returns> The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="count"> The number of elements in the section to search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />. -or- <paramref name="count" /> is less than 0. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Predicate{`0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from the specified index to the last element. </summary> <returns> The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.FindIndex(System.Predicate{`0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns> The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.FindLast(System.Predicate{`0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns> The last element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T" />. </returns> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that contains the specified number of elements and ends at the specified index. </summary> <returns> The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="count"> The number of elements in the section to search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />. -or- <paramref name="count" /> is less than 0. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Predicate{`0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from the first element to the specified index. </summary> <returns> The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Predicate{`0})"> <summary> Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns> The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, –1. </returns> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.ForEach(System.Action{`0})"> <summary> Performs the specified action on each element of the <see cref="T:System.Collections.Generic.List`1" />. </summary> <param name="action"> The <see cref="T:System.Action`1" /> delegate to perform on each element of the <see cref="T:System.Collections.Generic.List`1" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="action" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.GetEnumerator"> <summary> Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns> A <see cref="T:System.Collections.Generic.List`1.Enumerator" /> for the <see cref="T:System.Collections.Generic.List`1" />. </returns> </member> <member name="M:System.Collections.Generic.List`1.GetRange(System.Int32,System.Int32)"> <summary> Creates a shallow copy of a range of elements in the source <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns> A shallow copy of a range of elements in the source <see cref="T:System.Collections.Generic.List`1" />. </returns> <param name="index"> The zero-based <see cref="T:System.Collections.Generic.List`1" /> index at which the range starts. </param> <param name="count"> The number of elements in the range. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="count" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.IndexOf(`0)"> <summary> Searches for the specified object and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns> The zero-based index of the first occurrence of <paramref name="item" /> within the entire <see cref="T:System.Collections.Generic.List`1" />, if found; otherwise, –1. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> </member> <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32)"> <summary> Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from the specified index to the last element. </summary> <returns> The zero-based index of the first occurrence of <paramref name="item" /> within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from <paramref name="index" /> to the last element, if found; otherwise, –1. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> <param name="index"> The zero-based starting index of the search. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32,System.Int32)"> <summary> Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that starts at the specified index and contains the specified number of elements. </summary> <returns> The zero-based index of the first occurrence of <paramref name="item" /> within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that starts at <paramref name="index" /> and contains <paramref name="count" /> number of elements, if found; otherwise, –1. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> <param name="index"> The zero-based starting index of the search. </param> <param name="count"> The number of elements in the section to search. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />. -or- <paramref name="count" /> is less than 0. -or- <paramref name="index" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.Insert(System.Int32,`0)"> <summary> Inserts an element into the <see cref="T:System.Collections.Generic.List`1" /> at the specified index. </summary> <param name="index"> The zero-based index at which <paramref name="item" /> should be inserted. </param> <param name="item"> The object to insert. The value can be null for reference types. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="index" /> is greater than <see cref="P:System.Collections.Generic.List`1.Count" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})"> <summary> Inserts the elements of a collection into the <see cref="T:System.Collections.Generic.List`1" /> at the specified index. </summary> <param name="index"> The zero-based index at which the new elements should be inserted. </param> <param name="collection"> The collection whose elements should be inserted into the <see cref="T:System.Collections.Generic.List`1" />. The collection itself cannot be null, but it can contain elements that are null, if type <paramref name="T" /> is a reference type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="collection" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="index" /> is greater than <see cref="P:System.Collections.Generic.List`1.Count" />. </exception> </member> <member name="P:System.Collections.Generic.List`1.Item(System.Int32)"> <summary> Gets or sets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The zero-based index of the element to get or set. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.Generic.List`1.Count" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0)"> <summary> Searches for the specified object and returns the zero-based index of the last occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns> The zero-based index of the last occurrence of <paramref name="item" /> within the entire the <see cref="T:System.Collections.Generic.List`1" />, if found; otherwise, –1. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> </member> <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32)"> <summary> Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from the first element to the specified index. </summary> <returns> The zero-based index of the last occurrence of <paramref name="item" /> within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from the first element to <paramref name="index" />, if found; otherwise, –1. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> <param name="index"> The zero-based starting index of the backward search. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32,System.Int32)"> <summary> Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that contains the specified number of elements and ends at the specified index. </summary> <returns> The zero-based index of the last occurrence of <paramref name="item" /> within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that contains <paramref name="count" /> number of elements and ends at <paramref name="index" />, if found; otherwise, –1. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> <param name="index"> The zero-based starting index of the backward search. </param> <param name="count"> The number of elements in the section to search. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />. -or- <paramref name="count" /> is less than 0. -or- <paramref name="index" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.Remove(`0)"> <summary> Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns>true if <paramref name="item" /> is successfully removed; otherwise, false. This method also returns false if <paramref name="item" /> was not found in the <see cref="T:System.Collections.Generic.List`1" />. </returns> <param name="item"> The object to remove from the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> </member> <member name="M:System.Collections.Generic.List`1.RemoveAll(System.Predicate{`0})"> <summary> Removes the all the elements that match the conditions defined by the specified predicate. </summary> <returns> The number of elements removed from the <see cref="T:System.Collections.Generic.List`1" /> . </returns> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the elements to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> </member> <member name="M:System.Collections.Generic.List`1.RemoveAt(System.Int32)"> <summary> Removes the element at the specified index of the <see cref="T:System.Collections.Generic.List`1" />. </summary> <param name="index"> The zero-based index of the element to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.Generic.List`1.Count" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.RemoveRange(System.Int32,System.Int32)"> <summary> Removes a range of elements from the <see cref="T:System.Collections.Generic.List`1" />. </summary> <param name="index"> The zero-based starting index of the range of elements to remove. </param> <param name="count"> The number of elements to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="count" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.Reverse"> <summary> Reverses the order of the elements in the entire <see cref="T:System.Collections.Generic.List`1" />. </summary> </member> <member name="M:System.Collections.Generic.List`1.Reverse(System.Int32,System.Int32)"> <summary> Reverses the order of the elements in the specified range. </summary> <param name="index"> The zero-based starting index of the range to reverse. </param> <param name="count"> The number of elements in the range to reverse. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="count" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.Generic.List`1" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.Sort"> <summary> Sorts the elements in the entire <see cref="T:System.Collections.Generic.List`1" /> using the default comparer. </summary> <exception cref="T:System.InvalidOperationException"> The default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find an implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.Sort(System.Collections.Generic.IComparer{`0})"> <summary> Sorts the elements in the entire <see cref="T:System.Collections.Generic.List`1" /> using the specified comparer. </summary> <param name="comparer"> The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing elements, or null to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" />. </param> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />. </exception> <exception cref="T:System.ArgumentException"> The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself. </exception> </member> <member name="M:System.Collections.Generic.List`1.Sort(System.Comparison{`0})"> <summary> Sorts the elements in the entire <see cref="T:System.Collections.Generic.List`1" /> using the specified <see cref="T:System.Comparison`1" />. </summary> <param name="comparison"> The <see cref="T:System.Comparison`1" /> to use when comparing elements. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="comparison" /> is null. </exception> <exception cref="T:System.ArgumentException"> The implementation of <paramref name="comparison" /> caused an error during the sort. For example, <paramref name="comparison" /> might not return 0 when comparing an item with itself. </exception> </member> <member name="M:System.Collections.Generic.List`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0})"> <summary> Sorts the elements in a range of elements in <see cref="T:System.Collections.Generic.List`1" /> using the specified comparer. </summary> <param name="index"> The zero-based starting index of the range to sort. </param> <param name="count"> The length of the range to sort. </param> <param name="comparer"> The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing elements, or null to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="count" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> and <paramref name="count" /> do not specify a valid range in the <see cref="T:System.Collections.Generic.List`1" />. -or- The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="comparer" /> is null, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />. </exception> </member> <member name="P:System.Collections.Generic.List`1.System#Collections#Generic#ICollection{T}#IsReadOnly"></member> <member name="M:System.Collections.Generic.List`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator"></member> <member name="M:System.Collections.Generic.List`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="arrayIndex"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="arrayIndex" /> is less than 0. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="array" /> does not have zero-based indexing. -or- <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />. -or- The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.List`1" />, this property always returns false. </returns> </member> <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.List`1" />, this property always returns the current instance. </returns> </member> <member name="M:System.Collections.Generic.List`1.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an enumerator that iterates through a collection. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection. </returns> </member> <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Add(System.Object)"> <summary> Adds an item to the <see cref="T:System.Collections.IList" />. </summary> <returns> The position into which the new element was inserted. </returns> <param name="item"> The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="item" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Contains(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.IList" /> contains a specific value. </summary> <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, false. </returns> <param name="item"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />. </param> </member> <member name="M:System.Collections.Generic.List`1.System#Collections#IList#IndexOf(System.Object)"> <summary> Determines the index of a specific item in the <see cref="T:System.Collections.IList" />. </summary> <returns> The index of <paramref name="item" /> if found in the list; otherwise, –1. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="item" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Insert(System.Int32,System.Object)"> <summary> Inserts an item to the <see cref="T:System.Collections.IList" /> at the specified index. </summary> <param name="index"> The zero-based index at which <paramref name="item" /> should be inserted. </param> <param name="item"> The object to insert into the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="item" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsFixedSize"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IList" /> has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.List`1" />, this property always returns false. </returns> </member> <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IList" /> is read-only. </summary> <returns>true if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.List`1" />, this property always returns false. </returns> </member> <member name="P:System.Collections.Generic.List`1.System#Collections#IList#Item(System.Int32)"> <summary> Gets or sets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The zero-based index of the element to get or set. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />. </exception> <exception cref="T:System.ArgumentException"> The property is set and <paramref name="value" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Remove(System.Object)"> <summary> Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList" />. </summary> <param name="item"> The object to remove from the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="item" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="M:System.Collections.Generic.List`1.ToArray"> <summary> Copies the elements of the <see cref="T:System.Collections.Generic.List`1" /> to a new array. </summary> <returns> An array containing copies of the elements of the <see cref="T:System.Collections.Generic.List`1" />. </returns> </member> <member name="M:System.Collections.Generic.List`1.TrimExcess"> <summary> Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Generic.List`1" />, if that number is less than a threshold value. </summary> </member> <member name="M:System.Collections.Generic.List`1.TrueForAll(System.Predicate{`0})"> <summary> Determines whether every element in the <see cref="T:System.Collections.Generic.List`1" /> matches the conditions defined by the specified predicate. </summary> <returns>true if every element in the <see cref="T:System.Collections.Generic.List`1" /> matches the conditions defined by the specified predicate; otherwise, false. If the list has no elements, the return value is true. </returns> <param name="match"> The <see cref="T:System.Predicate`1" /> delegate that defines the conditions to check against the elements. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="match" /> is null. </exception> </member> <member name="T:System.Collections.Generic.List`1.Enumerator"> <summary> Enumerates the elements of a <see cref="T:System.Collections.Generic.List`1" />. </summary> </member> <member name="P:System.Collections.Generic.List`1.Enumerator.Current"> <summary> Gets the element at the current position of the enumerator. </summary> <returns> The element in the <see cref="T:System.Collections.Generic.List`1" /> at the current position of the enumerator. </returns> </member> <member name="M:System.Collections.Generic.List`1.Enumerator.Dispose"> <summary> Releases all resources used by the <see cref="T:System.Collections.Generic.List`1.Enumerator" />. </summary> </member> <member name="M:System.Collections.Generic.List`1.Enumerator.MoveNext"> <summary> Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.List`1" />. </summary> <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. </returns> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> </member> <member name="P:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Current"> <summary> Gets the element at the current position of the enumerator. </summary> <returns> The element in the <see cref="T:System.Collections.Generic.List`1" /> at the current position of the enumerator. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first element of the collection or after the last element. </exception> </member> <member name="M:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Reset"> <summary> Sets the enumerator to its initial position, which is before the first element in the collection. </summary> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> </member> <member name="T:System.Collections.ObjectModel.Collection`1"> <summary> Provides the base class for a generic collection. </summary> <typeparam name="T"> The type of elements in the collection. </typeparam> </member> <member name="M:System.Collections.ObjectModel.Collection`1.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.ObjectModel.Collection`1" /> class that is empty. </summary> </member> <member name="M:System.Collections.ObjectModel.Collection`1.#ctor(System.Collections.Generic.IList{`0})"> <summary> Initializes a new instance of the <see cref="T:System.Collections.ObjectModel.Collection`1" /> class as a wrapper for the specified list. </summary> <param name="list"> The list that is wrapped by the new collection. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="list" /> is null. </exception> </member> <member name="M:System.Collections.ObjectModel.Collection`1.Add(`0)"> <summary> Adds an object to the end of the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> <param name="item"> The object to be added to the end of the <see cref="T:System.Collections.ObjectModel.Collection`1" />. The value can be null for reference types. </param> </member> <member name="M:System.Collections.ObjectModel.Collection`1.Clear"> <summary> Removes all elements from the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> </member> <member name="M:System.Collections.ObjectModel.Collection`1.ClearItems"> <summary> Removes all elements from the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> </member> <member name="M:System.Collections.ObjectModel.Collection`1.Contains(`0)"> <summary> Determines whether an element is in the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.ObjectModel.Collection`1" />; otherwise, false. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.ObjectModel.Collection`1" />. The value can be null for reference types. </param> </member> <member name="M:System.Collections.ObjectModel.Collection`1.CopyTo(`0[],System.Int32)"> <summary> Copies the entire <see cref="T:System.Collections.ObjectModel.Collection`1" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ObjectModel.Collection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> The number of elements in the source <see cref="T:System.Collections.ObjectModel.Collection`1" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.ObjectModel.Collection`1.Count"> <summary> Gets the number of elements actually contained in the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> <returns> The number of elements actually contained in the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </returns> </member> <member name="M:System.Collections.ObjectModel.Collection`1.GetEnumerator"> <summary> Returns an enumerator that iterates through the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> <returns> An <see cref="T:System.Collections.Generic.IEnumerator`1" /> for the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </returns> </member> <member name="M:System.Collections.ObjectModel.Collection`1.IndexOf(`0)"> <summary> Searches for the specified object and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> <returns> The zero-based index of the first occurrence of <paramref name="item" /> within the entire <see cref="T:System.Collections.ObjectModel.Collection`1" />, if found; otherwise, -1. </returns> <param name="item"> The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> </member> <member name="M:System.Collections.ObjectModel.Collection`1.Insert(System.Int32,`0)"> <summary> Inserts an element into the <see cref="T:System.Collections.ObjectModel.Collection`1" /> at the specified index. </summary> <param name="index"> The zero-based index at which <paramref name="item" /> should be inserted. </param> <param name="item"> The object to insert. The value can be null for reference types. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count" />. </exception> </member> <member name="M:System.Collections.ObjectModel.Collection`1.InsertItem(System.Int32,`0)"> <summary> Inserts an element into the <see cref="T:System.Collections.ObjectModel.Collection`1" /> at the specified index. </summary> <param name="index"> The zero-based index at which <paramref name="item" /> should be inserted. </param> <param name="item"> The object to insert. The value can be null for reference types. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count" />. </exception> </member> <member name="P:System.Collections.ObjectModel.Collection`1.Item(System.Int32)"> <summary> Gets or sets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The zero-based index of the element to get or set. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count" />. </exception> </member> <member name="P:System.Collections.ObjectModel.Collection`1.Items"> <summary> Gets a <see cref="T:System.Collections.Generic.IList`1" /> wrapper around the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> <returns> A <see cref="T:System.Collections.Generic.IList`1" /> wrapper around the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </returns> </member> <member name="M:System.Collections.ObjectModel.Collection`1.Remove(`0)"> <summary> Removes the first occurrence of a specific object from the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> <returns>true if <paramref name="item" /> is successfully removed; otherwise, false. This method also returns false if <paramref name="item" /> was not found in the original <see cref="T:System.Collections.ObjectModel.Collection`1" />. </returns> <param name="item"> The object to remove from the <see cref="T:System.Collections.ObjectModel.Collection`1" />. The value can be null for reference types. </param> </member> <member name="M:System.Collections.ObjectModel.Collection`1.RemoveAt(System.Int32)"> <summary> Removes the element at the specified index of the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> <param name="index"> The zero-based index of the element to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count" />. </exception> </member> <member name="M:System.Collections.ObjectModel.Collection`1.RemoveItem(System.Int32)"> <summary> Removes the element at the specified index of the <see cref="T:System.Collections.ObjectModel.Collection`1" />. </summary> <param name="index"> The zero-based index of the element to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count" />. </exception> </member> <member name="M:System.Collections.ObjectModel.Collection`1.SetItem(System.Int32,`0)"> <summary> Replaces the element at the specified index. </summary> <param name="index"> The zero-based index of the element to replace. </param> <param name="item"> The new value for the element at the specified index. The value can be null for reference types. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count" />. </exception> </member> <member name="P:System.Collections.ObjectModel.Collection`1.System#Collections#Generic#ICollection{T}#IsReadOnly"></member> <member name="M:System.Collections.ObjectModel.Collection`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="array" /> does not have zero-based indexing. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. -or- The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.ObjectModel.Collection`1.System#Collections#ICollection#IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.ObjectModel.Collection`1" />, this property always returns false. </returns> </member> <member name="P:System.Collections.ObjectModel.Collection`1.System#Collections#ICollection#SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.ObjectModel.Collection`1" />, this property always returns the current instance. </returns> </member> <member name="M:System.Collections.ObjectModel.Collection`1.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an enumerator that iterates through a collection. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection. </returns> </member> <member name="M:System.Collections.ObjectModel.Collection`1.System#Collections#IList#Add(System.Object)"> <summary> Adds an item to the <see cref="T:System.Collections.IList" />. </summary> <returns> The position into which the new element was inserted. </returns> <param name="value"> The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="M:System.Collections.ObjectModel.Collection`1.System#Collections#IList#Contains(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.IList" /> contains a specific value. </summary> <returns>true if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, false. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="M:System.Collections.ObjectModel.Collection`1.System#Collections#IList#IndexOf(System.Object)"> <summary> Determines the index of a specific item in the <see cref="T:System.Collections.IList" />. </summary> <returns> The index of <paramref name="value" /> if found in the list; otherwise, -1. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="M:System.Collections.ObjectModel.Collection`1.System#Collections#IList#Insert(System.Int32,System.Object)"> <summary> Inserts an item into the <see cref="T:System.Collections.IList" /> at the specified index. </summary> <param name="index"> The zero-based index at which <paramref name="value" /> should be inserted. </param> <param name="value"> The <see cref="T:System.Object" /> to insert into the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="P:System.Collections.ObjectModel.Collection`1.System#Collections#IList#IsFixedSize"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IList" /> has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, false. In the default implementation of <see cref="T:System.Collections.ObjectModel.Collection`1" />, this property always returns false. </returns> </member> <member name="P:System.Collections.ObjectModel.Collection`1.System#Collections#IList#IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IList" /> is read-only. </summary> <returns>true if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.ObjectModel.Collection`1" />, this property always returns false. </returns> </member> <member name="P:System.Collections.ObjectModel.Collection`1.System#Collections#IList#Item(System.Int32)"> <summary> Gets or sets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The zero-based index of the element to get or set. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />. </exception> <exception cref="T:System.ArgumentException"> The property is set and <paramref name="value" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="M:System.Collections.ObjectModel.Collection`1.System#Collections#IList#Remove(System.Object)"> <summary> Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList" />. </summary> <param name="value"> The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />. </exception> </member> <member name="T:System.Collections.ObjectModel.KeyedCollection`2"> <summary> Provides the abstract base class for a collection whose keys are embedded in the values. </summary> <typeparam name="TKey"> The type of keys in the collection. </typeparam> <typeparam name="TItem"> The type of items in the collection. </typeparam> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" /> class that uses the default equality comparer. </summary> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.#ctor(System.Collections.Generic.IEqualityComparer{`0})"> <summary> Initializes a new instance of the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" /> class that uses the specified equality comparer. </summary> <param name="comparer"> The implementation of the <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> generic interface to use when comparing keys, or null to use the default equality comparer for the type of the key, obtained from <see cref="P:System.Collections.Generic.EqualityComparer`1.Default" />. </param> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.#ctor(System.Collections.Generic.IEqualityComparer{`0},System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" /> class that uses the specified equality comparer and creates a lookup dictionary when the specified threshold is exceeded. </summary> <param name="comparer"> The implementation of the <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> generic interface to use when comparing keys, or null to use the default equality comparer for the type of the key, obtained from <see cref="P:System.Collections.Generic.EqualityComparer`1.Default" />. </param> <param name="dictionaryCreationThreshold"> The number of elements the collection can hold without creating a lookup dictionary (0 creates the lookup dictionary when the first item is added), or –1 to specify that a lookup dictionary is never created. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="dictionaryCreationThreshold" /> is less than –1. </exception> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.ChangeItemKey(`1,`0)"> <summary> Changes the key associated with the specified element in the lookup dictionary. </summary> <param name="item"> The element to change the key of. </param> <param name="newKey"> The new key for <paramref name="item" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="item" /> is null. -or- <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="item" /> is not found. -or- <paramref name="key" /> already exists in the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />. </exception> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.ClearItems"> <summary> Removes all elements from the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />. </summary> </member> <member name="P:System.Collections.ObjectModel.KeyedCollection`2.Comparer"> <summary> Gets the generic equality comparer that is used to determine equality of keys in the collection. </summary> <returns> The implementation of the <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> generic interface that is used to determine equality of keys in the collection. </returns> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.Contains(`0)"> <summary> Determines whether the collection contains an element with the specified key. </summary> <returns>true if the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" /> contains an element with the specified key; otherwise, false. </returns> <param name="key"> The key to locate in the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="P:System.Collections.ObjectModel.KeyedCollection`2.Dictionary"> <summary> Gets the lookup dictionary of the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />. </summary> <returns> The lookup dictionary of the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />, if it exists; otherwise, null. </returns> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.GetKeyForItem(`1)"> <summary> When implemented in a derived class, extracts the key from the specified element. </summary> <returns> The key for the specified element. </returns> <param name="item"> The element from which to extract the key. </param> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.InsertItem(System.Int32,`1)"> <summary> Inserts an element into the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" /> at the specified index. </summary> <param name="index"> The zero-based index at which <paramref name="item" /> should be inserted. </param> <param name="item"> The object to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than 0. -or- <paramref name="index" /> is greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count" />. </exception> </member> <member name="P:System.Collections.ObjectModel.KeyedCollection`2.Item(`0)"> <summary> Gets the element with the specified key. </summary> <returns> The element with the specified key. If an element with the specified key is not found, an exception is thrown. </returns> <param name="key"> The key of the element to get. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> <exception cref="T:System.Collections.Generic.KeyNotFoundException"> An element with the specified key does not exist in the collection. </exception> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.Remove(`0)"> <summary> Removes the element with the specified key from the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />. </summary> <returns>true if the element is successfully removed; otherwise, false. This method also returns false if <paramref name="key" /> is not found in the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />. </returns> <param name="key"> The key of the element to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.RemoveItem(System.Int32)"> <summary> Removes the element at the specified index of the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />. </summary> <param name="index"> The index of the element to remove. </param> </member> <member name="M:System.Collections.ObjectModel.KeyedCollection`2.SetItem(System.Int32,`1)"> <summary> Replaces the item at the specified index with the specified item. </summary> <param name="index"> The zero-based index of the item to be replaced. </param> <param name="item"> The new item. </param> </member> <member name="T:System.Collections.ObjectModel.ReadOnlyCollection`1"> <summary> Provides the base class for a generic read-only collection. </summary> <typeparam name="T"> The type of elements in the collection. </typeparam> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.#ctor(System.Collections.Generic.IList{`0})"> <summary> Initializes a new instance of the <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> class that is a read-only wrapper around the specified list. </summary> <param name="list"> The list to wrap. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="list" /> is null. </exception> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.Contains(`0)"> <summary> Determines whether an element is in the <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />. </summary> <returns>true if <paramref name="value" /> is found in the <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />; otherwise, false. </returns> <param name="value"> The object to locate in the <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />. The value can be null for reference types. </param> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.CopyTo(`0[],System.Int32)"> <summary> Copies the entire <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.ObjectModel.ReadOnlyCollection`1.Count"> <summary> Gets the number of elements contained in the <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> instance. </summary> <returns> The number of elements contained in the <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> instance. </returns> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.GetEnumerator"> <summary> Returns an enumerator that iterates through the <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />. </summary> <returns> An <see cref="T:System.Collections.Generic.IEnumerator`1" /> for the <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />. </returns> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.IndexOf(`0)"> <summary> Searches for the specified object and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />. </summary> <returns> The zero-based index of the first occurrence of <paramref name="item" /> within the entire <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />, if found; otherwise, -1. </returns> <param name="value"> The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be null for reference types. </param> </member> <member name="P:System.Collections.ObjectModel.ReadOnlyCollection`1.Item(System.Int32)"> <summary> Gets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The zero-based index of the element to get. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.ObjectModel.ReadOnlyCollection`1.Count" />. </exception> </member> <member name="P:System.Collections.ObjectModel.ReadOnlyCollection`1.Items"> <summary> Returns the <see cref="T:System.Collections.Generic.IList`1" /> that the <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> wraps. </summary> <returns> The <see cref="T:System.Collections.Generic.IList`1" /> that the <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> wraps. </returns> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#Generic#ICollection{T}#Add(`0)"></member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#Generic#ICollection{T}#Clear"></member> <member name="P:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#Generic#ICollection{T}#IsReadOnly"></member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#Generic#ICollection{T}#Remove(`0)"></member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#Generic#IList{T}#Insert(System.Int32,`0)"></member> <member name="P:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#Generic#IList{T}#Item(System.Int32)"></member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#Generic#IList{T}#RemoveAt(System.Int32)"></member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="array" /> does not have zero-based indexing. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. -or- The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#ICollection#IsSynchronized"> <summary> Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe). </summary> <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />, this property always returns false. </returns> </member> <member name="P:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#ICollection#SyncRoot"> <summary> Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. </summary> <returns> An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />, this property always returns the current instance. </returns> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an enumerator that iterates through a collection. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection. </returns> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IList#Add(System.Object)"> <summary> Adds an item to the <see cref="T:System.Collections.IList" />. This implementation always throws <see cref="T:System.NotSupportedException" />. </summary> <returns> The position into which the new element was inserted. </returns> <param name="value"> The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.NotSupportedException"> Always thrown. </exception> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IList#Clear"> <summary> Removes all items from the <see cref="T:System.Collections.IList" />. This implementation always throws <see cref="T:System.NotSupportedException" />. </summary> <exception cref="T:System.NotSupportedException"> Always thrown. </exception> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IList#Contains(System.Object)"> <summary> Determines whether the <see cref="T:System.Collections.IList" /> contains a specific value. </summary> <returns>true if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, false. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not of the type specified for the generic type parameter <paramref name="T" />. </exception> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IList#IndexOf(System.Object)"> <summary> Determines the index of a specific item in the <see cref="T:System.Collections.IList" />. </summary> <returns> The index of <paramref name="value" /> if found in the list; otherwise, -1. </returns> <param name="value"> The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="value" /> is not of the type specified for the generic type parameter <paramref name="T" />. </exception> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IList#Insert(System.Int32,System.Object)"> <summary> Inserts an item to the <see cref="T:System.Collections.IList" /> at the specified index. This implementation always throws <see cref="T:System.NotSupportedException" />. </summary> <param name="index"> The zero-based index at which <paramref name="value" /> should be inserted. </param> <param name="value"> The <see cref="T:System.Object" /> to insert into the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.NotSupportedException"> Always thrown. </exception> </member> <member name="P:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IList#IsFixedSize"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IList" /> has a fixed size. </summary> <returns>true if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, false. In the default implementation of <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />, this property always returns true. </returns> </member> <member name="P:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IList#IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Collections.IList" /> is read-only. </summary> <returns>true if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />, this property always returns true. </returns> </member> <member name="P:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IList#Item(System.Int32)"> <summary> Gets or sets the element at the specified index. </summary> <returns> The element at the specified index. </returns> <param name="index"> The zero-based index of the element to get. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />. </exception> <exception cref="T:System.NotSupportedException"> Always thrown, if the property is set. </exception> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IList#Remove(System.Object)"> <summary> Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList" />. This implementation always throws <see cref="T:System.NotSupportedException" />. </summary> <param name="value"> The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.IList" />. </param> <exception cref="T:System.NotSupportedException"> Always thrown. </exception> </member> <member name="M:System.Collections.ObjectModel.ReadOnlyCollection`1.System#Collections#IList#RemoveAt(System.Int32)"> <summary> Removes the <see cref="T:System.Collections.IList" /> item at the specified index. This implementation always throws <see cref="T:System.NotSupportedException" />. </summary> <param name="index"> The zero-based index of the item to remove. </param> <exception cref="T:System.NotSupportedException"> Always thrown. </exception> </member> <member name="T:System.Configuration.Assemblies.AssemblyHash"> <summary> Represents a hash of an assembly manifest's contents. </summary> </member> <member name="M:System.Configuration.Assemblies.AssemblyHash.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Configuration.Assemblies.AssemblyHash" /> structure with the specified hash value. The hash algorithm defaults to <see cref="F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA1" />. </summary> <param name="value"> The hash value. </param> </member> <member name="M:System.Configuration.Assemblies.AssemblyHash.#ctor(System.Configuration.Assemblies.AssemblyHashAlgorithm,System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Configuration.Assemblies.AssemblyHash" /> structure with the specified hash algorithm and the hash value. </summary> <param name="algorithm"> The algorithm used to generate the hash. Values for this parameter come from the <see cref="T:System.Configuration.Assemblies.AssemblyHashAlgorithm" /> enumeration. </param> <param name="value"> The hash value. </param> </member> <member name="P:System.Configuration.Assemblies.AssemblyHash.Algorithm"> <summary> Gets or sets the hash algorithm. </summary> <returns> An assembly hash algorithm. </returns> </member> <member name="M:System.Configuration.Assemblies.AssemblyHash.Clone"> <summary> Clones this object. </summary> <returns> An exact copy of this object. </returns> </member> <member name="F:System.Configuration.Assemblies.AssemblyHash.Empty"> <summary> An empty <see cref="T:System.Configuration.Assemblies.AssemblyHash" /> object. </summary> </member> <member name="M:System.Configuration.Assemblies.AssemblyHash.GetValue"> <summary> Gets the hash value. </summary> <returns> The hash value. </returns> </member> <member name="M:System.Configuration.Assemblies.AssemblyHash.SetValue(System.Byte[])"> <summary> Sets the hash value. </summary> <param name="value"> The hash value. </param> </member> <member name="T:System.Configuration.Assemblies.AssemblyHashAlgorithm"> <summary> Specifies all the hash algorithms used for hashing files and for generating the strong name. </summary> </member> <member name="F:System.Configuration.Assemblies.AssemblyHashAlgorithm.None"> <summary> A mask indicating that there is no hash algorithm. If you specify None for a multi-module assembly, the common language runtime defaults to the SHA1 algorithm, since multi-module assemblies need to generate a hash. </summary> </member> <member name="F:System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5"> <summary> Retrieves the MD5 message-digest algorithm. MD5 was developed by Rivest in 1991. It is basically MD4 with safety-belts and while it is slightly slower than MD4, it helps provide more security. The algorithm consists of four distinct rounds, which has a slightly different design from that of MD4. Message-digest size, as well as padding requirements, remain the same. </summary> </member> <member name="F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA1"> <summary> A mask used to retrieve a revision of the Secure Hash Algorithm that corrects an unpublished flaw in SHA. </summary> </member> <member name="T:System.Configuration.Assemblies.AssemblyVersionCompatibility"> <summary> Defines the different types of assembly version compatibility. This feature is not available in version 1.0 of the .NET Framework. </summary> </member> <member name="F:System.Configuration.Assemblies.AssemblyVersionCompatibility.SameMachine"> <summary> The assembly cannot execute with other versions if they are executing on the same machine. </summary> </member> <member name="F:System.Configuration.Assemblies.AssemblyVersionCompatibility.SameProcess"> <summary> The assembly cannot execute with other versions if they are executing in the same process. </summary> </member> <member name="F:System.Configuration.Assemblies.AssemblyVersionCompatibility.SameDomain"> <summary> The assembly cannot execute with other versions if they are executing in the same application domain. </summary> </member> <member name="T:System.Deployment.Internal.InternalActivationContextHelper"> <summary> Provides access to data from an <see cref="T:System.ActivationContext" /> object. </summary> </member> <member name="M:System.Deployment.Internal.InternalActivationContextHelper.GetActivationContextData(System.ActivationContext)"> <summary> Gets the contents of the application manifest from an <see cref="T:System.ActivationContext" /> object. </summary> <returns> The application manifest that is contained by the <see cref="T:System.ActivationContext" /> object. </returns> <param name="appInfo"> The object containing the manifest. </param> </member> <member name="M:System.Deployment.Internal.InternalActivationContextHelper.GetApplicationComponentManifest(System.ActivationContext)"> <summary> Gets the manifest of the last deployment component in an <see cref="T:System.ActivationContext" /> object. </summary> <returns> The manifest of the last deployment component in the <see cref="T:System.ActivationContext" /> object. </returns> <param name="appInfo"> The object containing the manifest. </param> </member> <member name="M:System.Deployment.Internal.InternalActivationContextHelper.GetDeploymentComponentManifest(System.ActivationContext)"> <summary> Gets the manifest of the first deployment component in an <see cref="T:System.ActivationContext" /> object. </summary> <returns> The manifest of the first deployment component in the <see cref="T:System.ActivationContext" /> object. </returns> <param name="appInfo"> The object containing the manifest. </param> </member> <member name="M:System.Deployment.Internal.InternalActivationContextHelper.IsFirstRun(System.ActivationContext)"> <summary> Gets a value indicating whether this is the first time this <see cref="T:System.ActivationContext" /> object has been run. </summary> <returns>true if the <see cref="T:System.ActivationContext" /> indicates it is running for the first time; otherwise, false. </returns> <param name="appInfo"> The object to examine. </param> </member> <member name="M:System.Deployment.Internal.InternalActivationContextHelper.PrepareForExecution(System.ActivationContext)"> <summary> Informs an <see cref="T:System.ActivationContext" /> to get ready to be run. </summary> <param name="appInfo"> The object to inform. </param> </member> <member name="T:System.Deployment.Internal.InternalApplicationIdentityHelper"> <summary> Provides access to internal properties of an <see cref="T:System.ApplicationIdentity" /> object. </summary> </member> <member name="M:System.Deployment.Internal.InternalApplicationIdentityHelper.GetInternalAppId(System.ApplicationIdentity)"> <summary> Gets an IDefinitionAppId Interface representing the unique identifier of an <see cref="T:System.ApplicationIdentity" /> object. </summary> <returns> The unique identifier held by the <see cref="T:System.ApplicationIdentity" /> object. </returns> <param name="id"> The object from which to extract the identifier. </param> </member> <member name="M:System.Deployment.Internal.InternalActivationContextHelper.GetApplicationManifestBytes(System.ActivationContext)"> <summary> Gets a byte array containing the raw content of the application manifest.. </summary> <returns> An array containing the application manifest as raw data. </returns> <param name="appInfo"> The object to get bytes from. </param> </member> <member name="M:System.Deployment.Internal.InternalActivationContextHelper.GetDeploymentManifestBytes(System.ActivationContext)"> <summary> Gets a byte array containing the raw content of the deployment manifest. </summary> <returns> An array containing the deployment manifest as raw data. </returns> <param name="appInfo"> The object to get bytes from. </param> </member> <member name="T:System.Diagnostics.ConditionalAttribute"> <summary> Indicates to compilers that a method call or attribute should be ignored unless a specified conditional compilation symbol is defined. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.ConditionalAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.ConditionalAttribute" /> class. </summary> <param name="conditionString"> A string that specifies the case-sensitive conditional compilation symbol that is associated with the attribute. </param> </member> <member name="P:System.Diagnostics.ConditionalAttribute.ConditionString"> <summary> Gets the conditional compilation symbol that is associated with the <see cref="T:System.Diagnostics.ConditionalAttribute" /> attribute. </summary> <returns> A string that specifies the case-sensitive conditional compilation symbol that is associated with the <see cref="T:System.Diagnostics.ConditionalAttribute" /> attribute. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Diagnostics.DebuggableAttribute"> <summary> Modifies code generation for runtime just-in-time (JIT) debugging. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.DebuggableAttribute.#ctor(System.Boolean,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggableAttribute" /> class, using the specified tracking and optimization options for the just-in-time (JIT) compiler. </summary> <param name="isJITTrackingEnabled">true to enable debugging; otherwise, false. </param> <param name="isJITOptimizerDisabled">true to disable the optimizer for execution; otherwise, false. </param> </member> <member name="M:System.Diagnostics.DebuggableAttribute.#ctor(System.Diagnostics.DebuggableAttribute.DebuggingModes)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggableAttribute" /> class, using the specified debugging modes for the just-in-time (JIT) compiler. </summary> <param name="modes"> A bitwise combination of the <see cref="T:System.Diagnostics.DebuggableAttribute.DebuggingModes" /> values specifying the debugging mode for the JIT compiler. </param> </member> <member name="P:System.Diagnostics.DebuggableAttribute.DebuggingFlags"> <summary> Gets the debugging modes for the attribute. </summary> <returns> A bitwise combination of the <see cref="T:System.Diagnostics.DebuggableAttribute.DebuggingModes" /> values describing the debugging mode for the just-in-time (JIT) compiler. The default is <see cref="F:System.Diagnostics.DebuggableAttribute.DebuggingModes.Default" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggableAttribute.IsJITOptimizerDisabled"> <summary> Gets a value that indicates whether the runtime optimizer is disabled. </summary> <returns>true if the runtime optimizer is disabled; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggableAttribute.IsJITTrackingEnabled"> <summary> Gets a value that indicates whether the runtime will track information during code generation for the debugger. </summary> <returns>true if the runtime will track information during code generation for the debugger; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Diagnostics.DebuggableAttribute.DebuggingModes"> <summary> Specifies the debugging mode for the just-in-time (JIT) compiler. </summary> </member> <member name="F:System.Diagnostics.DebuggableAttribute.DebuggingModes.None"> <summary> In the .NET Framework version 2.0, JIT tracking information is always generated, and this flag has the same effect as <see cref="F:System.Diagnostics.DebuggableAttribute.DebuggingModes.Default" /> with the exception of the <see cref="P:System.Diagnostics.DebuggableAttribute.IsJITTrackingEnabled" /> property being false, which has no meaning in version 2.0. </summary> </member> <member name="F:System.Diagnostics.DebuggableAttribute.DebuggingModes.Default"> <summary> Instructs the just-in-time (JIT) compiler to use its default behavior, which includes enabling optimizations, disabling Edit and Continue support, and using symbol store sequence points if present. In the .NET Framework version 2.0, JIT tracking information, the Microsoft intermediate language (MSIL) offset to the native-code offset within a method, is always generated. </summary> </member> <member name="F:System.Diagnostics.DebuggableAttribute.DebuggingModes.DisableOptimizations"> <summary> Disable optimizations performed by the compiler to make your output file smaller, faster, and more efficient. Optimizations result in code rearrangement in the output file, which can make debugging difficult. Typically optimization should be disabled while debugging. </summary> </member> <member name="F:System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints"> <summary> Use the implicit MSIL sequence points, not the program database (PDB) sequence points. The symbolic information normally includes at least one Microsoft intermediate language (MSIL) offset for each source line. When the just-in-time (JIT) compiler is about to compile a method, it asks the profiling services for a list of MSIL offsets that should be preserved. These MSIL offsets are called sequence points. </summary> </member> <member name="F:System.Diagnostics.DebuggableAttribute.DebuggingModes.EnableEditAndContinue"> <summary> Enable edit and continue. Edit and continue enables you to make changes to your source code while your program is in break mode. The ability to edit and continue is compiler dependent. </summary> </member> <member name="T:System.Diagnostics.Debugger"> <summary> Enables communication with a debugger. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.Debugger.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.Debugger" /> class. </summary> </member> <member name="M:System.Diagnostics.Debugger.Break"> <summary> Signals a breakpoint to an attached debugger. </summary> <exception cref="T:System.Security.SecurityException"> The <see cref="T:System.Security.Permissions.UIPermission" /> is not set to break into the debugger. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="F:System.Diagnostics.Debugger.DefaultCategory"> <summary> Represents the default category of message with a constant. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.Diagnostics.Debugger.IsAttached"> <summary> Gets a value that indicates whether a debugger is attached to the process. </summary> <returns>true if a debugger is attached; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.Debugger.IsLogging"> <summary> Checks to see if logging is enabled by an attached debugger. </summary> <returns>true if a debugger is attached and logging is enabled; otherwise, false. The attached debugger is the registered managed debugger in the DbgManagedDebugger registry key. For more information on this key, see Enabling JIT-attach Debugging. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.Debugger.Launch"> <summary> Launches and attaches a debugger to the process. </summary> <returns>true if the startup is successful or if the debugger is already attached; otherwise, false. </returns> <exception cref="T:System.Security.SecurityException"> The <see cref="T:System.Security.Permissions.UIPermission" /> is not set to start the debugger. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Diagnostics.Debugger.Log(System.Int32,System.String,System.String)"> <summary> Posts a message for the attached debugger. </summary> <param name="level"> A description of the importance of the message. </param> <param name="category"> The category of the message. </param> <param name="message"> The message to show. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.Diagnostics.DebuggerBrowsableAttribute"> <summary> Determines if and how a member is displayed in the debugger variable windows. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.DebuggerBrowsableAttribute.#ctor(System.Diagnostics.DebuggerBrowsableState)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerBrowsableAttribute" /> class. </summary> <param name="state"> One of the <see cref="T:System.Diagnostics.DebuggerBrowsableState" /> values that specifies how to display the member. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="state" /> is not one of the <see cref="T:System.Diagnostics.DebuggerBrowsableState" /> values. </exception> </member> <member name="P:System.Diagnostics.DebuggerBrowsableAttribute.State"> <summary> Gets the display state for the attribute. </summary> <returns> One of the <see cref="T:System.Diagnostics.DebuggerBrowsableState" /> values. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Diagnostics.DebuggerBrowsableState"> <summary> Provides display instructions for the debugger. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.Diagnostics.DebuggerBrowsableState.Never"> <summary> Never show the element. </summary> </member> <member name="F:System.Diagnostics.DebuggerBrowsableState.Collapsed"> <summary> Show the element as collapsed. </summary> </member> <member name="F:System.Diagnostics.DebuggerBrowsableState.RootHidden"> <summary> Do not display the root element; display the child elements if the element is a collection or array of items. </summary> </member> <member name="T:System.Diagnostics.DebuggerDisplayAttribute"> <summary> Determines how a class or field is displayed in the debugger variable windows. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.DebuggerDisplayAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerDisplayAttribute" /> class. </summary> <param name="value"> The string to be displayed in the value column for instances of the type; an empty string ("") causes the value column to be hidden. </param> </member> <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Name"> <summary> Gets or sets the name to display in the debugger variable windows. </summary> <returns> The name to display in the debugger variable windows. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Target"> <summary> Gets or sets the type of the attribute's target. </summary> <returns> A <see cref="T:System.Type" /> object that identifies the attribute's target type. </returns> <exception cref="T:System.ArgumentNullException"> <see cref="P:System.Diagnostics.DebuggerDisplayAttribute.Target" /> is set to null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggerDisplayAttribute.TargetTypeName"> <summary> Gets or sets the type name of the attribute's target. </summary> <returns> The name of the attribute's target type. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Type"> <summary> Gets or sets the string to display in the type column of the debugger variable windows. </summary> <returns> The string to display in the type column of the debugger variable windows. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Value"> <summary> Gets the string to display in the value column of the debugger variable windows. </summary> <returns> The string to display in the value column of the debugger variable. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Diagnostics.DebuggerHiddenAttribute"> <summary> Specifies the <see cref="T:System.Diagnostics.DebuggerHiddenAttribute" />. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.DebuggerHiddenAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerHiddenAttribute" /> class. </summary> </member> <member name="T:System.Diagnostics.DebuggerNonUserCodeAttribute"> <summary> Identifies a type or member that is not part of the user code for an application. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.DebuggerNonUserCodeAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerNonUserCodeAttribute" /> class. </summary> </member> <member name="T:System.Diagnostics.DebuggerStepperBoundaryAttribute"> <summary> Indicates the code following the attribute is to be executed in run, not step, mode. </summary> </member> <member name="M:System.Diagnostics.DebuggerStepperBoundaryAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerStepperBoundaryAttribute" /> class. </summary> </member> <member name="T:System.Diagnostics.DebuggerStepThroughAttribute"> <summary> Specifies the <see cref="T:System.Diagnostics.DebuggerStepThroughAttribute" />. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.DebuggerStepThroughAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerStepThroughAttribute" /> class. </summary> </member> <member name="T:System.Diagnostics.DebuggerTypeProxyAttribute"> <summary> Specifies the display proxy for a type. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.DebuggerTypeProxyAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerTypeProxyAttribute" /> class using the type name of the proxy. </summary> <param name="typeName"> The type name of the proxy type. </param> </member> <member name="M:System.Diagnostics.DebuggerTypeProxyAttribute.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerTypeProxyAttribute" /> class using the type of the proxy. </summary> <param name="type"> A <see cref="T:System.Type" /> object that represents the proxy type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> </member> <member name="P:System.Diagnostics.DebuggerTypeProxyAttribute.ProxyTypeName"> <summary> Gets the type name of the proxy type. </summary> <returns> The type name of the proxy type. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggerTypeProxyAttribute.Target"> <summary> Gets or sets the target type for the attribute. </summary> <returns> A <see cref="T:System.Type" /> object identifying the target type for the attribute. </returns> <exception cref="T:System.ArgumentNullException"> <see cref="P:System.Diagnostics.DebuggerTypeProxyAttribute.Target" /> is set to null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggerTypeProxyAttribute.TargetTypeName"> <summary> Gets or sets the name of the target type. </summary> <returns> The name of the target type. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Diagnostics.DebuggerVisualizerAttribute"> <summary> Specifies that the type has a visualizer. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute" /> class, specifying the type name of the visualizer. </summary> <param name="visualizerTypeName"> The fully qualified type name of the visualizer. </param> </member> <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute" /> class, specifying the type name of the visualizer and the type name of the visualizer object source. </summary> <param name="visualizerTypeName"> The fully qualified type name of the visualizer. </param> <param name="visualizerObjectSourceTypeName"> The fully qualified type name of the visualizer object source. </param> </member> <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String,System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute" /> class, specifying the type name of the visualizer and the type of the visualizer object source. </summary> <param name="visualizerTypeName"> The fully qualified type name of the visualizer. </param> <param name="visualizerObjectSource"> The type of the visualizer object source. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="visualizerObjectSource" /> is null. </exception> </member> <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute" /> class, specifying the type of the visualizer. </summary> <param name="visualizer"> The type of the visualizer. </param> <exception cref="T:System.ArgumentNullException"> v<paramref name="isualizer" /> is null. </exception> </member> <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute" /> class, specifying the type of the visualizer and the type name of the visualizer object source. </summary> <param name="visualizer"> The type of the visualizer. </param> <param name="visualizerObjectSourceTypeName"> The fully qualified type name of the visualizer object source. </param> <exception cref="T:System.ArgumentNullException"> v<paramref name="isualizer" /> is null. </exception> </member> <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type,System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute" /> class, specifying the type of the visualizer and the type of the visualizer object source. </summary> <param name="visualizer"> The type of the visualizer. </param> <param name="visualizerObjectSource"> The type of the visualizer object source. </param> <exception cref="T:System.ArgumentNullException"> v<paramref name="isualizer" /> is null. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="visualizerObjectSource" /> is null. </exception> </member> <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.Description"> <summary> Gets or sets the description of the visualizer. </summary> <returns> The description of the visualizer. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.Target"> <summary> Gets or sets the target type when the attribute is applied at the assembly level. </summary> <returns> The type that is the target of the visualizer. </returns> <exception cref="T:System.ArgumentNullException"> The value cannot be set because it is null. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.TargetTypeName"> <summary> Gets or sets the fully qualified type name when the attribute is applied at the assembly level. </summary> <returns> The fully qualified type name of the target type. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.VisualizerObjectSourceTypeName"> <summary> Gets the fully qualified type name of the visualizer object source. </summary> <returns> The fully qualified type name of the visualizer object source. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.VisualizerTypeName"> <summary> Gets the fully qualified type name of the visualizer. </summary> <returns> The fully qualified visualizer type name. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Diagnostics.StackFrame"> <summary> Provides information about a <see cref="T:System.Diagnostics.StackFrame" />, which represents a function call on the call stack for the current thread. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Diagnostics.StackFrame.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackFrame" /> class. </summary> </member> <member name="M:System.Diagnostics.StackFrame.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackFrame" /> class, optionally capturing source information. </summary> <param name="fNeedFileInfo">true to capture the file name, line number, and column number of the stack frame; otherwise, false. </param> </member> <member name="M:System.Diagnostics.StackFrame.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackFrame" /> class that corresponds to a frame above the current stack frame. </summary> <param name="skipFrames"> The number of frames up the stack to skip. </param> </member> <member name="M:System.Diagnostics.StackFrame.#ctor(System.Int32,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackFrame" /> class that corresponds to a frame above the current stack frame, optionally capturing source information. </summary> <param name="skipFrames"> The number of frames up the stack to skip. </param> <param name="fNeedFileInfo">true to capture the file name, line number, and column number of the stack frame; otherwise, false. </param> </member> <member name="M:System.Diagnostics.StackFrame.#ctor(System.String,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackFrame" /> class that contains only the given file name and line number. </summary> <param name="fileName"> The file name. </param> <param name="lineNumber"> The line number in the specified file. </param> </member> <member name="M:System.Diagnostics.StackFrame.#ctor(System.String,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackFrame" /> class that contains only the given file name, line number, and column number. </summary> <param name="fileName"> The file name. </param> <param name="lineNumber"> The line number in the specified file. </param> <param name="colNumber"> The column number in the specified file. </param> </member> <member name="M:System.Diagnostics.StackFrame.GetFileColumnNumber"> <summary> Gets the column number in the file that contains the code that is executing. This information is typically extracted from the debugging symbols for the executable. </summary> <returns> The file column number.-or- Zero if the file column number cannot be determined. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Diagnostics.StackFrame.GetFileLineNumber"> <summary> Gets the line number in the file that contains the code that is executing. This information is typically extracted from the debugging symbols for the executable. </summary> <returns> The file line number.-or- Zero if the file line number cannot be determined. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Diagnostics.StackFrame.GetFileName"> <summary> Gets the file name that contains the code that is executing. This information is typically extracted from the debugging symbols for the executable. </summary> <returns> The file name.-or- null if the file name cannot be determined. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Diagnostics.StackFrame.GetILOffset"> <summary> Gets the offset from the start of the Microsoft intermediate language (MSIL) code for the method that is executing. This offset might be an approximation depending on whether the just-in-time (JIT) compiler is generating debugging code or not. The generation of this debugging information is controlled by the <see cref="T:System.Diagnostics.DebuggableAttribute" />. </summary> <returns> The offset from the start of the MSIL code for the method that is executing. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Diagnostics.StackFrame.GetMethod"> <summary> Gets the method in which the frame is executing. </summary> <returns> The method in which the frame is executing. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Diagnostics.StackFrame.GetNativeOffset"> <summary> Gets the offset from the start of the native just-in-time (JIT)-compiled code for the method that is being executed. The generation of this debugging information is controlled by the <see cref="T:System.Diagnostics.DebuggableAttribute" /> class. </summary> <returns> The offset from the start of the JIT-compiled code for the method that is being executed. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.Diagnostics.StackFrame.OFFSET_UNKNOWN"> <summary> Defines the value that is returned from the <see cref="M:System.Diagnostics.StackFrame.GetNativeOffset" /> or <see cref="M:System.Diagnostics.StackFrame.GetILOffset" /> method when the native or Microsoft intermediate language (MSIL) offset is unknown. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.StackFrame.ToString"> <summary> Builds a readable representation of the stack trace. </summary> <returns> A readable representation of the stack trace. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="T:System.Diagnostics.StackTrace"> <summary> Represents a stack trace, which is an ordered collection of one or more stack frames. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Diagnostics.StackTrace.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackTrace" /> class from the caller's frame. </summary> </member> <member name="M:System.Diagnostics.StackTrace.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackTrace" /> class from the caller's frame, optionally capturing source information. </summary> <param name="fNeedFileInfo">true to capture the file name, line number, and column number; otherwise, false. </param> </member> <member name="M:System.Diagnostics.StackTrace.#ctor(System.Diagnostics.StackFrame)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackTrace" /> class that contains a single frame. </summary> <param name="frame"> The frame that the <see cref="T:System.Diagnostics.StackTrace" /> object should contain. </param> </member> <member name="M:System.Diagnostics.StackTrace.#ctor(System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackTrace" /> class using the provided exception object. </summary> <param name="e"> The exception object from which to construct the stack trace. </param> <exception cref="T:System.ArgumentNullException"> The parameter <paramref name="e" /> is null. </exception> </member> <member name="M:System.Diagnostics.StackTrace.#ctor(System.Exception,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackTrace" /> class, using the provided exception object and optionally capturing source information. </summary> <param name="e"> The exception object from which to construct the stack trace. </param> <param name="fNeedFileInfo">true to capture the file name, line number, and column number; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The parameter <paramref name="e" /> is null. </exception> </member> <member name="M:System.Diagnostics.StackTrace.#ctor(System.Exception,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackTrace" /> class using the provided exception object and skipping the specified number of frames. </summary> <param name="e"> The exception object from which to construct the stack trace. </param> <param name="skipFrames"> The number of frames up the stack from which to start the trace. </param> <exception cref="T:System.ArgumentNullException"> The parameter <paramref name="e" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="skipFrames" /> parameter is negative. </exception> </member> <member name="M:System.Diagnostics.StackTrace.#ctor(System.Exception,System.Int32,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackTrace" /> class using the provided exception object, skipping the specified number of frames and optionally capturing source information. </summary> <param name="e"> The exception object from which to construct the stack trace. </param> <param name="skipFrames"> The number of frames up the stack from which to start the trace. </param> <param name="fNeedFileInfo">true to capture the file name, line number, and column number; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The parameter <paramref name="e" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="skipFrames" /> parameter is negative. </exception> </member> <member name="M:System.Diagnostics.StackTrace.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackTrace" /> class from the caller's frame, skipping the specified number of frames. </summary> <param name="skipFrames"> The number of frames up the stack from which to start the trace. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="skipFrames" /> parameter is negative. </exception> </member> <member name="M:System.Diagnostics.StackTrace.#ctor(System.Int32,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackTrace" /> class from the caller's frame, skipping the specified number of frames and optionally capturing source information. </summary> <param name="skipFrames"> The number of frames up the stack from which to start the trace. </param> <param name="fNeedFileInfo">true to capture the file name, line number, and column number; otherwise, false. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="skipFrames" /> parameter is negative. </exception> </member> <member name="M:System.Diagnostics.StackTrace.#ctor(System.Threading.Thread,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.StackTrace" /> class for a specific thread, optionally capturing source information. </summary> <param name="targetThread"> The thread whose stack trace is requested. </param> <param name="needFileInfo">true to capture the file name, line number, and column number; otherwise, false. </param> <exception cref="T:System.Threading.ThreadStateException"> The thread <paramref name="targetThread" /> is not suspended. </exception> </member> <member name="P:System.Diagnostics.StackTrace.FrameCount"> <summary> Gets the number of frames in the stack trace. </summary> <returns> The number of frames in the stack trace. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Diagnostics.StackTrace.GetFrame(System.Int32)"> <summary> Gets the specified stack frame. </summary> <returns> The specified stack frame. </returns> <param name="index"> The index of the stack frame requested. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Diagnostics.StackTrace.GetFrames"> <summary> Returns a copy of all stack frames in the current stack trace. </summary> <returns> An array of type <see cref="T:System.Diagnostics.StackFrame" /> representing the function calls in the stack trace. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.Diagnostics.StackTrace.METHODS_TO_SKIP"> <summary> Defines the default for the number of methods to omit from the stack trace. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Diagnostics.StackTrace.ToString"> <summary> Builds a readable representation of the stack trace. </summary> <returns> A readable representation of the stack trace. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute"> <summary> Suppresses reporting of a specific static analysis tool rule violation, allowing multiple suppressions on a single code artifact. </summary> </member> <member name="M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute" /> class, specifying the category of the static analysis tool and the identifier for an analysis rule. </summary> <param name="category"> The category for the attribute. </param> <param name="checkId"> The identifier of the analysis tool rule the attribute applies to. </param> </member> <member name="P:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.Category"> <summary> Gets the category identifying the classification of the attribute. </summary> <returns> The category identifying the attribute. </returns> </member> <member name="P:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.CheckId"> <summary> Gets the identifier of the static analysis tool rule to be suppressed. </summary> <returns> The identifier of the static analysis tool rule to be suppressed. </returns> </member> <member name="P:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.Justification"> <summary> Gets or sets the justification for suppressing the code analysis message. </summary> <returns> The justification for suppressing the message. </returns> </member> <member name="P:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.MessageId"> <summary> Gets or sets an optional argument expanding on exclusion criteria. </summary> <returns> A string containing the expanded exclusion criteria. </returns> </member> <member name="P:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.Scope"> <summary> Gets or sets the scope of the code that is relevant for the attribute. </summary> <returns> The scope of the code that is relevant for the attribute. </returns> </member> <member name="P:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.Target"> <summary> Gets or sets a fully qualified path that represents the target of the attribute. </summary> <returns> A fully qualified path that represents the target of the attribute. </returns> </member> <member name="T:System.Diagnostics.SymbolStore.ISymbolBinder"> <summary> Represents a symbol binder for managed code. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolBinder.GetReader(System.Int32,System.String,System.String)"> <summary> Gets the interface of the symbol reader for the current file. </summary> <returns> The <see cref="T:System.Diagnostics.SymbolStore.ISymbolReader" /> interface that reads the debugging symbols. </returns> <param name="importer"> The metadata import interface. </param> <param name="filename"> The name of the file for which the reader interface is required. </param> <param name="searchPath"> The search path used to locate the symbol file. </param> </member> <member name="T:System.Diagnostics.SymbolStore.ISymbolBinder1"> <summary> Represents a symbol binder for managed code. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolBinder1.GetReader(System.IntPtr,System.String,System.String)"> <summary> Gets the interface of the symbol reader for the current file. </summary> <returns> The <see cref="T:System.Diagnostics.SymbolStore.ISymbolReader" /> interface that reads the debugging symbols. </returns> <param name="importer"> An <see cref="T:System.IntPtr" /> that refers to the metadata import interface. </param> <param name="filename"> The name of the file for which the reader interface is required. </param> <param name="searchPath"> The search path used to locate the symbol file. </param> </member> <member name="T:System.Diagnostics.SymbolStore.ISymbolDocument"> <summary> Represents a document referenced by a symbol store. </summary> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolDocument.CheckSumAlgorithmId"> <summary> Gets the checksum algorithm identifier. </summary> <returns> A GUID identifying the checksum algorithm. The value is all zeros, if there is no checksum. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolDocument.DocumentType"> <summary> Gets the type of the current document. </summary> <returns> The type of the current document. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolDocument.FindClosestLine(System.Int32)"> <summary> Returns the closest line that is a sequence point, given a line in the current document that might or might not be a sequence point. </summary> <returns> The closest line that is a sequence point. </returns> <param name="line"> The specified line in the document. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolDocument.GetCheckSum"> <summary> Gets the checksum. </summary> <returns> The checksum. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolDocument.GetSourceRange(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Gets the embedded document source for the specified range. </summary> <returns> The document source for the specified range. </returns> <param name="startLine"> The starting line in the current document. </param> <param name="startColumn"> The starting column in the current document. </param> <param name="endLine"> The ending line in the current document. </param> <param name="endColumn"> The ending column in the current document. </param> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolDocument.HasEmbeddedSource"> <summary> Checks whether the current document is stored in the symbol store. </summary> <returns>true if the current document is stored in the symbol store; otherwise, false. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolDocument.Language"> <summary> Gets the language of the current document. </summary> <returns> The language of the current document. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolDocument.LanguageVendor"> <summary> Gets the language vendor of the current document. </summary> <returns> The language vendor of the current document. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolDocument.SourceLength"> <summary> Gets the length, in bytes, of the embedded source. </summary> <returns> The source length of the current document. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolDocument.URL"> <summary> Gets the URL of the current document. </summary> <returns> The URL of the current document. </returns> </member> <member name="T:System.Diagnostics.SymbolStore.ISymbolDocumentWriter"> <summary> Represents a document referenced by a symbol store. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolDocumentWriter.SetCheckSum(System.Guid,System.Byte[])"> <summary> Sets checksum information. </summary> <param name="algorithmId"> The GUID representing the algorithm ID. </param> <param name="checkSum"> The checksum. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolDocumentWriter.SetSource(System.Byte[])"> <summary> Stores the raw source for a document in the symbol store. </summary> <param name="source"> The document source represented as unsigned bytes. </param> </member> <member name="T:System.Diagnostics.SymbolStore.ISymbolMethod"> <summary> Represents a method within a symbol store. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolMethod.GetNamespace"> <summary> Gets the namespace that the current method is defined within. </summary> <returns> The namespace that the current method is defined within. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolMethod.GetOffset(System.Diagnostics.SymbolStore.ISymbolDocument,System.Int32,System.Int32)"> <summary> Gets the Microsoft intermediate language (MSIL) offset within the method that corresponds to the specified position. </summary> <returns> The offset within the specified document. </returns> <param name="document"> The document for which the offset is requested. </param> <param name="line"> The document line corresponding to the offset. </param> <param name="column"> The document column corresponding to the offset. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolMethod.GetParameters"> <summary> Gets the parameters for the current method. </summary> <returns> The array of parameters for the current method. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolMethod.GetRanges(System.Diagnostics.SymbolStore.ISymbolDocument,System.Int32,System.Int32)"> <summary> Gets an array of start and end offset pairs that correspond to the ranges of Microsoft intermediate language (MSIL) that a given position covers within this method. </summary> <returns> An array of start and end offset pairs. </returns> <param name="document"> The document for which the offset is requested. </param> <param name="line"> The document line corresponding to the ranges. </param> <param name="column"> The document column corresponding to the ranges. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolMethod.GetScope(System.Int32)"> <summary> Returns the most enclosing lexical scope when given an offset within a method. </summary> <returns> The most enclosing lexical scope for the given byte offset within the method. </returns> <param name="offset"> The byte offset within the method of the lexical scope. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolMethod.GetSequencePoints(System.Int32[],System.Diagnostics.SymbolStore.ISymbolDocument[],System.Int32[],System.Int32[],System.Int32[],System.Int32[])"> <summary> Gets the sequence points for the current method. </summary> <param name="offsets"> The array of byte offsets from the beginning of the method for the sequence points. </param> <param name="documents"> The array of documents in which the sequence points are located. </param> <param name="lines"> The array of lines in the documents at which the sequence points are located. </param> <param name="columns"> The array of columns in the documents at which the sequence points are located. </param> <param name="endLines"> The array of lines in the documents at which the sequence points end. </param> <param name="endColumns"> The array of columns in the documents at which the sequence points end. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolMethod.GetSourceStartEnd(System.Diagnostics.SymbolStore.ISymbolDocument[],System.Int32[],System.Int32[])"> <summary> Gets the start and end positions for the source of the current method. </summary> <returns>true if the positions were defined; otherwise, false. </returns> <param name="docs"> The starting and ending source documents. </param> <param name="lines"> The starting and ending lines in the corresponding source documents. </param> <param name="columns"> The starting and ending columns in the corresponding source documents. </param> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolMethod.RootScope"> <summary> Gets the root lexical scope for the current method. This scope encloses the entire method. </summary> <returns> The root lexical scope that encloses the entire method. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolMethod.SequencePointCount"> <summary> Gets a count of the sequence points in the method. </summary> <returns> The count of the sequence points in the method. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolMethod.Token"> <summary> Gets the <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> containing the metadata for the current method. </summary> <returns> The metadata token for the current method. </returns> </member> <member name="T:System.Diagnostics.SymbolStore.ISymbolNamespace"> <summary> Represents a namespace within a symbol store. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolNamespace.GetNamespaces"> <summary> Gets the child members of the current namespace. </summary> <returns> The child members of the current namespace. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolNamespace.GetVariables"> <summary> Gets all the variables defined at global scope within the current namespace. </summary> <returns> The variables defined at global scope within the current namespace. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolNamespace.Name"> <summary> Gets the current namespace. </summary> <returns> The current namespace. </returns> </member> <member name="T:System.Diagnostics.SymbolStore.ISymbolReader"> <summary> Represents a symbol reader for managed code. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolReader.GetDocument(System.String,System.Guid,System.Guid,System.Guid)"> <summary> Gets a document specified by the language, vendor, and type. </summary> <returns> The specified document. </returns> <param name="url"> The URL that identifies the document. </param> <param name="language"> The document language. You can specify this parameter as <see cref="F:System.Guid.Empty" />. </param> <param name="languageVendor"> The identity of the vendor for the document language. You can specify this parameter as <see cref="F:System.Guid.Empty" />. </param> <param name="documentType"> The type of the document. You can specify this parameter as <see cref="F:System.Guid.Empty" />. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolReader.GetDocuments"> <summary> Gets an array of all documents defined in the symbol store. </summary> <returns> An array of all documents defined in the symbol store. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolReader.GetGlobalVariables"> <summary> Gets all global variables in the module. </summary> <returns> An array of all variables in the module. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolReader.GetMethod(System.Diagnostics.SymbolStore.SymbolToken)"> <summary> Gets a symbol reader method object when given the identifier of a method. </summary> <returns> The symbol reader method object for the specified method identifier. </returns> <param name="method"> The metadata token of the method. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolReader.GetMethod(System.Diagnostics.SymbolStore.SymbolToken,System.Int32)"> <summary> Gets a symbol reader method object when given the identifier of a method and its edit and continue version. </summary> <returns> The symbol reader method object for the specified method identifier. </returns> <param name="method"> The metadata token of the method. </param> <param name="version"> The edit and continue version of the method. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolReader.GetMethodFromDocumentPosition(System.Diagnostics.SymbolStore.ISymbolDocument,System.Int32,System.Int32)"> <summary> Gets a symbol reader method object that contains a specified position in a document. </summary> <returns> The reader method object for the specified position in the document. </returns> <param name="document"> The document in which the method is located. </param> <param name="line"> The position of the line within the document. The lines are numbered, beginning with 1. </param> <param name="column"> The position of column within the document. The columns are numbered, beginning with 1. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolReader.GetNamespaces"> <summary> Gets the namespaces that are defined in the global scope within the current symbol store. </summary> <returns> The namespaces defined in the global scope within the current symbol store. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolReader.GetSymAttribute(System.Diagnostics.SymbolStore.SymbolToken,System.String)"> <summary> Gets an attribute value when given the attribute name. </summary> <returns> The value of the attribute. </returns> <param name="parent"> The metadata token for the object for which the attribute is requested. </param> <param name="name"> The attribute name. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolReader.GetVariables(System.Diagnostics.SymbolStore.SymbolToken)"> <summary> Gets the variables that are not local when given the parent. </summary> <returns> An array of variables for the parent. </returns> <param name="parent"> The metadata token for the type for which the variables are requested. </param> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolReader.UserEntryPoint"> <summary> Gets the metadata token for the method that was specified as the user entry point for the module, if any. </summary> <returns> The metadata token for the method that is the user entry point for the module. </returns> </member> <member name="T:System.Diagnostics.SymbolStore.ISymbolScope"> <summary> Represents a lexical scope within <see cref="T:System.Diagnostics.SymbolStore.ISymbolMethod" />, providing access to the start and end offsets of the scope, as well as its child and parent scopes. </summary> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolScope.EndOffset"> <summary> Gets the end offset of the current lexical scope. </summary> <returns> The end offset of the current lexical scope. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolScope.GetChildren"> <summary> Gets the child lexical scopes of the current lexical scope. </summary> <returns> The child lexical scopes that of the current lexical scope. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolScope.GetLocals"> <summary> Gets the local variables within the current lexical scope. </summary> <returns> The local variables within the current lexical scope. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolScope.GetNamespaces"> <summary> Gets the namespaces that are used within the current scope. </summary> <returns> The namespaces that are used within the current scope. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolScope.Method"> <summary> Gets the method that contains the current lexical scope. </summary> <returns> The method that contains the current lexical scope. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolScope.Parent"> <summary> Gets the parent lexical scope of the current scope. </summary> <returns> The parent lexical scope of the current scope. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolScope.StartOffset"> <summary> Gets the start offset of the current lexical scope. </summary> <returns> The start offset of the current lexical scope. </returns> </member> <member name="T:System.Diagnostics.SymbolStore.ISymbolVariable"> <summary> Represents a variable within a symbol store. </summary> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolVariable.AddressField1"> <summary> Gets the first address of a variable. </summary> <returns> The first address of the variable. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolVariable.AddressField2"> <summary> Gets the second address of a variable. </summary> <returns> The second address of the variable. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolVariable.AddressField3"> <summary> Gets the third address of a variable. </summary> <returns> The third address of the variable. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolVariable.AddressKind"> <summary> Gets the <see cref="T:System.Diagnostics.SymbolStore.SymAddressKind" /> value describing the type of the address. </summary> <returns> The type of the address. One of the <see cref="T:System.Diagnostics.SymbolStore.SymAddressKind" /> values. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolVariable.Attributes"> <summary> Gets the attributes of the variable. </summary> <returns> The variable attributes. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolVariable.EndOffset"> <summary> Gets the end offset of a variable within the scope of the variable. </summary> <returns> The end offset of the variable. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolVariable.GetSignature"> <summary> Gets the variable signature. </summary> <returns> The variable signature as an opaque blob. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolVariable.Name"> <summary> Gets the name of the variable. </summary> <returns> The name of the variable. </returns> </member> <member name="P:System.Diagnostics.SymbolStore.ISymbolVariable.StartOffset"> <summary> Gets the start offset of the variable within the scope of the variable. </summary> <returns> The start offset of the variable. </returns> </member> <member name="T:System.Diagnostics.SymbolStore.ISymbolWriter"> <summary> Represents a symbol writer for managed code. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.Close"> <summary> Closes <see cref="T:System.Diagnostics.SymbolStore.ISymbolWriter" /> and commits the symbols to the symbol store. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.CloseMethod"> <summary> Closes the current method. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.CloseNamespace"> <summary> Closes the most recent namespace. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.CloseScope(System.Int32)"> <summary> Closes the current lexical scope. </summary> <param name="endOffset"> The points past the last instruction in the scope. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.DefineDocument(System.String,System.Guid,System.Guid,System.Guid)"> <summary> Defines a source document. </summary> <returns> The object that represents the document. </returns> <param name="url"> The URL that identifies the document. </param> <param name="language"> The document language. This parameter can be <see cref="F:System.Guid.Empty" />. </param> <param name="languageVendor"> The identity of the vendor for the document language. This parameter can be <see cref="F:System.Guid.Empty" />. </param> <param name="documentType"> The type of the document. This parameter can be <see cref="F:System.Guid.Empty" />. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.DefineField(System.Diagnostics.SymbolStore.SymbolToken,System.String,System.Reflection.FieldAttributes,System.Byte[],System.Diagnostics.SymbolStore.SymAddressKind,System.Int32,System.Int32,System.Int32)"> <summary> Defines a field in a type or a global field. </summary> <param name="parent"> The metadata type or method token. </param> <param name="name"> The field name. </param> <param name="attributes"> A bitwise combination of the field attributes. </param> <param name="signature"> The field signature. </param> <param name="addrKind"> The address types for <paramref name="addr1" /> and <paramref name="addr2" />. </param> <param name="addr1"> The first address for the field specification. </param> <param name="addr2"> The second address for the field specification. </param> <param name="addr3"> The third address for the field specification. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.DefineGlobalVariable(System.String,System.Reflection.FieldAttributes,System.Byte[],System.Diagnostics.SymbolStore.SymAddressKind,System.Int32,System.Int32,System.Int32)"> <summary> Defines a single global variable. </summary> <param name="name"> The global variable name. </param> <param name="attributes"> A bitwise combination of the global variable attributes. </param> <param name="signature"> The global variable signature. </param> <param name="addrKind"> The address types for <paramref name="addr1" />, <paramref name="addr2" />, and <paramref name="addr3" />. </param> <param name="addr1"> The first address for the global variable specification. </param> <param name="addr2"> The second address for the global variable specification. </param> <param name="addr3"> The third address for the global variable specification. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.DefineLocalVariable(System.String,System.Reflection.FieldAttributes,System.Byte[],System.Diagnostics.SymbolStore.SymAddressKind,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Defines a single variable in the current lexical scope. </summary> <param name="name"> The local variable name. </param> <param name="attributes"> A bitwise combination of the local variable attributes. </param> <param name="signature"> The local variable signature. </param> <param name="addrKind"> The address types for <paramref name="addr1" />, <paramref name="addr2" />, and <paramref name="addr3" />. </param> <param name="addr1"> The first address for the local variable specification. </param> <param name="addr2"> The second address for the local variable specification. </param> <param name="addr3"> The third address for the local variable specification. </param> <param name="startOffset"> The start offset for the variable. If this parameter is zero, it is ignored and the variable is defined throughout the entire scope. If the parameter is nonzero, the variable falls within the offsets of the current scope. </param> <param name="endOffset"> The end offset for the variable. If this parameter is zero, it is ignored and the variable is defined throughout the entire scope. If the parameter is nonzero, the variable falls within the offsets of the current scope. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.DefineParameter(System.String,System.Reflection.ParameterAttributes,System.Int32,System.Diagnostics.SymbolStore.SymAddressKind,System.Int32,System.Int32,System.Int32)"> <summary> Defines a single parameter in the current method. The type of each parameter is taken from its position within the signature of the method. </summary> <param name="name"> The parameter name. </param> <param name="attributes"> A bitwise combination of the parameter attributes. </param> <param name="sequence"> The parameter signature. </param> <param name="addrKind"> The address types for <paramref name="addr1" />, <paramref name="addr2" />, and <paramref name="addr3" />. </param> <param name="addr1"> The first address for the parameter specification. </param> <param name="addr2"> The second address for the parameter specification. </param> <param name="addr3"> The third address for the parameter specification. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.DefineSequencePoints(System.Diagnostics.SymbolStore.ISymbolDocumentWriter,System.Int32[],System.Int32[],System.Int32[],System.Int32[],System.Int32[])"> <summary> Defines a group of sequence points within the current method. </summary> <param name="document"> The document object for which the sequence points are being defined. </param> <param name="offsets"> The sequence point offsets measured from the beginning of methods. </param> <param name="lines"> The document lines for the sequence points. </param> <param name="columns"> The document positions for the sequence points. </param> <param name="endLines"> The document end lines for the sequence points. </param> <param name="endColumns"> The document end positions for the sequence points. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.Initialize(System.IntPtr,System.String,System.Boolean)"> <summary> Sets the metadata emitter interface to associate with a writer. </summary> <param name="emitter"> The metadata emitter interface. </param> <param name="filename"> The file name for which the debugging symbols are written. Some writers require a file name, and others do not. If a file name is specified for a writer that does not use file names, this parameter is ignored. </param> <param name="fFullBuild">true indicates that this is a full rebuild; false indicates that this is an incremental compilation. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.OpenMethod(System.Diagnostics.SymbolStore.SymbolToken)"> <summary> Opens a method to place symbol information into. </summary> <param name="method"> The metadata token for the method to be opened. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.OpenNamespace(System.String)"> <summary> Opens a new namespace. </summary> <param name="name"> The name of the new namespace. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.OpenScope(System.Int32)"> <summary> Opens a new lexical scope in the current method. </summary> <returns> An opaque scope identifier that can be used with <see cref="M:System.Diagnostics.SymbolStore.ISymbolWriter.SetScopeRange(System.Int32,System.Int32,System.Int32)" /> to define the start and end offsets of a scope at a later time. In this case, the offsets passed to <see cref="M:System.Diagnostics.SymbolStore.ISymbolWriter.OpenScope(System.Int32)" /> and <see cref="M:System.Diagnostics.SymbolStore.ISymbolWriter.CloseScope(System.Int32)" /> are ignored. A scope identifier is valid only in the current method. </returns> <param name="startOffset"> The offset, in bytes, from the beginning of the method to the first instruction in the lexical scope. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.SetMethodSourceRange(System.Diagnostics.SymbolStore.ISymbolDocumentWriter,System.Int32,System.Int32,System.Diagnostics.SymbolStore.ISymbolDocumentWriter,System.Int32,System.Int32)"> <summary> Specifies the true start and end of a method within a source file. Use <see cref="M:System.Diagnostics.SymbolStore.ISymbolWriter.SetMethodSourceRange(System.Diagnostics.SymbolStore.ISymbolDocumentWriter,System.Int32,System.Int32,System.Diagnostics.SymbolStore.ISymbolDocumentWriter,System.Int32,System.Int32)" /> to specify the extent of a method, independent of the sequence points that exist within the method. </summary> <param name="startDoc"> The document that contains the starting position. </param> <param name="startLine"> The starting line number. </param> <param name="startColumn"> The starting column. </param> <param name="endDoc"> The document that contains the ending position. </param> <param name="endLine"> The ending line number. </param> <param name="endColumn"> The ending column number. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.SetScopeRange(System.Int32,System.Int32,System.Int32)"> <summary> Defines the offset range for the specified lexical scope. </summary> <param name="scopeID"> The identifier of the lexical scope. </param> <param name="startOffset"> The byte offset of the beginning of the lexical scope. </param> <param name="endOffset"> The byte offset of the end of the lexical scope. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.SetSymAttribute(System.Diagnostics.SymbolStore.SymbolToken,System.String,System.Byte[])"> <summary> Defines an attribute when given the attribute name and the attribute value. </summary> <param name="parent"> The metadata token for which the attribute is being defined. </param> <param name="name"> The attribute name. </param> <param name="data"> The attribute value. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.SetUnderlyingWriter(System.IntPtr)"> <summary> Sets the underlying ISymUnmanagedWriter (the corresponding unmanaged interface) that a managed <see cref="T:System.Diagnostics.SymbolStore.ISymbolWriter" /> uses to emit symbols. </summary> <param name="underlyingWriter"> A pointer to code that represents the underlying writer. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.SetUserEntryPoint(System.Diagnostics.SymbolStore.SymbolToken)"> <summary> Identifies the user-defined method as the entry point for the current module. </summary> <param name="entryMethod"> The metadata token for the method that is the user entry point. </param> </member> <member name="M:System.Diagnostics.SymbolStore.ISymbolWriter.UsingNamespace(System.String)"> <summary> Specifies that the given, fully qualified namespace name is used within the open lexical scope. </summary> <param name="fullName"> The fully qualified name of the namespace. </param> </member> <member name="T:System.Diagnostics.SymbolStore.SymAddressKind"> <summary> Specifies address types for local variables, parameters, and fields in the methods <see cref="M:System.Diagnostics.SymbolStore.ISymbolWriter.DefineLocalVariable(System.String,System.Reflection.FieldAttributes,System.Byte[],System.Diagnostics.SymbolStore.SymAddressKind,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" />, <see cref="M:System.Diagnostics.SymbolStore.ISymbolWriter.DefineParameter(System.String,System.Reflection.ParameterAttributes,System.Int32,System.Diagnostics.SymbolStore.SymAddressKind,System.Int32,System.Int32,System.Int32)" />, and <see cref="M:System.Diagnostics.SymbolStore.ISymbolWriter.DefineField(System.Diagnostics.SymbolStore.SymbolToken,System.String,System.Reflection.FieldAttributes,System.Byte[],System.Diagnostics.SymbolStore.SymAddressKind,System.Int32,System.Int32,System.Int32)" /> of the <see cref="T:System.Diagnostics.SymbolStore.ISymbolWriter" /> interface. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymAddressKind.ILOffset"> <summary> A Microsoft intermediate language (MSIL) offset. The <paramref name="addr1" /> parameter is the MSIL local variable or parameter index. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymAddressKind.NativeRVA"> <summary> A native Relevant Virtual Address (RVA). The <paramref name="addr1" /> parameter is the RVA in the module. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymAddressKind.NativeRegister"> <summary> A native register address. The <paramref name="addr1" /> parameter is the register in which the variable is stored. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymAddressKind.NativeRegisterRelative"> <summary> A register-relative address. The <paramref name="addr1" /> parameter is the register, and the <paramref name="addr2" /> parameter is the offset. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymAddressKind.NativeOffset"> <summary> A native offset. The <paramref name="addr1" /> parameter is the offset from the start of the parent. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymAddressKind.NativeRegisterRegister"> <summary> A register-relative address. The <paramref name="addr1" /> parameter is the low-order register, and the <paramref name="addr2" /> parameter is the high-order register. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymAddressKind.NativeRegisterStack"> <summary> A register-relative address. The <paramref name="addr1" /> parameter is the low-order register, the <paramref name="addr2" /> parameter is the stack register, and the <paramref name="addr3" /> parameter is the offset from the stack pointer to the high-order part of the value. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymAddressKind.NativeStackRegister"> <summary> A register-relative address. The <paramref name="addr1" /> parameter is the stack register, the <paramref name="addr2" /> parameter is the offset from the stack pointer to the low-order part of the value, and the <paramref name="addr3" /> parameter is the high-order register. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymAddressKind.BitField"> <summary> A bit field. The <paramref name="addr1" /> parameter is the position where the field starts, and the <paramref name="addr2" /> parameter is the field length. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymAddressKind.NativeSectionOffset"> <summary> A native section offset. The <paramref name="addr1" /> parameter is the section, and the <paramref name="addr2" /> parameter is the offset. </summary> </member> <member name="T:System.Diagnostics.SymbolStore.SymbolToken"> <summary> The <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> structure is an object representation of a token that represents symbolic information. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.SymbolToken.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> structure when given a value. </summary> <param name="val"> The value to be used for the token. </param> </member> <member name="M:System.Diagnostics.SymbolStore.SymbolToken.Equals(System.Diagnostics.SymbolStore.SymbolToken)"> <summary> Determines whether <paramref name="obj" /> is equal to this instance. </summary> <returns>true if <paramref name="obj" /> is equal to this instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> to check. </param> </member> <member name="M:System.Diagnostics.SymbolStore.SymbolToken.Equals(System.Object)"> <summary> Determines whether <paramref name="obj" /> is an instance of <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> and is equal to this instance. </summary> <returns>true if <paramref name="obj" /> is an instance of <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> and is equal to this instance; otherwise, false. </returns> <param name="obj"> The object to check. </param> </member> <member name="M:System.Diagnostics.SymbolStore.SymbolToken.GetHashCode"> <summary> Generates the hash code for the current token. </summary> <returns> The hash code for the current token. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.SymbolToken.GetToken"> <summary> Gets the value of the current token. </summary> <returns> The value of the current token. </returns> </member> <member name="M:System.Diagnostics.SymbolStore.SymbolToken.op_Equality(System.Diagnostics.SymbolStore.SymbolToken,System.Diagnostics.SymbolStore.SymbolToken)"> <summary> Returns a value indicating whether two <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> objects are equal. </summary> <returns>true if <paramref name="a" /> and <paramref name="b" /> are equal; otherwise, false. </returns> <param name="a"> A <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> structure. </param> <param name="b"> A <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> structure. </param> </member> <member name="M:System.Diagnostics.SymbolStore.SymbolToken.op_Inequality(System.Diagnostics.SymbolStore.SymbolToken,System.Diagnostics.SymbolStore.SymbolToken)"> <summary> Returns a value indicating whether two <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> objects are not equal. </summary> <returns>true if <paramref name="a" /> and <paramref name="b" /> are not equal; otherwise, false. </returns> <param name="a"> A <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> structure. </param> <param name="b"> A <see cref="T:System.Diagnostics.SymbolStore.SymbolToken" /> structure. </param> </member> <member name="T:System.Diagnostics.SymbolStore.SymDocumentType"> <summary> Holds the public GUIDs for document types to be used with the symbol store. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.SymDocumentType.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.SymbolStore.SymDocumentType" /> class. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymDocumentType.Text"> <summary> Specifies the GUID of the document type to be used with the symbol store. </summary> </member> <member name="T:System.Diagnostics.SymbolStore.SymLanguageType"> <summary> Holds the public GUIDs for language types to be used with the symbol store. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.SymLanguageType.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.SymbolStore.SymLanguageType" /> class. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.Basic"> <summary> Specifies the GUID of the Basic language type to be used with the symbol store. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.C"> <summary> Specifies the GUID of the C language type to be used with the symbol store. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.Cobol"> <summary> Specifies the GUID of the Cobol language type to be used with the symbol store. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.CPlusPlus"> <summary> Specifies the GUID of the C++ language type to be used with the symbol store. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.CSharp"> <summary> Specifies the GUID of the C# language type to be used with the symbol store. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.ILAssembly"> <summary> Specifies the GUID of the ILAssembly language type to be used with the symbol store. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.Java"> <summary> Specifies the GUID of the Java language type to be used with the symbol store. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.JScript"> <summary> Specifies the GUID of the JScript language type to be used with the symbol store. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.MCPlusPlus"> <summary> Specifies the GUID of the C++ language type to be used with the symbol store. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.Pascal"> <summary> Specifies the GUID of the Pascal language type to be used with the symbol store. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageType.SMC"> <summary> Specifies the GUID of the SMC language type to be used with the symbol store. </summary> </member> <member name="T:System.Diagnostics.SymbolStore.SymLanguageVendor"> <summary> Holds the public GUIDs for language vendors to be used with the symbol store. </summary> </member> <member name="M:System.Diagnostics.SymbolStore.SymLanguageVendor.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Diagnostics.SymbolStore.SymLanguageVendor" /> class. </summary> </member> <member name="F:System.Diagnostics.SymbolStore.SymLanguageVendor.Microsoft"> <summary> Specifies the GUID of the Microsoft language vendor. </summary> </member> <member name="T:System.Globalization.Calendar"> <summary> Represents time in divisions, such as weeks, months, and years. </summary> </member> <member name="M:System.Globalization.Calendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.Calendar" /> class. </summary> </member> <member name="M:System.Globalization.Calendar.AddDays(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of days away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of days to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add days. </param> <param name="days"> The number of days to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range of this calendar. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="days" /> is outside the supported range of the <see cref="T:System.DateTime" /> return value. </exception> </member> <member name="M:System.Globalization.Calendar.AddHours(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of hours away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of hours to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add hours. </param> <param name="hours"> The number of hours to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range of this calendar. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="hours" /> is outside the supported range of the <see cref="T:System.DateTime" /> return value. </exception> </member> <member name="M:System.Globalization.Calendar.AddMilliseconds(System.DateTime,System.Double)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of milliseconds away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of milliseconds to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to add milliseconds to. </param> <param name="milliseconds"> The number of milliseconds to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range of this calendar. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="milliseconds" /> is outside the supported range of the <see cref="T:System.DateTime" /> return value. </exception> </member> <member name="M:System.Globalization.Calendar.AddMinutes(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of minutes away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of minutes to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add minutes. </param> <param name="minutes"> The number of minutes to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range of this calendar. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="minutes" /> is outside the supported range of the <see cref="T:System.DateTime" /> return value. </exception> </member> <member name="M:System.Globalization.Calendar.AddMonths(System.DateTime,System.Int32)"> <summary> When overridden in a derived class, returns a <see cref="T:System.DateTime" /> that is the specified number of months away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of months to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add months. </param> <param name="months"> The number of months to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range of this calendar. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is outside the supported range of the <see cref="T:System.DateTime" /> return value. </exception> </member> <member name="M:System.Globalization.Calendar.AddSeconds(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of seconds away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of seconds to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add seconds. </param> <param name="seconds"> The number of seconds to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range of this calendar. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="seconds" /> is outside the supported range of the <see cref="T:System.DateTime" /> return value. </exception> </member> <member name="M:System.Globalization.Calendar.AddWeeks(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of weeks away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of weeks to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add weeks. </param> <param name="weeks"> The number of weeks to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range of this calendar. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="weeks" /> is outside the supported range of the <see cref="T:System.DateTime" /> return value. </exception> </member> <member name="M:System.Globalization.Calendar.AddYears(System.DateTime,System.Int32)"> <summary> When overridden in a derived class, returns a <see cref="T:System.DateTime" /> that is the specified number of years away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of years to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add years. </param> <param name="years"> The number of years to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range of this calendar. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="years" /> is outside the supported range of the <see cref="T:System.DateTime" /> return value. </exception> </member> <member name="P:System.Globalization.Calendar.AlgorithmType"> <summary> Gets a value indicating whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> One of the <see cref="T:System.Globalization.CalendarAlgorithmType" /> values. </returns> </member> <member name="M:System.Globalization.Calendar.Clone"> <summary> Creates a new object that is a copy of the current <see cref="T:System.Globalization.Calendar" /> object. </summary> <returns> A new instance of <see cref="T:System.Object" /> that is the memberwise clone of the current <see cref="T:System.Globalization.Calendar" /> object. </returns> </member> <member name="F:System.Globalization.Calendar.CurrentEra"> <summary> Represents the current era of the current calendar. </summary> </member> <member name="P:System.Globalization.Calendar.Eras"> <summary> When overridden in a derived class, gets the list of eras in the current calendar. </summary> <returns> An array of integers that represents the eras in the current calendar. </returns> </member> <member name="M:System.Globalization.Calendar.GetDayOfMonth(System.DateTime)"> <summary> When overridden in a derived class, returns the day of the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> A positive integer that represents the day of the month in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.Calendar.GetDayOfWeek(System.DateTime)"> <summary> When overridden in a derived class, returns the day of the week in the specified <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.Calendar.GetDayOfYear(System.DateTime)"> <summary> When overridden in a derived class, returns the day of the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> A positive integer that represents the day of the year in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.Calendar.GetDaysInMonth(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month and year of the current era. </summary> <returns> The number of days in the specified month in the specified year in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> A positive integer that represents the month. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> When overridden in a derived class, returns the number of days in the specified month, year, and era. </summary> <returns> The number of days in the specified month in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> A positive integer that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.GetDaysInYear(System.Int32)"> <summary> Returns the number of days in the specified year of the current era. </summary> <returns> The number of days in the specified year in the current era. </returns> <param name="year"> An integer that represents the year. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> When overridden in a derived class, returns the number of days in the specified year and era. </summary> <returns> The number of days in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.GetEra(System.DateTime)"> <summary> When overridden in a derived class, returns the era in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.Calendar.GetHour(System.DateTime)"> <summary> Returns the hours value in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 0 to 23 that represents the hour in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.Calendar.GetLeapMonth(System.Int32)"> <summary> Calculates the leap month for a specified year. </summary> <returns> A positive integer that indicates the leap month in the specified year. -or- Zero if this calendar does not support a leap month or if the <paramref name="year" /> parameter does not represent a leap year. </returns> <param name="year"> A year. </param> </member> <member name="M:System.Globalization.Calendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for a specified year and era. </summary> <returns> A positive integer that indicates the leap month in the specified year and era. -or- Zero if this calendar does not support a leap month or if the <paramref name="year" /> and <paramref name="era" /> parameters do not specify a leap year. </returns> <param name="year"> A year. </param> <param name="era"> An era. </param> </member> <member name="M:System.Globalization.Calendar.GetMilliseconds(System.DateTime)"> <summary> Returns the milliseconds value in the specified <see cref="T:System.DateTime" />. </summary> <returns> A double-precision floating-point number from 0 to 999 that represents the milliseconds in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.Calendar.GetMinute(System.DateTime)"> <summary> Returns the minutes value in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 0 to 59 that represents the minutes in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.Calendar.GetMonth(System.DateTime)"> <summary> When overridden in a derived class, returns the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> A positive integer that represents the month in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.Calendar.GetMonthsInYear(System.Int32)"> <summary> Returns the number of months in the specified year in the current era. </summary> <returns> The number of months in the specified year in the current era. </returns> <param name="year"> An integer that represents the year. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> When overridden in a derived class, returns the number of months in the specified year in the specified era. </summary> <returns> The number of months in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.GetSecond(System.DateTime)"> <summary> Returns the seconds value in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 0 to 59 that represents the seconds in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.Calendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek)"> <summary> Returns the week of the year that includes the date in the specified <see cref="T:System.DateTime" />. </summary> <returns> A positive integer that represents the week of the year that includes the date in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <param name="rule"> A <see cref="T:System.Globalization.CalendarWeekRule" /> value that defines a calendar week. </param> <param name="firstDayOfWeek"> A <see cref="T:System.DayOfWeek" /> value that represents the first day of the week. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="firstDayOfWeek" /> is outside the range supported by the calendar. -or- <paramref name="rule" /> is not a valid <see cref="T:System.Globalization.CalendarWeekRule" /> value. </exception> </member> <member name="M:System.Globalization.Calendar.GetYear(System.DateTime)"> <summary> When overridden in a derived class, returns the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the year in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.Calendar.IsLeapDay(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date in the current era is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> A positive integer that represents the month. </param> <param name="day"> A positive integer that represents the day. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> When overridden in a derived class, determines whether the specified date in the specified era is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> A positive integer that represents the month. </param> <param name="day"> A positive integer that represents the day. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.IsLeapMonth(System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year in the current era is a leap month. </summary> <returns>true if the specified month is a leap month; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> A positive integer that represents the month. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> When overridden in a derived class, determines whether the specified month in the specified year in the specified era is a leap month. </summary> <returns>true if the specified month is a leap month; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> A positive integer that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.IsLeapYear(System.Int32)"> <summary> Determines whether the specified year in the current era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.IsLeapYear(System.Int32,System.Int32)"> <summary> When overridden in a derived class, determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="P:System.Globalization.Calendar.IsReadOnly"> <summary> Gets a value indicating whether this <see cref="T:System.Globalization.Calendar" /> object is read-only. </summary> <returns>true if this <see cref="T:System.Globalization.Calendar" /> object is read-only; otherwise, false. </returns> </member> <member name="P:System.Globalization.Calendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by this <see cref="T:System.Globalization.Calendar" /> object. </summary> <returns> The latest date and time supported by this calendar. The default is <see cref="F:System.DateTime.MaxValue" />. </returns> </member> <member name="P:System.Globalization.Calendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by this <see cref="T:System.Globalization.Calendar" /> object. </summary> <returns> The earliest date and time supported by this calendar. The default is <see cref="F:System.DateTime.MinValue" />. </returns> </member> <member name="M:System.Globalization.Calendar.ReadOnly(System.Globalization.Calendar)"> <summary> Returns a read-only version of the specified <see cref="T:System.Globalization.Calendar" /> object. </summary> <returns> The <see cref="T:System.Globalization.Calendar" /> object specified by the <paramref name="calendar" /> parameter, if <paramref name="calendar" /> is read-only. -or- A read-only memberwise clone of the <see cref="T:System.Globalization.Calendar" /> object specified by <paramref name="calendar" />, if <paramref name="calendar" /> is not read-only. </returns> <param name="calendar"> A <see cref="T:System.Globalization.Calendar" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="calendar" /> is null. </exception> </member> <member name="M:System.Globalization.Calendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> A positive integer that represents the month. </param> <param name="day"> A positive integer that represents the day. </param> <param name="hour"> An integer from 0 to 23 that represents the hour. </param> <param name="minute"> An integer from 0 to 59 that represents the minute. </param> <param name="second"> An integer from 0 to 59 that represents the second. </param> <param name="millisecond"> An integer from 0 to 999 that represents the millisecond. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than zero or greater than 59. -or- <paramref name="second" /> is less than zero or greater than 59. -or- <paramref name="millisecond" /> is less than zero or greater than 999. </exception> </member> <member name="M:System.Globalization.Calendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> When overridden in a derived class, returns a <see cref="T:System.DateTime" /> that is set to the specified date and time in the specified era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> A positive integer that represents the month. </param> <param name="day"> A positive integer that represents the day. </param> <param name="hour"> An integer from 0 to 23 that represents the hour. </param> <param name="minute"> An integer from 0 to 59 that represents the minute. </param> <param name="second"> An integer from 0 to 59 that represents the second. </param> <param name="millisecond"> An integer from 0 to 999 that represents the millisecond. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than zero or greater than 59. -or- <paramref name="second" /> is less than zero or greater than 59. -or- <paramref name="millisecond" /> is less than zero or greater than 999. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.Calendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year by using the <see cref="P:System.Globalization.Calendar.TwoDigitYearMax" /> property to determine the appropriate century. </summary> <returns> An integer that contains the four-digit representation of <paramref name="year" />. </returns> <param name="year"> A two-digit or four-digit integer that represents the year to convert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="P:System.Globalization.Calendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Globalization.Calendar" /> object is read-only. </exception> </member> <member name="T:System.Globalization.CalendarAlgorithmType"> <summary> Specifies whether a calendar is solar-based, lunar-based, or lunisolar-based. </summary> </member> <member name="F:System.Globalization.CalendarAlgorithmType.Unknown"> <summary> An unknown calendar basis. </summary> </member> <member name="F:System.Globalization.CalendarAlgorithmType.SolarCalendar"> <summary> A solar-based calendar. </summary> </member> <member name="F:System.Globalization.CalendarAlgorithmType.LunarCalendar"> <summary> A lunar-based calendar. </summary> </member> <member name="F:System.Globalization.CalendarAlgorithmType.LunisolarCalendar"> <summary> A lunisolar-based calendar. </summary> </member> <member name="T:System.Globalization.CalendarWeekRule"> <summary> Defines different rules for determining the first week of the year. </summary> </member> <member name="F:System.Globalization.CalendarWeekRule.FirstDay"> <summary> Indicates that the first week of the year starts on the first day of the year and ends before the following designated first day of the week. The value is 0. </summary> </member> <member name="F:System.Globalization.CalendarWeekRule.FirstFullWeek"> <summary> Indicates that the first week of the year begins on the first occurrence of the designated first day of the week on or after the first day of the year. The value is 1. </summary> </member> <member name="F:System.Globalization.CalendarWeekRule.FirstFourDayWeek"> <summary> Indicates that the first week of the year is the first week with four or more days before the designated first day of the week. The value is 2. </summary> </member> <member name="T:System.Globalization.CharUnicodeInfo"> <summary> Retrieves information about a Unicode character. This class cannot be inherited. </summary> </member> <member name="M:System.Globalization.CharUnicodeInfo.GetDecimalDigitValue(System.Char)"> <summary> Gets the decimal digit value of the specified numeric character. </summary> <returns> The decimal digit value of the specified numeric character. -or- -1, if the specified character is not a decimal digit. </returns> <param name="ch"> The Unicode character for which to get the decimal digit value. </param> </member> <member name="M:System.Globalization.CharUnicodeInfo.GetDecimalDigitValue(System.String,System.Int32)"> <summary> Gets the decimal digit value of the numeric character at the specified index of the specified string. </summary> <returns> The decimal digit value of the numeric character at the specified index of the specified string. -or- -1, if the character at the specified index of the specified string is not a decimal digit. </returns> <param name="s"> The <see cref="T:System.String" /> containing the Unicode character for which to get the decimal digit value. </param> <param name="index"> The index of the Unicode character for which to get the decimal digit value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes in <paramref name="s" />. </exception> </member> <member name="M:System.Globalization.CharUnicodeInfo.GetDigitValue(System.Char)"> <summary> Gets the digit value of the specified numeric character. </summary> <returns> The digit value of the specified numeric character. -or- -1, if the specified character is not a digit. </returns> <param name="ch"> The Unicode character for which to get the digit value. </param> </member> <member name="M:System.Globalization.CharUnicodeInfo.GetDigitValue(System.String,System.Int32)"> <summary> Gets the digit value of the numeric character at the specified index of the specified string. </summary> <returns> The digit value of the numeric character at the specified index of the specified string. -or- -1, if the character at the specified index of the specified string is not a digit. </returns> <param name="s"> The <see cref="T:System.String" /> containing the Unicode character for which to get the digit value. </param> <param name="index"> The index of the Unicode character for which to get the digit value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes in <paramref name="s" />. </exception> </member> <member name="M:System.Globalization.CharUnicodeInfo.GetNumericValue(System.Char)"> <summary> Gets the numeric value associated with the specified character. </summary> <returns> The numeric value associated with the specified character. -or- -1, if the specified character is not a numeric character. </returns> <param name="ch"> The Unicode character for which to get the numeric value. </param> </member> <member name="M:System.Globalization.CharUnicodeInfo.GetNumericValue(System.String,System.Int32)"> <summary> Gets the numeric value associated with the character at the specified index of the specified string. </summary> <returns> The numeric value associated with the character at the specified index of the specified string. -or- -1, if the character at the specified index of the specified string is not a numeric character. </returns> <param name="s"> The <see cref="T:System.String" /> containing the Unicode character for which to get the numeric value. </param> <param name="index"> The index of the Unicode character for which to get the numeric value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes in <paramref name="s" />. </exception> </member> <member name="M:System.Globalization.CharUnicodeInfo.GetUnicodeCategory(System.Char)"> <summary> Gets the Unicode category of the specified character. </summary> <returns> A <see cref="T:System.Globalization.UnicodeCategory" /> value indicating the category of the specified character. </returns> <param name="ch"> The Unicode character for which to get the Unicode category. </param> </member> <member name="M:System.Globalization.CharUnicodeInfo.GetUnicodeCategory(System.String,System.Int32)"> <summary> Gets the Unicode category of the character at the specified index of the specified string. </summary> <returns> A <see cref="T:System.Globalization.UnicodeCategory" /> value indicating the category of the character at the specified index of the specified string. </returns> <param name="s"> The <see cref="T:System.String" /> containing the Unicode character for which to get the Unicode category. </param> <param name="index"> The index of the Unicode character for which to get the Unicode category. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes in <paramref name="s" />. </exception> </member> <member name="T:System.Globalization.ChineseLunisolarCalendar"> <summary> Represents time in divisions, such as months, days, and years. Years are calculated using the Chinese calendar, while days and months are calculated using the lunisolar calendar. </summary> </member> <member name="M:System.Globalization.ChineseLunisolarCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.ChineseLunisolarCalendar" /> class. </summary> </member> <member name="F:System.Globalization.ChineseLunisolarCalendar.ChineseEra"> <summary> Specifies the era that corresponds to the current <see cref="T:System.Globalization.ChineseLunisolarCalendar" /> object. </summary> </member> <member name="P:System.Globalization.ChineseLunisolarCalendar.Eras"> <summary> Gets the eras that correspond to the range of dates and times supported by the current <see cref="T:System.Globalization.ChineseLunisolarCalendar" /> object. </summary> <returns> An array of 32-bit signed integers that specify the relevant eras. The return value for a <see cref="T:System.Globalization.ChineseLunisolarCalendar" /> object is always an array containing one element equal to the <see cref="F:System.Globalization.ChineseLunisolarCalendar.ChineseEra" /> value. </returns> </member> <member name="M:System.Globalization.ChineseLunisolarCalendar.GetEra(System.DateTime)"> <summary> Retrieves the era that corresponds to the specified <see cref="T:System.DateTime" /> type. </summary> <returns> An integer that represents the era in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> type to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is less than <see cref="P:System.Globalization.ChineseLunisolarCalendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.ChineseLunisolarCalendar.MaxSupportedDateTime" />. </exception> </member> <member name="P:System.Globalization.ChineseLunisolarCalendar.MaxSupportedDateTime"> <summary> Gets the maximum date and time supported by the <see cref="T:System.Globalization.ChineseLunisolarCalendar" /> class. </summary> <returns> A <see cref="T:System.DateTime" /> type that represents the last moment on January 28, 2101 in the Gregorian calendar, which is approximately equal to the constructor DateTime(2101, 1, 28, 23, 59, 59, 999). </returns> </member> <member name="P:System.Globalization.ChineseLunisolarCalendar.MinSupportedDateTime"> <summary> Gets the minimum date and time supported by the <see cref="T:System.Globalization.ChineseLunisolarCalendar" /> class. </summary> <returns> A <see cref="T:System.DateTime" /> type that represents February 19, 1901 in the Gregorian calendar, which is equivalent to the constructor, DateTime(1901, 2, 19). </returns> </member> <member name="T:System.Globalization.CompareInfo"> <summary> Implements a set of methods for culture-sensitive string comparisons. </summary> </member> <member name="M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32)"> <summary> Compares a section of one string with a section of another string. </summary> <returns> Value Condition zero The two strings are equal. less than zero The specified section of <paramref name="string1" /> is less than the specified section of <paramref name="string2" />. greater than zero The specified section of <paramref name="string1" /> is greater than the specified section of <paramref name="string2" />. </returns> <param name="string1"> The first string to compare. </param> <param name="offset1"> The zero-based index of the character in <paramref name="string1" /> at which to start comparing. </param> <param name="length1"> The number of consecutive characters in <paramref name="string1" /> to compare. </param> <param name="string2"> The second string to compare. </param> <param name="offset2"> The zero-based index of the character in <paramref name="string2" /> at which to start comparing. </param> <param name="length2"> The number of consecutive characters in <paramref name="string2" /> to compare. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset1" /> or <paramref name="length1" /> or <paramref name="offset2" /> or <paramref name="length2" /> is less than zero. -or- <paramref name="offset1" /> is greater than or equal to the number of characters in <paramref name="string1" />. -or- <paramref name="offset2" /> is greater than or equal to the number of characters in <paramref name="string2" />. -or- <paramref name="length1" /> is greater than the number of characters from <paramref name="offset1" /> to the end of <paramref name="string1" />. -or- <paramref name="length2" /> is greater than the number of characters from <paramref name="offset2" /> to the end of <paramref name="string2" />. </exception> </member> <member name="M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)"> <summary> Compares a section of one string with a section of another string using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> Value Condition zero The two strings are equal. less than zero The specified section of <paramref name="string1" /> is less than the specified section of <paramref name="string2" />. greater than zero The specified section of <paramref name="string1" /> is greater than the specified section of <paramref name="string2" />. </returns> <param name="string1"> The first string to compare. </param> <param name="offset1"> The zero-based index of the character in <paramref name="string1" /> at which to start comparing. </param> <param name="length1"> The number of consecutive characters in <paramref name="string1" /> to compare. </param> <param name="string2"> The second string to compare. </param> <param name="offset2"> The zero-based index of the character in <paramref name="string2" /> at which to start comparing. </param> <param name="length2"> The number of consecutive characters in <paramref name="string2" /> to compare. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="string1" /> and <paramref name="string2" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />, and <see cref="F:System.Globalization.CompareOptions.StringSort" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset1" /> or <paramref name="length1" /> or <paramref name="offset2" /> or <paramref name="length2" /> is less than zero. -or- <paramref name="offset1" /> is greater than or equal to the number of characters in <paramref name="string1" />. -or- <paramref name="offset2" /> is greater than or equal to the number of characters in <paramref name="string2" />. -or- <paramref name="length1" /> is greater than the number of characters from <paramref name="offset1" /> to the end of <paramref name="string1" />. -or- <paramref name="length2" /> is greater than the number of characters from <paramref name="offset2" /> to the end of <paramref name="string2" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.String,System.Int32)"> <summary> Compares the end section of a string with the end section of another string. </summary> <returns> Value Condition zero The two strings are equal. less than zero The specified section of <paramref name="string1" /> is less than the specified section of <paramref name="string2" />. greater than zero The specified section of <paramref name="string1" /> is greater than the specified section of <paramref name="string2" />. </returns> <param name="string1"> The first string to compare. </param> <param name="offset1"> The zero-based index of the character in <paramref name="string1" /> at which to start comparing. </param> <param name="string2"> The second string to compare. </param> <param name="offset2"> The zero-based index of the character in <paramref name="string2" /> at which to start comparing. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset1" /> or <paramref name="offset2" /> is less than zero. -or- <paramref name="offset1" /> is greater than or equal to the number of characters in <paramref name="string1" />. -or- <paramref name="offset2" /> is greater than or equal to the number of characters in <paramref name="string2" />. </exception> </member> <member name="M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.String,System.Int32,System.Globalization.CompareOptions)"> <summary> Compares the end section of a string with the end section of another string using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> Value Condition zero The two strings are equal. less than zero The specified section of <paramref name="string1" /> is less than the specified section of <paramref name="string2" />. greater than zero The specified section of <paramref name="string1" /> is greater than the specified section of <paramref name="string2" />. </returns> <param name="string1"> The first string to compare. </param> <param name="offset1"> The zero-based index of the character in <paramref name="string1" /> at which to start comparing. </param> <param name="string2"> The second string to compare. </param> <param name="offset2"> The zero-based index of the character in <paramref name="string2" /> at which to start comparing. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="string1" /> and <paramref name="string2" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />, and <see cref="F:System.Globalization.CompareOptions.StringSort" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset1" /> or <paramref name="offset2" /> is less than zero. -or- <paramref name="offset1" /> is greater than or equal to the number of characters in <paramref name="string1" />. -or- <paramref name="offset2" /> is greater than or equal to the number of characters in <paramref name="string2" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.Compare(System.String,System.String)"> <summary> Compares two strings. </summary> <returns> Value Condition zero The two strings are equal. less than zero <paramref name="string1" /> is less than <paramref name="string2" />. greater than zero <paramref name="string1" /> is greater than <paramref name="string2" />. </returns> <param name="string1"> The first string to compare. </param> <param name="string2"> The second string to compare. </param> </member> <member name="M:System.Globalization.CompareInfo.Compare(System.String,System.String,System.Globalization.CompareOptions)"> <summary> Compares two strings using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> Value Condition zero The two strings are equal. less than zero <paramref name="string1" /> is less than <paramref name="string2" />. greater than zero <paramref name="string1" /> is greater than <paramref name="string2" />. </returns> <param name="string1"> The first string to compare. </param> <param name="string2"> The second string to compare. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="string1" /> and <paramref name="string2" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />, and <see cref="F:System.Globalization.CompareOptions.StringSort" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.Equals(System.Object)"> <summary> Determines whether the specified object is equal to the current <see cref="T:System.Globalization.CompareInfo" /> object. </summary> <returns>true if the specified object is equal to the current <see cref="T:System.Globalization.CompareInfo" />; otherwise, false. </returns> <param name="value"> The object to compare with the current <see cref="T:System.Globalization.CompareInfo" />. </param> </member> <member name="M:System.Globalization.CompareInfo.GetCompareInfo(System.Int32)"> <summary> Initializes a new <see cref="T:System.Globalization.CompareInfo" /> object that is associated with the culture with the specified identifier. </summary> <returns> A new <see cref="T:System.Globalization.CompareInfo" /> object associated with the culture with the specified identifier and using string comparison methods in the current <see cref="T:System.Reflection.Assembly" />. </returns> <param name="culture"> An integer representing the culture identifier. </param> </member> <member name="M:System.Globalization.CompareInfo.GetCompareInfo(System.Int32,System.Reflection.Assembly)"> <summary> Initializes a new <see cref="T:System.Globalization.CompareInfo" /> object that is associated with the specified culture and that uses string comparison methods in the specified <see cref="T:System.Reflection.Assembly" />. </summary> <returns> A new <see cref="T:System.Globalization.CompareInfo" /> object associated with the culture with the specified identifier and using string comparison methods in the current <see cref="T:System.Reflection.Assembly" />. </returns> <param name="culture"> An integer representing the culture identifier. </param> <param name="assembly"> An <see cref="T:System.Reflection.Assembly" /> that contains the string comparison methods to use. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assembly" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assembly" /> is of an invalid type. </exception> </member> <member name="M:System.Globalization.CompareInfo.GetCompareInfo(System.String)"> <summary> Initializes a new <see cref="T:System.Globalization.CompareInfo" /> object that is associated with the culture with the specified name. </summary> <returns> A new <see cref="T:System.Globalization.CompareInfo" /> object associated with the culture with the specified identifier and using string comparison methods in the current <see cref="T:System.Reflection.Assembly" />. </returns> <param name="name"> A string representing the culture name. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is an invalid culture name. </exception> </member> <member name="M:System.Globalization.CompareInfo.GetCompareInfo(System.String,System.Reflection.Assembly)"> <summary> Initializes a new <see cref="T:System.Globalization.CompareInfo" /> object that is associated with the specified culture and that uses string comparison methods in the specified <see cref="T:System.Reflection.Assembly" />. </summary> <returns> A new <see cref="T:System.Globalization.CompareInfo" /> object associated with the culture with the specified identifier and using string comparison methods in the current <see cref="T:System.Reflection.Assembly" />. </returns> <param name="name"> A string representing the culture name. </param> <param name="assembly"> An <see cref="T:System.Reflection.Assembly" /> that contains the string comparison methods to use. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="assembly" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is an invalid culture name. -or- <paramref name="assembly" /> is of an invalid type. </exception> </member> <member name="M:System.Globalization.CompareInfo.GetHashCode"> <summary> Serves as a hash function for the current <see cref="T:System.Globalization.CompareInfo" /> for hashing algorithms and data structures, such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Globalization.CompareInfo" />. </returns> </member> <member name="M:System.Globalization.CompareInfo.GetSortKey(System.String)"> <summary> Gets the sort key for the specified string. </summary> <returns> The <see cref="T:System.Globalization.SortKey" /> object that contains the sort key for the specified string. </returns> <param name="source"> The string for which a <see cref="T:System.Globalization.SortKey" /> object is obtained. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Globalization.CompareInfo.GetSortKey(System.String,System.Globalization.CompareOptions)"> <summary> Gets a <see cref="T:System.Globalization.SortKey" /> object for the specified string using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The <see cref="T:System.Globalization.SortKey" /> object that contains the sort key for the specified string. </returns> <param name="source"> The string for which a <see cref="T:System.Globalization.SortKey" /> object is obtained. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that define how the sort key is calculated. <paramref name="options" /> is a bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />, and <see cref="F:System.Globalization.CompareOptions.StringSort" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char)"> <summary> Searches for the specified character and returns the zero-based index of the first occurrence within the entire source string. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the entire <paramref name="source" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Globalization.CompareOptions)"> <summary> Searches for the specified character and returns the zero-based index of the first occurrence within the entire source string using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the entire <paramref name="source" /> using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how the strings should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32)"> <summary> Searches for the specified character and returns the zero-based index of the first occurrence within the section of the source string that extends from the specified index to the end of the string. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that extends from <paramref name="startIndex" /> to the end of <paramref name="source" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32,System.Globalization.CompareOptions)"> <summary> Searches for the specified character and returns the zero-based index of the first occurrence within the section of the source string that extends from the specified index to the end of the string using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that extends from <paramref name="startIndex" /> to the end of <paramref name="source" /> using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32,System.Int32)"> <summary> Searches for the specified character and returns the zero-based index of the first occurrence within the section of the source string that starts at the specified index and contains the specified number of elements. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that starts at <paramref name="startIndex" /> and contains the number of elements specified by <paramref name="count" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="count"> The number of elements in the section to search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="source" />. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32,System.Int32,System.Globalization.CompareOptions)"> <summary> Searches for the specified character and returns the zero-based index of the first occurrence within the section of the source string that starts at the specified index and contains the specified number of elements using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that starts at <paramref name="startIndex" /> and contains the number of elements specified by <paramref name="count" />, using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="count"> The number of elements in the section to search. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="source" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.String)"> <summary> Searches for the specified substring and returns the zero-based index of the first occurrence within the entire source string. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the entire <paramref name="source" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Globalization.CompareOptions)"> <summary> Searches for the specified substring and returns the zero-based index of the first occurrence within the entire source string using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the entire <paramref name="source" /> using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32)"> <summary> Searches for the specified substring and returns the zero-based index of the first occurrence within the section of the source string that extends from the specified index to the end of the string. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that extends from <paramref name="startIndex" /> to the end of <paramref name="source" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32,System.Globalization.CompareOptions)"> <summary> Searches for the specified substring and returns the zero-based index of the first occurrence within the section of the source string that extends from the specified index to the end of the string using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that extends from <paramref name="startIndex" /> to the end of <paramref name="source" /> using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32,System.Int32)"> <summary> Searches for the specified substring and returns the zero-based index of the first occurrence within the section of the source string that starts at the specified index and contains the specified number of elements. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that starts at <paramref name="startIndex" /> and contains the number of elements specified by <paramref name="count" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="count"> The number of elements in the section to search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="source" />. </exception> </member> <member name="M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)"> <summary> Searches for the specified substring and returns the zero-based index of the first occurrence within the section of the source string that starts at the specified index and contains the specified number of elements using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the first occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that starts at <paramref name="startIndex" /> and contains the number of elements specified by <paramref name="count" />, using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the search. </param> <param name="count"> The number of elements in the section to search. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="source" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.IsPrefix(System.String,System.String)"> <summary> Determines whether the specified source string starts with the specified prefix. </summary> <returns>true if the length of <paramref name="prefix" /> is less than or equal to the length of <paramref name="source" /> and <paramref name="source" /> starts with <paramref name="prefix" />; otherwise, false. </returns> <param name="source"> The string to search in. </param> <param name="prefix"> The string to compare with the beginning of <paramref name="source" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="prefix" /> is null. </exception> </member> <member name="M:System.Globalization.CompareInfo.IsPrefix(System.String,System.String,System.Globalization.CompareOptions)"> <summary> Determines whether the specified source string starts with the specified prefix using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns>true if the length of <paramref name="prefix" /> is less than or equal to the length of <paramref name="source" /> and <paramref name="source" /> starts with <paramref name="prefix" />; otherwise, false. </returns> <param name="source"> The string to search in. </param> <param name="prefix"> The string to compare with the beginning of <paramref name="source" />. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="prefix" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="prefix" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.IsSortable(System.Char)"> <summary> Indicates whether a specified Unicode character is sortable. </summary> <returns>true if the <paramref name="ch" /> parameter is sortable; otherwise, false. </returns> <param name="ch"> A Unicode character. </param> </member> <member name="M:System.Globalization.CompareInfo.IsSortable(System.String)"> <summary> Indicates whether a specified Unicode string is sortable. </summary> <returns>true if the <paramref name="str" /> parameter is not an empty string ("") and all the Unicode characters in <paramref name="str" /> are sortable; otherwise, false. </returns> <param name="text"> A string of zero or more Unicode characters. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> </member> <member name="M:System.Globalization.CompareInfo.IsSuffix(System.String,System.String)"> <summary> Determines whether the specified source string ends with the specified suffix. </summary> <returns>true if the length of <paramref name="suffix" /> is less than or equal to the length of <paramref name="source" /> and <paramref name="source" /> ends with <paramref name="suffix" />; otherwise, false. </returns> <param name="source"> The string to search in. </param> <param name="suffix"> The string to compare with the end of <paramref name="source" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="suffix" /> is null. </exception> </member> <member name="M:System.Globalization.CompareInfo.IsSuffix(System.String,System.String,System.Globalization.CompareOptions)"> <summary> Determines whether the specified source string ends with the specified suffix using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns>true if the length of <paramref name="suffix" /> is less than or equal to the length of <paramref name="source" /> and <paramref name="source" /> ends with <paramref name="suffix" />; otherwise, false. </returns> <param name="source"> The string to search in. </param> <param name="suffix"> The string to compare with the end of <paramref name="source" />. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="suffix" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="suffix" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char)"> <summary> Searches for the specified character and returns the zero-based index of the last occurrence within the entire source string. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the entire <paramref name="source" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Globalization.CompareOptions)"> <summary> Searches for the specified character and returns the zero-based index of the last occurrence within the entire source string using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the entire <paramref name="source" /> using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32)"> <summary> Searches for the specified character and returns the zero-based index of the last occurrence within the section of the source string that extends from the beginning of the string to the specified index. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that extends from the beginning of <paramref name="source" /> to <paramref name="startIndex" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32,System.Globalization.CompareOptions)"> <summary> Searches for the specified character and returns the zero-based index of the last occurrence within the section of the source string that extends from the beginning of the string to the specified index using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that extends from the beginning of <paramref name="source" /> to <paramref name="startIndex" /> using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32,System.Int32)"> <summary> Searches for the specified character and returns the zero-based index of the last occurrence within the section of the source string that contains the specified number of elements and ends at the specified index. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that contains the number of elements specified by <paramref name="count" /> and ends at <paramref name="startIndex" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="count"> The number of elements in the section to search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="source" />. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32,System.Int32,System.Globalization.CompareOptions)"> <summary> Searches for the specified character and returns the zero-based index of the last occurrence within the section of the source string that contains the specified number of elements and ends at the specified index using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that contains the number of elements specified by <paramref name="count" /> and ends at <paramref name="startIndex" /> using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The character to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="count"> The number of elements in the section to search. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="source" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String)"> <summary> Searches for the specified substring and returns the zero-based index of the last occurrence within the entire source string. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the entire <paramref name="source" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Globalization.CompareOptions)"> <summary> Searches for the specified substring and returns the zero-based index of the last occurrence within the entire source string using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the entire <paramref name="source" /> using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32)"> <summary> Searches for the specified substring and returns the zero-based index of the last occurrence within the section of the source string that extends from the beginning of the string to the specified index. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that extends from the beginning of <paramref name="source" /> to <paramref name="startIndex" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32,System.Globalization.CompareOptions)"> <summary> Searches for the specified substring and returns the zero-based index of the last occurrence within the section of the source string that extends from the beginning of the string to the specified index using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that extends from the beginning of <paramref name="source" /> to <paramref name="startIndex" /> using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32,System.Int32)"> <summary> Searches for the specified substring and returns the zero-based index of the last occurrence within the section of the source string that contains the specified number of elements and ends at the specified index. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that contains the number of elements specified by <paramref name="count" /> and ends at <paramref name="startIndex" />, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="count"> The number of elements in the section to search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="source" />. </exception> </member> <member name="M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)"> <summary> Searches for the specified substring and returns the zero-based index of the last occurrence within the section of the source string that contains the specified number of elements and ends at the specified index using the specified <see cref="T:System.Globalization.CompareOptions" /> value. </summary> <returns> The zero-based index of the last occurrence of <paramref name="value" /> within the section of <paramref name="source" /> that contains the number of elements specified by <paramref name="count" /> and ends at <paramref name="startIndex" /> using the specified <see cref="T:System.Globalization.CompareOptions" /> value, if found; otherwise, -1. </returns> <param name="source"> The string to search. </param> <param name="value"> The string to locate within <paramref name="source" />. </param> <param name="startIndex"> The zero-based starting index of the backward search. </param> <param name="count"> The number of elements in the section to search. </param> <param name="options"> The <see cref="T:System.Globalization.CompareOptions" /> value that defines how <paramref name="source" /> and <paramref name="value" /> should be compared. <paramref name="options" /> is either the value <see cref="F:System.Globalization.CompareOptions.Ordinal" /> used by itself, or the bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, and <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" /> is null. -or- <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> is outside the range of valid indexes for <paramref name="source" />. -or- <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in <paramref name="source" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="options" /> contains an invalid <see cref="T:System.Globalization.CompareOptions" /> value. </exception> </member> <member name="P:System.Globalization.CompareInfo.LCID"> <summary> Gets the properly formed culture identifier for the current <see cref="T:System.Globalization.CompareInfo" />. </summary> <returns> The properly formed culture identifier for the current <see cref="T:System.Globalization.CompareInfo" />. </returns> </member> <member name="P:System.Globalization.CompareInfo.Name"> <summary> Gets the name of the culture used for sorting operations by this <see cref="T:System.Globalization.CompareInfo" /> object. </summary> <returns> The name of a culture. </returns> </member> <member name="M:System.Globalization.CompareInfo.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)"> <summary> Runs when the entire object graph has been deserialized. </summary> <param name="sender"> The object that initiated the callback. </param> </member> <member name="M:System.Globalization.CompareInfo.ToString"> <summary> Returns a string that represents the current <see cref="T:System.Globalization.CompareInfo" />. </summary> <returns> A string that represents the current <see cref="T:System.Globalization.CompareInfo" />. </returns> </member> <member name="T:System.Globalization.CompareOptions"> <summary> Defines the string comparison options to use with <see cref="T:System.Globalization.CompareInfo" />. </summary> </member> <member name="F:System.Globalization.CompareOptions.None"> <summary> Indicates the default option settings for string comparisons. </summary> </member> <member name="F:System.Globalization.CompareOptions.IgnoreCase"> <summary> Indicates that the string comparison must ignore case. </summary> </member> <member name="F:System.Globalization.CompareOptions.IgnoreNonSpace"> <summary> Indicates that the string comparison must ignore nonspacing combining characters, such as diacritics. The Unicode Standard defines combining characters as characters that are combined with base characters to produce a new character. Nonspacing combining characters do not occupy a spacing position by themselves when rendered. For more information on nonspacing combining characters, see The Unicode Standard at the Unicode home page. </summary> </member> <member name="F:System.Globalization.CompareOptions.IgnoreSymbols"> <summary> Indicates that the string comparison must ignore symbols, such as white-space characters, punctuation, currency symbols, the percent sign, mathematical symbols, the ampersand, and so on. </summary> </member> <member name="F:System.Globalization.CompareOptions.IgnoreKanaType"> <summary> Indicates that the string comparison must ignore the Kana type. Kana type refers to Japanese hiragana and katakana characters, which represent phonetic sounds in the Japanese language. Hiragana is used for native Japanese expressions and words, while katakana is used for words borrowed from other languages, such as "computer" or "Internet". A phonetic sound can be expressed in both hiragana and katakana. If this value is selected, the hiragana character for one sound is considered equal to the katakana character for the same sound. </summary> </member> <member name="F:System.Globalization.CompareOptions.IgnoreWidth"> <summary> Indicates that the string comparison must ignore the character width. For example, Japanese katakana characters can be written as full-width or half-width. If this value is selected, the katakana characters written as full-width are considered equal to the same characters written as half-width. </summary> </member> <member name="F:System.Globalization.CompareOptions.OrdinalIgnoreCase"> <summary> String comparison must ignore case, then perform an ordinal comparison. This technique is equivalent to converting the string to uppercase using the invariant culture and then performing an ordinal comparison on the result. </summary> </member> <member name="F:System.Globalization.CompareOptions.StringSort"> <summary> Indicates that the string comparison must use the string sort algorithm. In a string sort, the hyphen and the apostrophe, as well as other nonalphanumeric symbols, come before alphanumeric characters. </summary> </member> <member name="F:System.Globalization.CompareOptions.Ordinal"> <summary> Indicates that the string comparison must use the Unicode values of each character, leading to a fast comparison but one that is culture-insensitive. A string starting with "U+xxxx" comes before a string starting with "U+yyyy", if xxxx is less than yyyy. This value cannot be combined with other <see cref="T:System.Globalization.CompareOptions" /> values and must be used alone. </summary> </member> <member name="T:System.Globalization.CultureInfo"> <summary> Provides information about a specific culture (called a "locale" for unmanaged code development). The information includes the names for the culture, the writing system, the calendar used, and formatting for dates and sort strings. </summary> </member> <member name="M:System.Globalization.CultureInfo.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.CultureInfo" /> class based on the culture specified by the culture identifier. </summary> <param name="culture"> A predefined <see cref="T:System.Globalization.CultureInfo" /> identifier, <see cref="P:System.Globalization.CultureInfo.LCID" /> property of an existing <see cref="T:System.Globalization.CultureInfo" /> object, or Windows-only culture identifier. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="culture" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="culture" /> is not a valid culture identifier. -or- In .NET Compact Framework applications, <paramref name="culture" /> is not supported by the operating system of the device. </exception> </member> <member name="M:System.Globalization.CultureInfo.#ctor(System.Int32,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.CultureInfo" /> class based on the culture specified by the culture identifier and on the Boolean that specifies whether to use the user-selected culture settings from the system. </summary> <param name="culture"> A predefined <see cref="T:System.Globalization.CultureInfo" /> identifier, <see cref="P:System.Globalization.CultureInfo.LCID" /> property of an existing <see cref="T:System.Globalization.CultureInfo" /> object, or Windows-only culture identifier. </param> <param name="useUserOverride"> A Boolean that denotes whether to use the user-selected culture settings (true) or the default culture settings (false). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="culture" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="culture" /> is not a valid culture identifier. -or- In .NET Compact Framework applications, <paramref name="culture" /> is not supported by the operating system of the device. </exception> </member> <member name="M:System.Globalization.CultureInfo.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.CultureInfo" /> class based on the culture specified by name. </summary> <param name="name"> A predefined <see cref="T:System.Globalization.CultureInfo" /> name, <see cref="P:System.Globalization.CultureInfo.Name" /> of an existing <see cref="T:System.Globalization.CultureInfo" />, or Windows-only culture name. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is not a valid culture name. -or- In .NET Compact Framework applications, <paramref name="culture" /> is not supported by the operating system of the device. </exception> </member> <member name="M:System.Globalization.CultureInfo.#ctor(System.String,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.CultureInfo" /> class based on the culture specified by name and on the Boolean that specifies whether to use the user-selected culture settings from the system. </summary> <param name="name"> A predefined <see cref="T:System.Globalization.CultureInfo" /> name, <see cref="P:System.Globalization.CultureInfo.Name" /> of an existing <see cref="T:System.Globalization.CultureInfo" />, or Windows-only culture name. </param> <param name="useUserOverride"> A Boolean that denotes whether to use the user-selected culture settings (true) or the default culture settings (false). </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is not a valid culture name. -or- In .NET Compact Framework applications, <paramref name="culture" /> is not supported by the operating system of the device. </exception> </member> <member name="P:System.Globalization.CultureInfo.Calendar"> <summary> Gets the default calendar used by the culture. </summary> <returns> A <see cref="T:System.Globalization.Calendar" /> that represents the default calendar used by the culture. </returns> </member> <member name="M:System.Globalization.CultureInfo.ClearCachedData"> <summary> Refreshes cached culture-related information. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Globalization.CultureInfo.Clone"> <summary> Creates a copy of the current <see cref="T:System.Globalization.CultureInfo" />. </summary> <returns> A copy of the current <see cref="T:System.Globalization.CultureInfo" />. </returns> </member> <member name="P:System.Globalization.CultureInfo.CompareInfo"> <summary> Gets the <see cref="T:System.Globalization.CompareInfo" /> that defines how to compare strings for the culture. </summary> <returns> The <see cref="T:System.Globalization.CompareInfo" /> that defines how to compare strings for the culture. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Globalization.CultureInfo.CreateSpecificCulture(System.String)"> <summary> Creates a <see cref="T:System.Globalization.CultureInfo" /> that represents the specific culture that is associated with the specified name. </summary> <returns> A <see cref="T:System.Globalization.CultureInfo" /> that represents: The invariant culture, if <paramref name="name" /> is an empty string (""). -or- The specific culture associated with <paramref name="name" />, if <paramref name="name" /> is a neutral culture. -or- The culture specified by <paramref name="name" />, if <paramref name="name" /> is already a specific culture. </returns> <param name="name"> A predefined <see cref="T:System.Globalization.CultureInfo" /> name or the name of an existing <see cref="T:System.Globalization.CultureInfo" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is not a valid culture name. -or- The culture specified by <paramref name="name" /> does not have a specific culture associated with it. For example: "zh-Hans" or "zh-Hant". </exception> <exception cref="T:System.NullReferenceException"> <paramref name="name" /> is null. </exception> </member> <member name="P:System.Globalization.CultureInfo.CultureTypes"> <summary> Gets the culture types that pertain to the current <see cref="T:System.Globalization.CultureInfo" /> object. </summary> <returns> A bitwise combination of one or more <see cref="T:System.Globalization.CultureTypes" /> values. There is no default value. </returns> </member> <member name="P:System.Globalization.CultureInfo.CurrentCulture"> <summary> Gets the <see cref="T:System.Globalization.CultureInfo" /> that represents the culture used by the current thread. </summary> <returns> The <see cref="T:System.Globalization.CultureInfo" /> that represents the culture used by the current thread. </returns> </member> <member name="P:System.Globalization.CultureInfo.CurrentUICulture"> <summary> Gets the <see cref="T:System.Globalization.CultureInfo" /> that represents the current culture used by the Resource Manager to look up culture-specific resources at run time. </summary> <returns> The <see cref="T:System.Globalization.CultureInfo" /> that represents the current culture used by the Resource Manager to look up culture-specific resources at run time. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Globalization.CultureInfo.DateTimeFormat"> <summary> Gets or sets a <see cref="T:System.Globalization.DateTimeFormatInfo" /> that defines the culturally appropriate format of displaying dates and times. </summary> <returns> A <see cref="T:System.Globalization.DateTimeFormatInfo" /> that defines the culturally appropriate format of displaying dates and times. </returns> <exception cref="T:System.ArgumentNullException"> The property is set to null. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Globalization.CultureInfo" /> is for a neutral culture. </exception> <exception cref="T:System.InvalidOperationException"> The <see cref="P:System.Globalization.CultureInfo.DateTimeFormat" /> property or any of the <see cref="T:System.Globalization.DateTimeFormatInfo" /> properties is set, and the <see cref="T:System.Globalization.CultureInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.CultureInfo.DisplayName"> <summary> Gets the culture name in the format "<languagefull> (<country/regionfull>)" in the language of the localized version of .NET Framework. </summary> <returns> The culture name in the format "<languagefull> (<country/regionfull>)" in the language of the localized version of .NET Framework, where <languagefull> is the full name of the language and <country/regionfull> is the full name of the country/region. </returns> </member> <member name="P:System.Globalization.CultureInfo.EnglishName"> <summary> Gets the culture name in the format "<languagefull> (<country/regionfull>)" in English. </summary> <returns> The culture name in the format "<languagefull> (<country/regionfull>)" in English, where <languagefull> is the full name of the language and <country/regionfull> is the full name of the country/region. </returns> </member> <member name="M:System.Globalization.CultureInfo.Equals(System.Object)"> <summary> Determines whether the specified object is the same culture as the current <see cref="T:System.Globalization.CultureInfo" />. </summary> <returns>true if <paramref name="value" /> is the same culture as the current <see cref="T:System.Globalization.CultureInfo" />; otherwise, false. </returns> <param name="value"> The object to compare with the current <see cref="T:System.Globalization.CultureInfo" />. </param> </member> <member name="M:System.Globalization.CultureInfo.GetConsoleFallbackUICulture"> <summary> Gets an alternate user interface culture suitable for console applications when the default graphic user interface culture is unsuitable. </summary> <returns> An alternate neutral culture that is used to read and display text on the console. </returns> </member> <member name="M:System.Globalization.CultureInfo.GetCultureInfo(System.Int32)"> <summary> Retrieves a cached, read-only instance of a culture using the specified culture identifier. </summary> <returns> A read-only <see cref="T:System.Globalization.CultureInfo" /> object. </returns> <param name="culture"> A culture identifier. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="culture" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="culture" /> specifies a culture that is not supported. </exception> </member> <member name="M:System.Globalization.CultureInfo.GetCultureInfo(System.String)"> <summary> Retrieves a cached, read-only instance of a culture using the specified culture name. </summary> <returns> A read-only <see cref="T:System.Globalization.CultureInfo" /> object. </returns> <param name="name"> The name of a culture. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> specifies a culture that is not supported. </exception> </member> <member name="M:System.Globalization.CultureInfo.GetCultureInfo(System.String,System.String)"> <summary> Retrieves a cached, read-only instance of a culture. Parameters specify a culture that is initialized with the <see cref="T:System.Globalization.TextInfo" /> and <see cref="T:System.Globalization.CompareInfo" /> objects specified by another culture. </summary> <returns> A read-only <see cref="T:System.Globalization.CultureInfo" /> object. </returns> <param name="name"> The name of a culture. </param> <param name="altName"> The name of a culture that supplies the <see cref="T:System.Globalization.TextInfo" /> and <see cref="T:System.Globalization.CompareInfo" /> objects used to initialize <paramref name="name" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="altName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> or <paramref name="altName" /> specifies a culture that is not supported. </exception> </member> <member name="M:System.Globalization.CultureInfo.GetCultureInfoByIetfLanguageTag(System.String)"> <summary> Deprecated. Retrieves a read-only <see cref="T:System.Globalization.CultureInfo" /> object having linguistic characteristics that are identified by the specified RFC 4646 language tag. </summary> <returns> A read-only <see cref="T:System.Globalization.CultureInfo" /> object. </returns> <param name="name"> The name of a language as specified by the RFC 4646 standard. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> does not correspond to a supported culture. </exception> </member> <member name="M:System.Globalization.CultureInfo.GetCultures(System.Globalization.CultureTypes)"> <summary> Gets the list of supported cultures filtered by the specified <see cref="T:System.Globalization.CultureTypes" /> parameter. </summary> <returns> An array of type <see cref="T:System.Globalization.CultureInfo" /> that contains the cultures specified by the <paramref name="types" /> parameter. The array of cultures is unsorted. </returns> <param name="types"> A bitwise combination of <see cref="T:System.Globalization.CultureTypes" /> values that filter the cultures to retrieve. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="types" /> specifies an invalid combination of <see cref="T:System.Globalization.CultureTypes" /> values. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Globalization.CultureInfo.GetFormat(System.Type)"> <summary> Gets an object that defines how to format the specified type. </summary> <returns> The value of the <see cref="P:System.Globalization.CultureInfo.NumberFormat" /> property, which is a <see cref="T:System.Globalization.NumberFormatInfo" /> containing the default number format information for the current <see cref="T:System.Globalization.CultureInfo" />, if <paramref name="formatType" /> is the <see cref="T:System.Type" /> object for the <see cref="T:System.Globalization.NumberFormatInfo" /> class. -or- The value of the <see cref="P:System.Globalization.CultureInfo.DateTimeFormat" /> property, which is a <see cref="T:System.Globalization.DateTimeFormatInfo" /> containing the default date and time format information for the current <see cref="T:System.Globalization.CultureInfo" />, if <paramref name="formatType" /> is the <see cref="T:System.Type" /> object for the <see cref="T:System.Globalization.DateTimeFormatInfo" /> class. -or- null, if <paramref name="formatType" /> is any other object. </returns> <param name="formatType"> The <see cref="T:System.Type" /> for which to get a formatting object. This method only supports the <see cref="T:System.Globalization.NumberFormatInfo" /> and <see cref="T:System.Globalization.DateTimeFormatInfo" /> types. </param> </member> <member name="M:System.Globalization.CultureInfo.GetHashCode"> <summary> Serves as a hash function for the current <see cref="T:System.Globalization.CultureInfo" />, suitable for hashing algorithms and data structures, such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Globalization.CultureInfo" />. </returns> </member> <member name="P:System.Globalization.CultureInfo.IetfLanguageTag"> <summary> Deprecated. Gets the RFC 4646 standard identification for a language. </summary> <returns> A string that is the RFC 4646 standard identification for a language. </returns> </member> <member name="P:System.Globalization.CultureInfo.InstalledUICulture"> <summary> Gets the <see cref="T:System.Globalization.CultureInfo" /> that represents the culture installed with the operating system. </summary> <returns> The <see cref="T:System.Globalization.CultureInfo" /> that represents the culture installed with the operating system. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Globalization.CultureInfo.InvariantCulture"> <summary> Gets the <see cref="T:System.Globalization.CultureInfo" /> that is culture-independent (invariant). </summary> <returns> The <see cref="T:System.Globalization.CultureInfo" /> that is culture-independent (invariant). </returns> </member> <member name="P:System.Globalization.CultureInfo.IsNeutralCulture"> <summary> Gets a value indicating whether the current <see cref="T:System.Globalization.CultureInfo" /> represents a neutral culture. </summary> <returns>true if the current <see cref="T:System.Globalization.CultureInfo" /> represents a neutral culture; otherwise, false. </returns> </member> <member name="P:System.Globalization.CultureInfo.IsReadOnly"> <summary> Gets a value indicating whether the current <see cref="T:System.Globalization.CultureInfo" /> is read-only. </summary> <returns>true if the current <see cref="T:System.Globalization.CultureInfo" /> is read-only; otherwise, false. The default is false. </returns> </member> <member name="P:System.Globalization.CultureInfo.KeyboardLayoutId"> <summary> Gets the active input locale identifier. </summary> <returns> A 32-bit signed number that specifies an input locale identifier. </returns> </member> <member name="P:System.Globalization.CultureInfo.LCID"> <summary> Gets the culture identifier for the current <see cref="T:System.Globalization.CultureInfo" />. </summary> <returns> The culture identifier for the current <see cref="T:System.Globalization.CultureInfo" />. </returns> </member> <member name="P:System.Globalization.CultureInfo.Name"> <summary> Gets the culture name in the format "<languagecode2>-<country/regioncode2>". </summary> <returns> The culture name in the format "<languagecode2>-<country/regioncode2>", where <languagecode2> is a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> is an uppercase two-letter code derived from ISO 3166. </returns> </member> <member name="P:System.Globalization.CultureInfo.NativeName"> <summary> Gets the culture name, consisting of the language, the country/region, and the optional script, that the culture is set to display. </summary> <returns> The culture name. consisting of the full name of the language, the full name of the country/region, and the optional script. The format is discussed in the description of the <see cref="T:System.Globalization.CultureInfo" /> class. </returns> </member> <member name="P:System.Globalization.CultureInfo.NumberFormat"> <summary> Gets or sets a <see cref="T:System.Globalization.NumberFormatInfo" /> that defines the culturally appropriate format of displaying numbers, currency, and percentage. </summary> <returns> A <see cref="T:System.Globalization.NumberFormatInfo" /> that defines the culturally appropriate format of displaying numbers, currency, and percentage. </returns> <exception cref="T:System.ArgumentNullException"> The property is set to null. </exception> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Globalization.CultureInfo" /> is for a neutral culture. </exception> <exception cref="T:System.InvalidOperationException"> The <see cref="P:System.Globalization.CultureInfo.NumberFormat" /> property or any of the <see cref="T:System.Globalization.NumberFormatInfo" /> properties is set, and the <see cref="T:System.Globalization.CultureInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.CultureInfo.OptionalCalendars"> <summary> Gets the list of calendars that can be used by the culture. </summary> <returns> An array of type <see cref="T:System.Globalization.Calendar" /> that represents the calendars that can be used by the culture represented by the current <see cref="T:System.Globalization.CultureInfo" />. </returns> </member> <member name="P:System.Globalization.CultureInfo.Parent"> <summary> Gets the <see cref="T:System.Globalization.CultureInfo" /> that represents the parent culture of the current <see cref="T:System.Globalization.CultureInfo" />. </summary> <returns> The <see cref="T:System.Globalization.CultureInfo" /> that represents the parent culture of the current <see cref="T:System.Globalization.CultureInfo" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Globalization.CultureInfo.ReadOnly(System.Globalization.CultureInfo)"> <summary> Returns a read-only wrapper around the specified <see cref="T:System.Globalization.CultureInfo" />. </summary> <returns> A read-only <see cref="T:System.Globalization.CultureInfo" /> wrapper around <paramref name="ci" />. </returns> <param name="ci"> The <see cref="T:System.Globalization.CultureInfo" /> to wrap. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="ci" /> is null. </exception> </member> <member name="P:System.Globalization.CultureInfo.TextInfo"> <summary> Gets the <see cref="T:System.Globalization.TextInfo" /> that defines the writing system associated with the culture. </summary> <returns> The <see cref="T:System.Globalization.TextInfo" /> that defines the writing system associated with the culture. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Globalization.CultureInfo.ThreeLetterISOLanguageName"> <summary> Gets the ISO 639-2 three-letter code for the language of the current <see cref="T:System.Globalization.CultureInfo" />. </summary> <returns> The ISO 639-2 three-letter code for the language of the current <see cref="T:System.Globalization.CultureInfo" />. </returns> </member> <member name="P:System.Globalization.CultureInfo.ThreeLetterWindowsLanguageName"> <summary> Gets the three-letter code for the language as defined in the Windows API. </summary> <returns> The three-letter code for the language as defined in the Windows API. </returns> </member> <member name="M:System.Globalization.CultureInfo.ToString"> <summary> Returns a string containing the name of the current <see cref="T:System.Globalization.CultureInfo" /> in the format "<languagecode2>-<country/regioncode2>". </summary> <returns> A string containing the name of the current <see cref="T:System.Globalization.CultureInfo" />. </returns> </member> <member name="P:System.Globalization.CultureInfo.TwoLetterISOLanguageName"> <summary> Gets the ISO 639-1 two-letter code for the language of the current <see cref="T:System.Globalization.CultureInfo" />. </summary> <returns> The ISO 639-1 two-letter code for the language of the current <see cref="T:System.Globalization.CultureInfo" />. </returns> </member> <member name="P:System.Globalization.CultureInfo.UseUserOverride"> <summary> Gets a value indicating whether the current <see cref="T:System.Globalization.CultureInfo" /> uses the user-selected culture settings. </summary> <returns>true if the current <see cref="T:System.Globalization.CultureInfo" /> uses the user-selected culture settings; otherwise, false. </returns> </member> <member name="T:System.Globalization.CultureTypes"> <summary> Defines the types of culture lists that can be retrieved using <see cref="M:System.Globalization.CultureInfo.GetCultures(System.Globalization.CultureTypes)" />. </summary> </member> <member name="F:System.Globalization.CultureTypes.NeutralCultures"> <summary> Cultures that are associated with a language but are not specific to a country/region. The names of .NET Framework cultures consist of the lowercase two-letter code derived from ISO 639-1. For example: "en" (English) is a neutral culture. </summary> </member> <member name="F:System.Globalization.CultureTypes.SpecificCultures"> <summary> Cultures that are specific to a country/region. The names of these cultures follow RFC 4646 (Windows Vista and later). The format is "<languagecode2>-<country/regioncode2>", where <languagecode2> is a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> is an uppercase two-letter code derived from ISO 3166. For example, "en-US" for English (United States) is a specific culture. </summary> </member> <member name="F:System.Globalization.CultureTypes.InstalledWin32Cultures"> <summary> All cultures that are installed in the Windows operating system. Note that not all cultures supported by the .NET Framework are installed in the operating system. </summary> </member> <member name="F:System.Globalization.CultureTypes.AllCultures"> <summary> All cultures that ship with the .NET Framework, including neutral and specific cultures, cultures installed in the Windows operating system, and custom cultures created by the user. </summary> </member> <member name="F:System.Globalization.CultureTypes.UserCustomCulture"> <summary> Custom cultures created by the user. </summary> </member> <member name="F:System.Globalization.CultureTypes.ReplacementCultures"> <summary> Custom cultures created by the user that replace cultures shipped with the .NET Framework. </summary> </member> <member name="F:System.Globalization.CultureTypes.WindowsOnlyCultures"> <summary> Cultures installed in the Windows operating system but not the .NET Framework. </summary> </member> <member name="F:System.Globalization.CultureTypes.FrameworkCultures"> <summary> Neutral and specific cultures shipped with the .NET Framework. </summary> </member> <member name="T:System.Globalization.DateTimeFormatInfo"> <summary> Defines how <see cref="T:System.DateTime" /> values are formatted and displayed, depending on the culture. </summary> </member> <member name="M:System.Globalization.DateTimeFormatInfo.#ctor"> <summary> Initializes a new writable instance of the <see cref="T:System.Globalization.DateTimeFormatInfo" /> class that is culture-independent (invariant). </summary> </member> <member name="P:System.Globalization.DateTimeFormatInfo.AbbreviatedDayNames"> <summary> Gets or sets a one-dimensional array of type <see cref="T:System.String" /> containing the culture-specific abbreviated names of the days of the week. </summary> <returns> A one-dimensional array of type <see cref="T:System.String" /> containing the culture-specific abbreviated names of the days of the week. The array for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> contains "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", and "Sat". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.ArgumentException"> The property is being set to an array that is multidimensional or that has a length that is not exactly 7. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.AbbreviatedMonthGenitiveNames"> <summary> Gets or sets a string array of abbreviated month names associated with the current <see cref="T:System.Globalization.DateTimeFormatInfo" /> object. </summary> <returns> A string array of abbreviated month names. </returns> <exception cref="T:System.ArgumentNullException"> In a set operation, the value array or one of the elements of the value array is null. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.AbbreviatedMonthNames"> <summary> Gets or sets a one-dimensional array of type <see cref="T:System.String" /> containing the culture-specific abbreviated names of the months. </summary> <returns> A one-dimensional array of type <see cref="T:System.String" /> containing the culture-specific abbreviated names of the months. In a 12-month calendar, the 13th element of the array is an empty string. The array for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> contains "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", and "". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.ArgumentException"> The property is being set to an array that is multidimensional or that has a length that is not exactly 13. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.AMDesignator"> <summary> Gets or sets the string designator for hours that are "ante meridiem" (before noon). </summary> <returns> The string designator for hours that are "ante meridiem" (before noon). The default for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> is "AM". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.Calendar"> <summary> Gets or sets the calendar to use for the current culture. </summary> <returns> The <see cref="T:System.Globalization.Calendar" /> indicating the calendar to use for the current culture. The default for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> is the <see cref="T:System.Globalization.GregorianCalendar" />. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.ArgumentException"> The property is being set to a <see cref="T:System.Globalization.Calendar" /> that is not valid for the current culture. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.CalendarWeekRule"> <summary> Gets or sets a value that specifies which rule is used to determine the first calendar week of the year. </summary> <returns> A <see cref="T:System.Globalization.CalendarWeekRule" /> value that determines the first calendar week of the year. The default for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> is <see cref="F:System.Globalization.CalendarWeekRule.FirstDay" />. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to a value that is not a valid <see cref="T:System.Globalization.CalendarWeekRule" /> value. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.Clone"> <summary> Creates a shallow copy of the <see cref="T:System.Globalization.DateTimeFormatInfo" />. </summary> <returns> A new <see cref="T:System.Globalization.DateTimeFormatInfo" /> copied from the original <see cref="T:System.Globalization.DateTimeFormatInfo" />. </returns> </member> <member name="P:System.Globalization.DateTimeFormatInfo.CurrentInfo"> <summary> Gets a read-only <see cref="T:System.Globalization.DateTimeFormatInfo" /> object that formats values based on the current culture. </summary> <returns> A read-only <see cref="T:System.Globalization.DateTimeFormatInfo" /> object based on the <see cref="T:System.Globalization.CultureInfo" /> object for the current thread. </returns> </member> <member name="P:System.Globalization.DateTimeFormatInfo.DateSeparator"> <summary> Gets or sets the string that separates the components of a date, that is, the year, month, and day. </summary> <returns> The string that separates the components of a date, that is, the year, month, and day. The default for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> is "/". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.DayNames"> <summary> Gets or sets a one-dimensional array of type <see cref="T:System.String" /> containing the culture-specific full names of the days of the week. </summary> <returns> A one-dimensional array of type <see cref="T:System.String" /> containing the culture-specific full names of the days of the week. The array for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> contains "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", and "Saturday". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.ArgumentException"> The property is being set to an array that is multidimensional or that has a length that is not exactly 7. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.FirstDayOfWeek"> <summary> Gets or sets the first day of the week. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value representing the first day of the week. The default for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> is <see cref="F:System.DayOfWeek.Sunday" />. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to a value that is not a valid <see cref="T:System.DayOfWeek" /> value. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.FullDateTimePattern"> <summary> Gets or sets the format pattern for a long date and long time value, which is associated with the "F" format pattern. </summary> <returns> The format pattern for a long date and long time value, which is associated with the "F" format pattern. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetAbbreviatedDayName(System.DayOfWeek)"> <summary> Returns the culture-specific abbreviated name of the specified day of the week based on the culture associated with the current <see cref="T:System.Globalization.DateTimeFormatInfo" /> object. </summary> <returns> The culture-specific abbreviated name of the day of the week represented by <paramref name="dayofweek" />. </returns> <param name="dayofweek"> A <see cref="T:System.DayOfWeek" /> value. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="dayofweek" /> is not a valid <see cref="T:System.DayOfWeek" /> value. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetAbbreviatedEraName(System.Int32)"> <summary> Returns the string containing the abbreviated name of the specified era, if an abbreviation exists. </summary> <returns> A string containing the abbreviated name of the specified era, if an abbreviation exists. -or- A string containing the full name of the era, if an abbreviation does not exist. </returns> <param name="era"> The integer representing the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> does not represent a valid era in the calendar specified in the <see cref="P:System.Globalization.DateTimeFormatInfo.Calendar" /> property. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetAbbreviatedMonthName(System.Int32)"> <summary> Returns the culture-specific abbreviated name of the specified month based on the culture associated with the current <see cref="T:System.Globalization.DateTimeFormatInfo" /> object. </summary> <returns> The culture-specific abbreviated name of the month represented by <paramref name="month" />. </returns> <param name="month"> An integer from 1 through 13 representing the name of the month to retrieve. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="month" /> is less than 1 or greater than 13. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetAllDateTimePatterns"> <summary> Returns all the standard patterns in which <see cref="T:System.DateTime" /> values can be formatted. </summary> <returns> An array containing the standard patterns in which <see cref="T:System.DateTime" /> values can be formatted. </returns> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetAllDateTimePatterns(System.Char)"> <summary> Returns all the standard patterns in which <see cref="T:System.DateTime" /> values can be formatted using the specified format pattern. </summary> <returns> An array containing the standard patterns in which <see cref="T:System.DateTime" /> values can be formatted using the specified format pattern. </returns> <param name="format"> A standard format pattern. </param> <exception cref="T:System.ArgumentException"> <paramref name="format" /> is not a valid standard format pattern. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetDayName(System.DayOfWeek)"> <summary> Returns the culture-specific full name of the specified day of the week based on the culture associated with the current <see cref="T:System.Globalization.DateTimeFormatInfo" /> object. </summary> <returns> The culture-specific full name of the day of the week represented by <paramref name="dayofweek" />. </returns> <param name="dayofweek"> A <see cref="T:System.DayOfWeek" /> value. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="dayofweek" /> is not a valid <see cref="T:System.DayOfWeek" /> value. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetEra(System.String)"> <summary> Returns the integer representing the specified era. </summary> <returns> The integer representing the era, if <paramref name="eraName" /> is valid; otherwise, -1. </returns> <param name="eraName"> The string containing the name of the era. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="eraName" /> is null. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetEraName(System.Int32)"> <summary> Returns the string containing the name of the specified era. </summary> <returns> A string containing the name of the era. </returns> <param name="era"> The integer representing the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> does not represent a valid era in the calendar specified in the <see cref="P:System.Globalization.DateTimeFormatInfo.Calendar" /> property. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetFormat(System.Type)"> <summary> Returns an object of the specified type that provides a <see cref="T:System.DateTime" /> formatting service. </summary> <returns> The current <see cref="T:System.Globalization.DateTimeFormatInfo" />, if <paramref name="formatType" /> is the same as the type of the current <see cref="T:System.Globalization.DateTimeFormatInfo" />; otherwise, null. </returns> <param name="formatType"> The <see cref="T:System.Type" /> of the required formatting service. </param> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetInstance(System.IFormatProvider)"> <summary> Returns the <see cref="T:System.Globalization.DateTimeFormatInfo" /> associated with the specified <see cref="T:System.IFormatProvider" />. </summary> <returns> A <see cref="T:System.Globalization.DateTimeFormatInfo" /> associated with the specified <see cref="T:System.IFormatProvider" />. </returns> <param name="provider"> The <see cref="T:System.IFormatProvider" /> that gets the <see cref="T:System.Globalization.DateTimeFormatInfo" />. -or- null to get <see cref="P:System.Globalization.DateTimeFormatInfo.CurrentInfo" />. </param> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetMonthName(System.Int32)"> <summary> Returns the culture-specific full name of the specified month based on the culture associated with the current <see cref="T:System.Globalization.DateTimeFormatInfo" /> object. </summary> <returns> The culture-specific full name of the month represented by <paramref name="month" />. </returns> <param name="month"> An integer from 1 through 13 representing the name of the month to retrieve. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="month" /> is less than 1 or greater than 13. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.GetShortestDayName(System.DayOfWeek)"> <summary> Obtains the shortest abbreviated day name for a specified day of the week associated with the current <see cref="T:System.Globalization.DateTimeFormatInfo" /> object. </summary> <returns> The abbreviated name of the week that corresponds to the <paramref name="dayOfWeek" /> parameter. </returns> <param name="dayOfWeek"> One of the <see cref="T:System.DayOfWeek" /> values. </param> </member> <member name="P:System.Globalization.DateTimeFormatInfo.InvariantInfo"> <summary> Gets the default read-only <see cref="T:System.Globalization.DateTimeFormatInfo" /> that is culture-independent (invariant). </summary> <returns> The default read-only <see cref="T:System.Globalization.DateTimeFormatInfo" /> object that is culture-independent (invariant). </returns> </member> <member name="P:System.Globalization.DateTimeFormatInfo.IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Globalization.DateTimeFormatInfo" /> object is read-only. </summary> <returns>true if the <see cref="T:System.Globalization.DateTimeFormatInfo" /> object is read-only; otherwise, false. </returns> </member> <member name="P:System.Globalization.DateTimeFormatInfo.LongDatePattern"> <summary> Gets or sets the format pattern for a long date value, which is associated with the "D" format pattern. </summary> <returns> The format pattern for a long date value, which is associated with the "D" format pattern. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.LongTimePattern"> <summary> Gets or sets the format pattern for a long time value, which is associated with the "T" format pattern. </summary> <returns> The format pattern for a long time value, which is associated with the "T" format pattern. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.MonthDayPattern"> <summary> Gets or sets the format pattern for a month and day value, which is associated with the "m" and "M" format patterns. </summary> <returns> The format pattern for a month and day value, which is associated with the "m" and "M" format patterns. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.MonthGenitiveNames"> <summary> Gets or sets a string array of month names associated with the current <see cref="T:System.Globalization.DateTimeFormatInfo" /> object. </summary> <returns> A string array of month names. </returns> <exception cref="T:System.ArgumentNullException"> In a set operation, the value array or one of the elements of the value array is null. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.MonthNames"> <summary> Gets or sets a one-dimensional array of type <see cref="T:System.String" /> containing the culture-specific full names of the months. </summary> <returns> A one-dimensional array of type <see cref="T:System.String" /> containing the culture-specific full names of the months. In a 12-month calendar, the 13th element of the array is an empty string. The array for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> contains "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", and "". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.ArgumentException"> The property is being set to an array that is multidimensional or that has a length that is not exactly 13. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.NativeCalendarName"> <summary> Gets the native name of the calendar associated with the current <see cref="T:System.Globalization.DateTimeFormatInfo" /> object. </summary> <returns> The native name of the calendar used in the culture associated with the current <see cref="T:System.Globalization.DateTimeFormatInfo" /> object if that name is available, or the empty string ("") if the native calendar name is not available. </returns> </member> <member name="P:System.Globalization.DateTimeFormatInfo.PMDesignator"> <summary> Gets or sets the string designator for hours that are "post meridiem" (after noon). </summary> <returns> The string designator for hours that are "post meridiem" (after noon). The default for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> is "PM". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="M:System.Globalization.DateTimeFormatInfo.ReadOnly(System.Globalization.DateTimeFormatInfo)"> <summary> Returns a read-only <see cref="T:System.Globalization.DateTimeFormatInfo" /> wrapper. </summary> <returns> A read-only <see cref="T:System.Globalization.DateTimeFormatInfo" /> wrapper around <paramref name="dtfi" />. </returns> <param name="dtfi"> The <see cref="T:System.Globalization.DateTimeFormatInfo" /> to wrap. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="dtfi" /> is null. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.RFC1123Pattern"> <summary> Gets the format pattern for a time value, which is based on the Internet Engineering Task Force (IETF) Request for Comments (RFC) 1123 specification and is associated with the "r" and "R" format patterns. </summary> <returns> The format pattern for a time value, which is based on the IETF RFC 1123 specification and is associated with the "r" and "R" format patterns. </returns> </member> <member name="M:System.Globalization.DateTimeFormatInfo.SetAllDateTimePatterns(System.String[],System.Char)"> <summary> Sets all the standard patterns in which a <see cref="T:System.DateTime" /> value can be formatted. </summary> <param name="patterns"> A string array of format patterns. </param> <param name="format"> The standard format pattern associated with the patterns specified in the <paramref name="patterns" /> parameter. </param> </member> <member name="P:System.Globalization.DateTimeFormatInfo.ShortDatePattern"> <summary> Gets or sets the format pattern for a short date value, which is associated with the "d" format pattern. </summary> <returns> The format pattern for a short date value, which is associated with the "d" format pattern. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.ShortestDayNames"> <summary> Gets or sets a string array of the shortest unique abbreviated day names associated with the current <see cref="T:System.Globalization.DateTimeFormatInfo" /> object. </summary> <returns> A string array of day names. </returns> <exception cref="T:System.ArgumentNullException"> In a set operation, the value array or one of the elements of the value array is null. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.ShortTimePattern"> <summary> Gets or sets the format pattern for a short time value, which is associated with the "t" format pattern. </summary> <returns> The format pattern for a short time value, which is associated with the "t" format pattern. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.SortableDateTimePattern"> <summary> Gets the format pattern for a sortable date and time value, which is associated with the "s" format pattern. </summary> <returns> The format pattern for a sortable date and time value, which is associated with the "s" format pattern. </returns> </member> <member name="P:System.Globalization.DateTimeFormatInfo.TimeSeparator"> <summary> Gets or sets the string that separates the components of time, that is, the hour, minutes, and seconds. </summary> <returns> The string that separates the components of time. The default for <see cref="P:System.Globalization.DateTimeFormatInfo.InvariantInfo" /> is ":". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.DateTimeFormatInfo.UniversalSortableDateTimePattern"> <summary> Gets the format pattern for a universal sortable date and time value, which is associated with the "u" format pattern. </summary> <returns> The format pattern for a universal sortable date and time value, which is associated with the "u" format pattern. </returns> </member> <member name="P:System.Globalization.DateTimeFormatInfo.YearMonthPattern"> <summary> Gets or sets the format pattern for a year and month value, which is associated with the "y" and "Y" format patterns. </summary> <returns> The format pattern for a year and month value, which is associated with the "y" and "Y" format patterns. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.DateTimeFormatInfo" /> is read-only. </exception> </member> <member name="T:System.Globalization.DateTimeStyles"> <summary> Defines the formatting options that customize string parsing for the <see cref="M:System.DateTime.Parse" /> and <see cref="M:System.DateTime.ParseExact" /> methods. </summary> </member> <member name="F:System.Globalization.DateTimeStyles.None"> <summary> Default formatting options must be used. This value represents the default style for <see cref="M:System.DateTime.Parse(System.String)" />, <see cref="M:System.DateTime.ParseExact(System.String,System.String,System.IFormatProvider)" />, and <see cref="M:System.DateTime.TryParse(System.String,System.DateTime@)" />. </summary> </member> <member name="F:System.Globalization.DateTimeStyles.AllowLeadingWhite"> <summary> Leading white-space characters must be ignored during parsing, except if they occur in the <see cref="T:System.Globalization.DateTimeFormatInfo" /> format patterns. </summary> </member> <member name="F:System.Globalization.DateTimeStyles.AllowTrailingWhite"> <summary> Trailing white-space characters must be ignored during parsing, except if they occur in the <see cref="T:System.Globalization.DateTimeFormatInfo" /> format patterns. </summary> </member> <member name="F:System.Globalization.DateTimeStyles.AllowInnerWhite"> <summary> Extra white-space characters in the middle of the string must be ignored during parsing, except if they occur in the <see cref="T:System.Globalization.DateTimeFormatInfo" /> format patterns. </summary> </member> <member name="F:System.Globalization.DateTimeStyles.AllowWhiteSpaces"> <summary> Extra white-space characters anywhere in the string must be ignored during parsing, except if they occur in the <see cref="T:System.Globalization.DateTimeFormatInfo" /> format patterns. This value is a combination of the <see cref="F:System.Globalization.DateTimeStyles.AllowLeadingWhite" />, <see cref="F:System.Globalization.DateTimeStyles.AllowTrailingWhite" />, and <see cref="F:System.Globalization.DateTimeStyles.AllowInnerWhite" /> values. </summary> </member> <member name="F:System.Globalization.DateTimeStyles.NoCurrentDateDefault"> <summary> If the parsed string contains only the time and not the date, the parsing methods assume the Gregorian date with year = 1, month = 1, and day = 1. If this value is not used, the current date is assumed. </summary> </member> <member name="F:System.Globalization.DateTimeStyles.AdjustToUniversal"> <summary> Date and time are returned as a Coordinated Universal Time (UTC). If the input string denotes a local time, through a time zone specifier or <see cref="F:System.Globalization.DateTimeStyles.AssumeLocal" />, the date and time are converted from the local time to UTC. If the input string denotes a UTC time, through a time zone specifier or <see cref="F:System.Globalization.DateTimeStyles.AssumeUniversal" />, no conversion occurs. If the input string does not denote a local or UTC time, no conversion occurs and the resulting <see cref="P:System.DateTime.Kind" /> property is <see cref="F:System.DateTimeKind.Unspecified" />. </summary> </member> <member name="F:System.Globalization.DateTimeStyles.AssumeLocal"> <summary> If no time zone is specified in the parsed string, the string is assumed to denote a local time. </summary> </member> <member name="F:System.Globalization.DateTimeStyles.AssumeUniversal"> <summary> If no time zone is specified in the parsed string, the string is assumed to denote a UTC. </summary> </member> <member name="F:System.Globalization.DateTimeStyles.RoundtripKind"> <summary> The <see cref="T:System.DateTimeKind" /> field of a date is preserved when a <see cref="T:System.DateTime" /> object is converted to a string using the o or r standard format specifier and the string is then converted back to a <see cref="T:System.DateTime" /> object. </summary> </member> <member name="T:System.Globalization.DaylightTime"> <summary> Defines the period of daylight saving time. </summary> </member> <member name="M:System.Globalization.DaylightTime.#ctor(System.DateTime,System.DateTime,System.TimeSpan)"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.DaylightTime" /> class. </summary> <param name="start"> The <see cref="T:System.DateTime" /> that represents the date and time when the daylight saving period begins. The value must be in local time. </param> <param name="end"> The <see cref="T:System.DateTime" /> that represents the date and time when the daylight saving period ends. The value must be in local time. </param> <param name="delta"> The <see cref="T:System.TimeSpan" /> that represents the difference between the standard time and the daylight saving time in ticks. </param> </member> <member name="P:System.Globalization.DaylightTime.Delta"> <summary> Gets the <see cref="T:System.TimeSpan" /> that represents the difference between the standard time and the daylight saving time. </summary> <returns> The <see cref="T:System.TimeSpan" /> that represents the difference between the standard time and the daylight saving time. </returns> </member> <member name="P:System.Globalization.DaylightTime.End"> <summary> Gets the <see cref="T:System.DateTime" /> that represents the date and time when the daylight saving period ends. </summary> <returns> The <see cref="T:System.DateTime" /> that represents the date and time when the daylight saving period ends. The value is in local time. </returns> </member> <member name="P:System.Globalization.DaylightTime.Start"> <summary> Gets the <see cref="T:System.DateTime" /> that represents the date and time when the daylight saving period begins. </summary> <returns> The <see cref="T:System.DateTime" /> that represents the date and time when the daylight saving period begins. The value is in local time. </returns> </member> <member name="T:System.Globalization.DigitShapes"> <summary> Specifies the culture-specific display of digits. </summary> </member> <member name="F:System.Globalization.DigitShapes.Context"> <summary> The digit shape depends on the previous text in the same output. European digits follow Latin scripts; Arabic-Indic digits follow Arabic text; and Thai digits follow Thai text. </summary> </member> <member name="F:System.Globalization.DigitShapes.None"> <summary> The digit shape is not changed. Full Unicode compatibility is maintained. </summary> </member> <member name="F:System.Globalization.DigitShapes.NativeNational"> <summary> The digit shape is the native equivalent of the digits from 0 through 9. ASCII digits from 0 through 9 are replaced by equivalent native national digits. </summary> </member> <member name="T:System.Globalization.EastAsianLunisolarCalendar"> <summary> Represents a calendar that divides time into months, days, years, and eras, and has dates that are based on cycles of the sun and the moon. </summary> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Calculates the date that is the specified number of months away from the specified date. </summary> <returns> A new <see cref="T:System.DateTime" /> that results from adding the specified number of months to the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add <paramref name="months" />. </param> <param name="months"> The number of months to add. </param> <exception cref="T:System.ArgumentException"> The result is outside the supported range of a <see cref="T:System.DateTime" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120000 or greater than 120000. -or- <paramref name="time" /> is less than <see cref="P:System.Globalization.Calendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.Calendar.MaxSupportedDateTime" />. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Calculates the date that is the specified number of years away from the specified date. </summary> <returns> A new <see cref="T:System.DateTime" /> that results from adding the specified number of years to the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add <paramref name="years" />. </param> <param name="years"> The number of years to add. </param> <exception cref="T:System.ArgumentException"> The result is outside the supported range of a <see cref="T:System.DateTime" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is less than <see cref="P:System.Globalization.Calendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.Calendar.MaxSupportedDateTime" />. </exception> </member> <member name="P:System.Globalization.EastAsianLunisolarCalendar.AlgorithmType"> <summary> Gets a value indicating whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> This property always returns the <see cref="F:System.Globalization.CalendarAlgorithmType.LunisolarCalendar" /> value. </returns> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetCelestialStem(System.Int32)"> <summary> Calculates the celestial stem of the specified year in the sexagenary (60-year) cycle. </summary> <returns> A number from 1 through 10. </returns> <param name="sexagenaryYear"> An integer from 1 through 60 that represents a year in the sexagenary cycle. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="sexagenaryYear" /> is less than 1 or greater than 60. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetDayOfMonth(System.DateTime)"> <summary> Calculates the day of the month in the specified date. </summary> <returns> An integer from 1 through 31 that represents the day of the month specified in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetDayOfWeek(System.DateTime)"> <summary> Calculates the day of the week in the specified date. </summary> <returns> One of the <see cref="T:System.DayOfWeek" /> values that represents the day of the week specified in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is less than <see cref="P:System.Globalization.Calendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.Calendar.MaxSupportedDateTime" />. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetDayOfYear(System.DateTime)"> <summary> Calculates the day of the year in the specified date. </summary> <returns> An integer from 1 through 354 in a common year, or 1 through 384 in a leap year, that represents the day of the year specified in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Calculates the number of days in the specified month of the specified year and era. </summary> <returns> The number of days in the specified month of the specified year and era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 through 12 in a common year, or 1 through 13 in a leap year, that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Calculates the number of days in the specified year and era. </summary> <returns> The number of days in the specified year and era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for the specified year and era. </summary> <returns> A positive integer from 1 through 13 that indicates the leap month in the specified year and era. -or- Zero if this calendar does not support a leap month, or if the <paramref name="year" /> and <paramref name="era" /> parameters do not specify a leap year. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetMonth(System.DateTime)"> <summary> Returns the month in the specified date. </summary> <returns> An integer from 1 to 13 that represents the month specified in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Calculates the number of months in the specified year and era. </summary> <returns> The number of months in the specified year in the specified era. The return value is 12 months in a common year or 13 months in a leap year. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetSexagenaryYear(System.DateTime)"> <summary> Calculates the year in the sexagenary (60-year) cycle that corresponds to the specified date. </summary> <returns> A number from 1 through 60 in the sexagenary cycle that corresponds to the <paramref name="date" /> parameter. </returns> <param name="time"> A <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetTerrestrialBranch(System.Int32)"> <summary> Calculates the terrestrial branch of the specified year in the sexagenary (60-year) cycle. </summary> <returns> An integer from 1 through 12. </returns> <param name="sexagenaryYear"> An integer from 1 through 60 that represents a year in the sexagenary cycle. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="sexagenaryYear" /> is less than 1 or greater than 60. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.GetYear(System.DateTime)"> <summary> Returns the year in the specified date. </summary> <returns> An integer that represents the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date in the specified era is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 through 13 that represents the month. </param> <param name="day"> An integer from 1 through 31 that represents the day. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year and era is a leap month. </summary> <returns>true if the <paramref name="month" /> parameter is a leap month; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 through 13 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date, time, and era. </summary> <returns> A <see cref="T:System.DateTime" /> that is set to the specified date, time, and era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 through 13 that represents the month. </param> <param name="day"> An integer from 1 through 31 that represents the day. </param> <param name="hour"> An integer from 0 through 23 that represents the hour. </param> <param name="minute"> An integer from 0 through 59 that represents the minute. </param> <param name="second"> An integer from 0 through 59 that represents the second. </param> <param name="millisecond"> An integer from 0 through 999 that represents the millisecond. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, <paramref name="hour" />, <paramref name="minute" />, <paramref name="second" />, <paramref name="millisecond" />, or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.EastAsianLunisolarCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year. </summary> <returns> An integer that contains the four-digit representation of the <paramref name="year" /> parameter. </returns> <param name="year"> A two-digit or four-digit integer that represents the year to convert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by this calendar. </exception> </member> <member name="P:System.Globalization.EastAsianLunisolarCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Globalization.EastAsianLunisolarCalendar" /> is read-only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value in a set operation is less than 99 or greater than the maximum supported year in the current calendar. </exception> </member> <member name="T:System.Globalization.GregorianCalendar"> <summary> Represents the Gregorian calendar. </summary> </member> <member name="M:System.Globalization.GregorianCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.GregorianCalendar" /> class using the default <see cref="T:System.Globalization.GregorianCalendarTypes" /> value. </summary> </member> <member name="M:System.Globalization.GregorianCalendar.#ctor(System.Globalization.GregorianCalendarTypes)"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.GregorianCalendar" /> class using the specified <see cref="T:System.Globalization.GregorianCalendarTypes" /> value. </summary> <param name="type"> The <see cref="T:System.Globalization.GregorianCalendarTypes" /> value that denotes which language version of the calendar to create. </param> </member> <member name="M:System.Globalization.GregorianCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of months away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of months to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add months. </param> <param name="months"> The number of months to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120000. -or- <paramref name="months" /> is greater than 120000. </exception> </member> <member name="M:System.Globalization.GregorianCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of years away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of years to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add years. </param> <param name="years"> The number of years to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> </member> <member name="F:System.Globalization.GregorianCalendar.ADEra"> <summary> Represents the current era. This field is constant. </summary> </member> <member name="P:System.Globalization.GregorianCalendar.AlgorithmType"> <summary> Gets a value that indicates whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> A <see cref="F:System.Globalization.CalendarAlgorithmType.SolarCalendar" /> object. </returns> </member> <member name="P:System.Globalization.GregorianCalendar.CalendarType"> <summary> Gets or sets the <see cref="T:System.Globalization.GregorianCalendarTypes" /> value that denotes the language version of the current <see cref="T:System.Globalization.GregorianCalendar" />. </summary> <returns> A <see cref="T:System.Globalization.GregorianCalendarTypes" /> value that denotes the language version of the current <see cref="T:System.Globalization.GregorianCalendar" />. </returns> </member> <member name="P:System.Globalization.GregorianCalendar.Eras"> <summary> Gets the list of eras in the <see cref="T:System.Globalization.GregorianCalendar" />. </summary> <returns> An array of integers that represents the eras in the <see cref="T:System.Globalization.GregorianCalendar" />. </returns> </member> <member name="M:System.Globalization.GregorianCalendar.GetDayOfMonth(System.DateTime)"> <summary> Returns the day of the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 31 that represents the day of the month in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.GregorianCalendar.GetDayOfWeek(System.DateTime)"> <summary> Returns the day of the week in the specified <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.GregorianCalendar.GetDayOfYear(System.DateTime)"> <summary> Returns the day of the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 366 that represents the day of the year in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.GregorianCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month in the specified year in the specified era. </summary> <returns> The number of days in the specified month in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by the calendar. -or- <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.GregorianCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified year in the specified era. </summary> <returns> The number of days in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by the calendar. -or- <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.GregorianCalendar.GetEra(System.DateTime)"> <summary> Returns the era in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.GregorianCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for a specified year and era. </summary> <returns> The return value is always 0 because the <see cref="T:System.Globalization.GregorianCalendar" /> type does not support the notion of a leap month. </returns> <param name="year"> A year. </param> <param name="era"> An era. Specify either <see cref="F:System.Globalization.GregorianCalendar.ADEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than the Gregorian calendar year 1 or greater than the Gregorian calendar year 9999. -or- <paramref name="era" /> is not <see cref="F:System.Globalization.GregorianCalendar.ADEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. </exception> </member> <member name="M:System.Globalization.GregorianCalendar.GetMonth(System.DateTime)"> <summary> Returns the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 12 that represents the month in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.GregorianCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Returns the number of months in the specified year in the specified era. </summary> <returns> The number of months in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by the calendar. -or- <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.GregorianCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek)"> <summary> Returns the week of the year that includes the date in the specified <see cref="T:System.DateTime" /> object. </summary> <returns> A 1-based integer that represents the week of the year that includes the date in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> object to read. </param> <param name="rule"> One of the <see cref="T:System.Globalization.CalendarWeekRule" /> values that defines a calendar week. </param> <param name="firstDayOfWeek"> One of the <see cref="T:System.DayOfWeek" /> values that represents the first day of the week. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="firstDayOfWeek" /> is outside the range supported by the calendar. -or- <paramref name="rule" /> is not a valid <see cref="T:System.Globalization.CalendarWeekRule" /> value. </exception> </member> <member name="M:System.Globalization.GregorianCalendar.GetYear(System.DateTime)"> <summary> Returns the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the year in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.GregorianCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date in the specified era is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by the calendar. -or- <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.GregorianCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year in the specified era is a leap month. </summary> <returns> This method always returns false, unless overridden by a derived class. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by the calendar. -or- <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.GregorianCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by the calendar. -or- <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="P:System.Globalization.GregorianCalendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by the <see cref="T:System.Globalization.GregorianCalendar" /> type. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.GregorianCalendar" /> type, which is the last moment of December 31, 9999 C.E. and is equivalent to <see cref="F:System.DateTime.MaxValue" />. </returns> </member> <member name="P:System.Globalization.GregorianCalendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by the <see cref="T:System.Globalization.GregorianCalendar" /> type. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.GregorianCalendar" /> type, which is the first moment of January 1, 0001 C.E. and is equivalent to <see cref="F:System.DateTime.MinValue" />. </returns> </member> <member name="M:System.Globalization.GregorianCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date and time in the specified era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="hour"> An integer from 0 to 23 that represents the hour. </param> <param name="minute"> An integer from 0 to 59 that represents the minute. </param> <param name="second"> An integer from 0 to 59 that represents the second. </param> <param name="millisecond"> An integer from 0 to 999 that represents the millisecond. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by the calendar. -or- <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than zero or greater than 59. -or- <paramref name="second" /> is less than zero or greater than 59. -or- <paramref name="millisecond" /> is less than zero or greater than 999. </exception> </member> <member name="M:System.Globalization.GregorianCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year by using the <see cref="P:System.Globalization.GregorianCalendar.TwoDigitYearMax" /> property to determine the appropriate century. </summary> <returns> An integer that contains the four-digit representation of <paramref name="year" />. </returns> <param name="year"> A two-digit or four-digit integer that represents the year to convert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="P:System.Globalization.GregorianCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Globalization.GregorianCalendarTypes"> <summary> Defines the different language versions of the Gregorian calendar. </summary> </member> <member name="F:System.Globalization.GregorianCalendarTypes.Localized"> <summary> Refers to the localized version of the Gregorian calendar, based on the language of the <see cref="T:System.Globalization.CultureInfo" /> that uses the <see cref="T:System.Globalization.DateTimeFormatInfo" />. </summary> </member> <member name="F:System.Globalization.GregorianCalendarTypes.USEnglish"> <summary> Refers to the U.S. English version of the Gregorian calendar. </summary> </member> <member name="F:System.Globalization.GregorianCalendarTypes.MiddleEastFrench"> <summary> Refers to the Middle East French version of the Gregorian calendar. </summary> </member> <member name="F:System.Globalization.GregorianCalendarTypes.Arabic"> <summary> Refers to the Arabic version of the Gregorian calendar. </summary> </member> <member name="F:System.Globalization.GregorianCalendarTypes.TransliteratedEnglish"> <summary> Refers to the transliterated English version of the Gregorian calendar. </summary> </member> <member name="F:System.Globalization.GregorianCalendarTypes.TransliteratedFrench"> <summary> Refers to the transliterated French version of the Gregorian calendar. </summary> </member> <member name="T:System.Globalization.HebrewCalendar"> <summary> Represents the Hebrew calendar. </summary> </member> <member name="M:System.Globalization.HebrewCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.HebrewCalendar" /> class. </summary> </member> <member name="M:System.Globalization.HebrewCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of months away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of months to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add <paramref name="months" />. </param> <param name="months"> The number of months to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120,000 or greater than 120,000. </exception> </member> <member name="M:System.Globalization.HebrewCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of years away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of years to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add <paramref name="years" />. </param> <param name="years"> The number of years to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> </member> <member name="P:System.Globalization.HebrewCalendar.AlgorithmType"> <summary> Gets a value that indicates whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> This property always returns the <see cref="F:System.Globalization.CalendarAlgorithmType.LunisolarCalendar" /> value. </returns> </member> <member name="P:System.Globalization.HebrewCalendar.Eras"> <summary> Gets the list of eras in the <see cref="T:System.Globalization.HebrewCalendar" />. </summary> <returns> An array of integers that represents the eras in the <see cref="T:System.Globalization.HebrewCalendar" /> type. The return value is always an array containing one element equal to <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" />. </returns> </member> <member name="M:System.Globalization.HebrewCalendar.GetDayOfMonth(System.DateTime)"> <summary> Returns the day of the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 30 that represents the day of the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.HebrewCalendar.GetDayOfWeek(System.DateTime)"> <summary> Returns the day of the week in the specified <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.HebrewCalendar.GetDayOfYear(System.DateTime)"> <summary> Returns the day of the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 385 that represents the day of the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is less than <see cref="P:System.Globalization.HebrewCalendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.HebrewCalendar.MaxSupportedDateTime" />. </exception> </member> <member name="M:System.Globalization.HebrewCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month in the specified year in the specified era. </summary> <returns> The number of days in the specified month in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 13 that represents the month. </param> <param name="era"> An integer that represents the era. Specify either <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, or <paramref name="era" /> is outside the range supported by the current <see cref="T:System.Globalization.HebrewCalendar" /> object. </exception> </member> <member name="M:System.Globalization.HebrewCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified year in the specified era. </summary> <returns> The number of days in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. Specify either <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by the current <see cref="T:System.Globalization.HebrewCalendar" /> object. </exception> </member> <member name="M:System.Globalization.HebrewCalendar.GetEra(System.DateTime)"> <summary> Returns the era in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era in the specified <see cref="T:System.DateTime" />. The return value is always <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.HebrewCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for a specified year and era. </summary> <returns> A positive integer that indicates the leap month in the specified year and era. The return value is 7 if the <paramref name="year" /> and <paramref name="era" /> parameters specify a leap year, or 0 if the year is not a leap year. </returns> <param name="year"> A year. </param> <param name="era"> An era. Specify either <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is not <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. -or- <paramref name="year" /> is less than the Hebrew calendar year 5343 or greater than the Hebrew calendar year 5999. </exception> </member> <member name="M:System.Globalization.HebrewCalendar.GetMonth(System.DateTime)"> <summary> Returns the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 13 that represents the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is less than <see cref="P:System.Globalization.HebrewCalendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.HebrewCalendar.MaxSupportedDateTime" />. </exception> </member> <member name="M:System.Globalization.HebrewCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Returns the number of months in the specified year in the specified era. </summary> <returns> The number of months in the specified year in the specified era. The return value is either 12 in a common year, or 13 in a leap year. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. Specify either <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by the current <see cref="T:System.Globalization.HebrewCalendar" /> object. </exception> </member> <member name="M:System.Globalization.HebrewCalendar.GetYear(System.DateTime)"> <summary> Returns the year in the specified <see cref="T:System.DateTime" /> value. </summary> <returns> An integer that represents the year in the specified <see cref="T:System.DateTime" /> value. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is outside the range supported by the current <see cref="T:System.Globalization.HebrewCalendar" /> object. </exception> </member> <member name="F:System.Globalization.HebrewCalendar.HebrewEra"> <summary> Represents the current era. This field is constant. </summary> </member> <member name="M:System.Globalization.HebrewCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date in the specified era is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 13 that represents the month. </param> <param name="day"> An integer from 1 to 30 that represents the day. </param> <param name="era"> An integer that represents the era. Specify either <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.HebrewCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year in the specified era is a leap month. </summary> <returns>true if the specified month is a leap month; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 13 that represents the month. </param> <param name="era"> An integer that represents the era. Specify either <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.HebrewCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. Specify either <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="P:System.Globalization.HebrewCalendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by the <see cref="T:System.Globalization.HebrewCalendar" /> type. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.HebrewCalendar" /> type, which is equivalent to the last moment of September, 29, 2239 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.HebrewCalendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by the <see cref="T:System.Globalization.HebrewCalendar" /> type. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.HebrewCalendar" /> type, which is equivalent to the first moment of January, 1, 1583 C.E. in the Gregorian calendar. </returns> </member> <member name="M:System.Globalization.HebrewCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date and time in the specified era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 13 that represents the month. </param> <param name="day"> An integer from 1 to 30 that represents the day. </param> <param name="hour"> An integer from 0 to 23 that represents the hour. </param> <param name="minute"> An integer from 0 to 59 that represents the minute. </param> <param name="second"> An integer from 0 to 59 that represents the second. </param> <param name="millisecond"> An integer from 0 to 999 that represents the millisecond. </param> <param name="era"> An integer that represents the era. Specify either <see cref="F:System.Globalization.HebrewCalendar.HebrewEra" /> or <see cref="F:System.Globalization.Calendar.CurrentEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, <paramref name="day" /> or <paramref name="era" /> is outside the range supported by the current <see cref="T:System.Globalization.HebrewCalendar" /> object. -or- <paramref name="hour" /> is less than 0 or greater than 23. -or- <paramref name="minute" /> is less than 0 or greater than 59. -or- <paramref name="second" /> is less than 0 or greater than 59. -or- <paramref name="millisecond" /> is less than 0 or greater than 999. </exception> </member> <member name="M:System.Globalization.HebrewCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a 4-digit year by using the <see cref="P:System.Globalization.HebrewCalendar.TwoDigitYearMax" /> property to determine the appropriate century. </summary> <returns> If the <paramref name="year" /> parameter is a 2-digit year, the return value is the corresponding 4-digit year. If the <paramref name="year" /> parameter is a 4-digit year, the return value is the unchanged <paramref name="year" /> parameter. </returns> <param name="year"> A 2-digit year from 0 through 99, or a 4-digit Hebrew calendar year from 5343 through 5999. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than 0. -or- <paramref name="year" /> is less than <see cref="P:System.Globalization.HebrewCalendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.HebrewCalendar.MaxSupportedDateTime" />. </exception> </member> <member name="P:System.Globalization.HebrewCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Globalization.HebrewCalendar" /> object is read-only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> In a set operation, the Hebrew calendar year value is less than 5343 but is not 99, or the year value is greater than 5999. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Globalization.HijriCalendar"> <summary> Represents the Hijri calendar. </summary> </member> <member name="M:System.Globalization.HijriCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.HijriCalendar" /> class. </summary> </member> <member name="M:System.Globalization.HijriCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of months away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of months to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to add months to. </param> <param name="months"> The number of months to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120000. -or- <paramref name="months" /> is greater than 120000. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="M:System.Globalization.HijriCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of years away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of years to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to add years to. </param> <param name="years"> The number of years to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="P:System.Globalization.HijriCalendar.AlgorithmType"> <summary> Gets a value that indicates whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> Always returns the <see cref="F:System.Globalization.CalendarAlgorithmType.LunarCalendar" /> value. </returns> </member> <member name="P:System.Globalization.HijriCalendar.Eras"> <summary> Gets the list of eras in the <see cref="T:System.Globalization.HijriCalendar" />. </summary> <returns> An array of integers that represents the eras in the <see cref="T:System.Globalization.HijriCalendar" />. </returns> </member> <member name="M:System.Globalization.HijriCalendar.GetDayOfMonth(System.DateTime)"> <summary> Returns the day of the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 30 that represents the day of the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="M:System.Globalization.HijriCalendar.GetDayOfWeek(System.DateTime)"> <summary> Returns the day of the week in the specified <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.HijriCalendar.GetDayOfYear(System.DateTime)"> <summary> Returns the day of the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 355 that represents the day of the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="M:System.Globalization.HijriCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month of the specified year and era. </summary> <returns> The number of days in the specified month in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by this calendar. -or- <paramref name="year" /> is outside the range supported by this calendar. -or- <paramref name="month" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.HijriCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified year and era. </summary> <returns> The number of days in the specified year and era. The number of days is 354 in a common year or 355 in a leap year. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.HijriCalendar.GetEra(System.DateTime)"> <summary> Returns the era in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.HijriCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for a specified year and era. </summary> <returns> Always 0 because the <see cref="T:System.Globalization.HijriCalendar" /> type does not support the notion of a leap month. </returns> <param name="year"> A year. </param> <param name="era"> An era. Specify <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.HijriCalendar.HijriEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than the Hijri calendar year 1 or greater than the year 9666. -or- <paramref name="era" /> is not <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.HijriCalendar.HijriEra" />. </exception> </member> <member name="M:System.Globalization.HijriCalendar.GetMonth(System.DateTime)"> <summary> Returns the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 12 that represents the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="M:System.Globalization.HijriCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Returns the number of months in the specified year and era. </summary> <returns> The number of months in the specified year and era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by this calendar. -or- <paramref name="year" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.HijriCalendar.GetYear(System.DateTime)"> <summary> Returns the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="P:System.Globalization.HijriCalendar.HijriAdjustment"> <summary> Gets or sets the number of days to add or subtract from the calendar to accommodate the variances in the start and the end of Ramadan and to accommodate the date difference between countries/regions. </summary> <returns> An integer from -2 to 2 that represents the number of days to add or subtract from the calendar. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to an invalid value. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="F:System.Globalization.HijriCalendar.HijriEra"> <summary> Represents the current era. This field is constant. </summary> </member> <member name="M:System.Globalization.HijriCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 30 that represents the day. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by this calendar. -or- <paramref name="year" /> is outside the range supported by this calendar. -or- <paramref name="month" /> is outside the range supported by this calendar. -or- <paramref name="day" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.HijriCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year and era is a leap month. </summary> <returns> This method always returns false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by this calendar. -or- <paramref name="year" /> is outside the range supported by this calendar. -or- <paramref name="month" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.HijriCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by this calendar. -or- <paramref name="year" /> is outside the range supported by this calendar. </exception> </member> <member name="P:System.Globalization.HijriCalendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by this calendar. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.HijriCalendar" /> type, which is equivalent to the last moment of December 31, 9999 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.HijriCalendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by this calendar. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.HijriCalendar" /> type, which is equivalent to the first moment of July 18, 622 C.E. in the Gregorian calendar. </returns> </member> <member name="M:System.Globalization.HijriCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date, time, and era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 30 that represents the day. </param> <param name="hour"> An integer from 0 to 23 that represents the hour. </param> <param name="minute"> An integer from 0 to 59 that represents the minute. </param> <param name="second"> An integer from 0 to 59 that represents the second. </param> <param name="millisecond"> An integer from 0 to 999 that represents the millisecond. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by this calendar. -or- <paramref name="year" /> is outside the range supported by this calendar. -or- <paramref name="month" /> is outside the range supported by this calendar. -or- <paramref name="day" /> is outside the range supported by this calendar. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than zero or greater than 59. -or- <paramref name="second" /> is less than zero or greater than 59. -or- <paramref name="millisecond" /> is less than zero or greater than 999. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="M:System.Globalization.HijriCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year by using the <see cref="P:System.Globalization.HijriCalendar.TwoDigitYearMax" /> property to determine the appropriate century. </summary> <returns> An integer that contains the four-digit representation of <paramref name="year" />. </returns> <param name="year"> A two-digit or four-digit integer that represents the year to convert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by this calendar. </exception> </member> <member name="P:System.Globalization.HijriCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <exception cref="T:System.InvalidOperationException"> This calendar is read-only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value in a set operation is less than 100 or greater than 9666. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Globalization.IdnMapping"> <summary> Supports the use of non-ASCII characters for Internet domain names. This class cannot be inherited. </summary> </member> <member name="M:System.Globalization.IdnMapping.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.IdnMapping" /> class. </summary> </member> <member name="P:System.Globalization.IdnMapping.AllowUnassigned"> <summary> Gets or sets a value indicating whether unassigned Unicode code points are used in operations performed by members of the current <see cref="T:System.Globalization.IdnMapping" /> object. </summary> <returns>true if unassigned code points are used in operations; otherwise, false. </returns> </member> <member name="M:System.Globalization.IdnMapping.Equals(System.Object)"> <summary> Indicates whether a specified object and this <see cref="T:System.Globalization.IdnMapping" /> object are equal. </summary> <returns>true if the <paramref name="obj" /> parameter is derived from <see cref="T:System.Globalization.IdnMapping" /> and its <see cref="P:System.Globalization.IdnMapping.AllowUnassigned" /> and <see cref="P:System.Globalization.IdnMapping.UseStd3AsciiRules" /> properties are equal; otherwise, false. </returns> <param name="obj"> An object. </param> </member> <member name="M:System.Globalization.IdnMapping.GetAscii(System.String)"> <summary> Encodes a string of one or more domain name labels that consist of Unicode characters to a string of Unicode characters in the US-ASCII character range. </summary> <returns> The equivalent of the string specified by the <paramref name="unicode" /> parameter, consisting of displayable Unicode characters in the US-ASCII character range (U+0020 to U+007E) and formatted according to the Internationalizing Domain Names in Applications (IDNA) standard. </returns> <param name="unicode"> An input string to convert, which consists of one or more domain name labels delimited with label separators. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="unicode" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="unicode" /> is invalid based on the <see cref="P:System.Globalization.IdnMapping.AllowUnassigned" /> and <see cref="P:System.Globalization.IdnMapping.UseStd3AsciiRules" /> properties, and the IDNA standard. -or- A label contains one or more of the Unicode control characters from U+0001 through U+001F, or U+007F. </exception> </member> <member name="M:System.Globalization.IdnMapping.GetAscii(System.String,System.Int32)"> <summary> Encodes a substring of one or more domain name labels that consist of Unicode characters to a string of Unicode characters in the US-ASCII character range. </summary> <returns> The equivalent of the substring specified by the <paramref name="unicode" /> and <paramref name="index" /> parameters, consisting of displayable Unicode characters in the US-ASCII character range (U+0020 to U+007E) and formatted according to the Internationalizing Domain Names in Applications (IDNA) standard. </returns> <param name="unicode"> An input string to convert, which consists of one or more domain name labels delimited with label separators. </param> <param name="index"> A zero-based offset into <paramref name="unicode" /> that specifies the start of the substring. The conversion operation continues to the end of <paramref name="unicode" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="unicode" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> is greater than the length of <paramref name="unicode" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="unicode" /> is invalid based on the <see cref="P:System.Globalization.IdnMapping.AllowUnassigned" /> and <see cref="P:System.Globalization.IdnMapping.UseStd3AsciiRules" /> properties, and the IDNA standard. -or- A label contains one or more of the Unicode control characters from U+0001 through U+001F, or U+007F. </exception> </member> <member name="M:System.Globalization.IdnMapping.GetAscii(System.String,System.Int32,System.Int32)"> <summary> Encodes a substring of one or more domain name labels that consist of Unicode characters to a string of Unicode characters in the US-ASCII character range. The string is formatted according to the Internationalizing Domain Names in Applications (IDNA) standard. </summary> <returns> The equivalent of the substring specified by the <paramref name="unicode" />, <paramref name="index" />, and <paramref name="count" /> parameters, consisting of displayable Unicode characters in the US-ASCII character range (U+0020 to U+007E) and formatted according to the IDNA standard. </returns> <param name="unicode"> An input string to convert, which consists of one or more domain name labels delimited with label separators. </param> <param name="index"> A zero-based offset into <paramref name="unicode" /> that specifies the start of the substring. </param> <param name="count"> The number of characters to convert in the substring that starts at the position specified by <paramref name="unicode" /> and <paramref name="index" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="unicode" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> is greater than the length of <paramref name="unicode" />. -or- <paramref name="index" /> is greater than the length of <paramref name="unicode" /> minus <paramref name="count" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="unicode" /> is invalid based on the <see cref="P:System.Globalization.IdnMapping.AllowUnassigned" /> and <see cref="P:System.Globalization.IdnMapping.UseStd3AsciiRules" /> properties, and the IDNA standard. -or- A label contains one or more of the Unicode control characters from U+0001 through U+001F, or U+007F. </exception> </member> <member name="M:System.Globalization.IdnMapping.GetHashCode"> <summary> Returns a hash code for this <see cref="T:System.Globalization.IdnMapping" /> object. </summary> <returns> One of four 32-bit signed constants derived from the properties of a <see cref="T:System.Globalization.IdnMapping" /> object. The return value has no special meaning and is not suitable for use in a hash code algorithm. </returns> </member> <member name="M:System.Globalization.IdnMapping.GetUnicode(System.String)"> <summary> Decodes a string of one or more domain name labels encoded according to the Internationalizing Domain Names in Applications (IDNA) standard to a string of Unicode characters. </summary> <returns> The Unicode equivalent of the IDNA substring specified by the <paramref name="ascii" /> parameter. </returns> <param name="ascii"> One or more labels in the US-ASCII character range (U+0020 to U+007E) encoded according to the IDNA standard. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="ascii" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ascii" /> is invalid based on the <see cref="P:System.Globalization.IdnMapping.AllowUnassigned" /> and <see cref="P:System.Globalization.IdnMapping.UseStd3AsciiRules" /> properties, and the IDNA standard. </exception> </member> <member name="M:System.Globalization.IdnMapping.GetUnicode(System.String,System.Int32)"> <summary> Decodes a substring of one or more domain name labels encoded according to the Internationalizing Domain Names in Applications (IDNA) standard to a string of Unicode characters. </summary> <returns> The Unicode equivalent of the IDNA substring specified by the <paramref name="ascii" /> and <paramref name="index" /> parameters. </returns> <param name="ascii"> One or more labels in the US-ASCII character range (U+0020 to U+007E) encoded according to the IDNA standard. </param> <param name="index"> A zero-based offset into <paramref name="ascii" /> that specifies the start of the substring. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="ascii" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. -or- <paramref name="index" /> is greater than the length of <paramref name="ascii" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ascii" /> is invalid based on the <see cref="P:System.Globalization.IdnMapping.AllowUnassigned" /> and <see cref="P:System.Globalization.IdnMapping.UseStd3AsciiRules" /> properties, and the IDNA standard. </exception> </member> <member name="M:System.Globalization.IdnMapping.GetUnicode(System.String,System.Int32,System.Int32)"> <summary> Decodes a substring of one or more domain name labels encoded according to the Internationalizing Domain Names in Applications (IDNA) standard to a string of Unicode characters. </summary> <returns> The Unicode equivalent of the IDNA substring specified by the <paramref name="ascii" />, <paramref name="index" />, and <paramref name="count" /> parameters. </returns> <param name="ascii"> One or more labels in the US-ASCII character range (U+0020 to U+007E) encoded according to the IDNA standard. </param> <param name="index"> A zero-based offset into <paramref name="ascii" /> that specifies the start of the substring. </param> <param name="count"> The number of characters to convert in the substring that starts at the position specified by <paramref name="ascii" /> and <paramref name="index" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="ascii" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> is greater than the length of <paramref name="ascii" />. -or- <paramref name="index" /> is greater than the length of <paramref name="ascii" /> minus <paramref name="count" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ascii" /> is invalid based on the <see cref="P:System.Globalization.IdnMapping.AllowUnassigned" /> and <see cref="P:System.Globalization.IdnMapping.UseStd3AsciiRules" /> properties, and the IDNA standard. </exception> </member> <member name="P:System.Globalization.IdnMapping.UseStd3AsciiRules"> <summary> Gets or sets a value indicating whether standard or nonstandard naming conventions are used in operations performed by members of the current <see cref="T:System.Globalization.IdnMapping" /> object. </summary> <returns>true if nonstandard naming conventions are used in operations; otherwise, false. </returns> </member> <member name="T:System.Globalization.JapaneseCalendar"> <summary> Represents the Japanese calendar. </summary> </member> <member name="M:System.Globalization.JapaneseCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.JapaneseCalendar" /> class. </summary> </member> <member name="M:System.Globalization.JapaneseCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of months away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of months to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add months. </param> <param name="months"> The number of months to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120000. -or- <paramref name="months" /> is greater than 120000. </exception> </member> <member name="M:System.Globalization.JapaneseCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of years away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of years to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add years. </param> <param name="years"> The number of years to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is outside the supported range of the <see cref="T:System.Globalization.JapaneseCalendar" /> type. -or- <paramref name="years" /> is less than -10,000 or greater than 10,000. </exception> </member> <member name="P:System.Globalization.JapaneseCalendar.AlgorithmType"> <summary> Gets a value that indicates whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> Always returns the <see cref="F:System.Globalization.CalendarAlgorithmType.SolarCalendar" /> value. </returns> </member> <member name="P:System.Globalization.JapaneseCalendar.Eras"> <summary> Gets the list of eras in the <see cref="T:System.Globalization.JapaneseCalendar" />. </summary> <returns> An array of integers that represents the eras in the <see cref="T:System.Globalization.JapaneseCalendar" />. </returns> </member> <member name="M:System.Globalization.JapaneseCalendar.GetDayOfMonth(System.DateTime)"> <summary> Returns the day of the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 31 that represents the day of the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JapaneseCalendar.GetDayOfWeek(System.DateTime)"> <summary> Returns the day of the week in the specified <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JapaneseCalendar.GetDayOfYear(System.DateTime)"> <summary> Returns the day of the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 366 that represents the day of the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JapaneseCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month in the specified year in the specified era. </summary> <returns> The number of days in the specified month in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JapaneseCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified year in the specified era. </summary> <returns> The number of days in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JapaneseCalendar.GetEra(System.DateTime)"> <summary> Returns the era in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> </member> <member name="M:System.Globalization.JapaneseCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for a specified year and era. </summary> <returns> The return value is always 0 because the <see cref="T:System.Globalization.JapaneseCalendar" /> type does not support the notion of a leap month. </returns> <param name="year"> A year. </param> <param name="era"> An era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by the <see cref="T:System.Globalization.JapaneseCalendar" /> type. </exception> </member> <member name="M:System.Globalization.JapaneseCalendar.GetMonth(System.DateTime)"> <summary> Returns the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 12 that represents the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JapaneseCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Returns the number of months in the specified year in the specified era. </summary> <returns> The return value is always 12. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JapaneseCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek)"> <summary> Returns the week of the year that includes the date in the specified <see cref="T:System.DateTime" />. </summary> <returns> A 1-based integer that represents the week of the year that includes the date in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <param name="rule"> One of the <see cref="T:System.Globalization.CalendarWeekRule" /> values that defines a calendar week. </param> <param name="firstDayOfWeek"> One of the <see cref="T:System.DayOfWeek" /> values that represents the first day of the week. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> or <paramref name="firstDayOfWeek" /> is outside the range supported by the calendar. -or- <paramref name="rule" /> is not a valid <see cref="T:System.Globalization.CalendarWeekRule" /> value. </exception> </member> <member name="M:System.Globalization.JapaneseCalendar.GetYear(System.DateTime)"> <summary> Returns the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JapaneseCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date in the specified era is a leap day. </summary> <returns>true, if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JapaneseCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year in the specified era is a leap month. </summary> <returns> This method always returns false, unless overridden by a derived class. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JapaneseCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true, if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="P:System.Globalization.JapaneseCalendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by the current <see cref="T:System.Globalization.JapaneseCalendar" /> object. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.JapaneseCalendar" /> type, which is equivalent to the last moment of December 31, 9999 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.JapaneseCalendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by the current <see cref="T:System.Globalization.JapaneseCalendar" /> object. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.JapaneseCalendar" /> type, which is equivalent to the first moment of January 1, 1868 C.E. in the Gregorian calendar. </returns> </member> <member name="M:System.Globalization.JapaneseCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date and time in the specified era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="hour"> An integer from 0 to 23 that represents the hour. </param> <param name="minute"> An integer from 0 to 59 that represents the minute. </param> <param name="second"> An integer from 0 to 59 that represents the second. </param> <param name="millisecond"> An integer from 0 to 999 that represents the millisecond. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than zero or greater than 59. -or- <paramref name="second" /> is less than zero or greater than 59. -or- <paramref name="millisecond" /> is less than zero or greater than 999. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JapaneseCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year by using the <see cref="P:System.Globalization.JapaneseCalendar.TwoDigitYearMax" /> property to determine the appropriate century. </summary> <returns> An integer that contains the four-digit representation of <paramref name="year" />. </returns> <param name="year"> An integer (usually two digits) that represents the year to convert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="P:System.Globalization.JapaneseCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Globalization.JapaneseLunisolarCalendar"> <summary> Represents time in divisions, such as months, days, and years. Years are calculated as for the Japanese calendar, while days and months are calculated using the lunisolar calendar. </summary> </member> <member name="M:System.Globalization.JapaneseLunisolarCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.JapaneseLunisolarCalendar" /> class. </summary> </member> <member name="P:System.Globalization.JapaneseLunisolarCalendar.Eras"> <summary> Gets the eras that are relevant to the <see cref="T:System.Globalization.JapaneseLunisolarCalendar" /> object. </summary> <returns> An array of 32-bit signed integers that specify the relevant eras. </returns> </member> <member name="M:System.Globalization.JapaneseLunisolarCalendar.GetEra(System.DateTime)"> <summary> Retrieves the era that corresponds to the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era specified in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="F:System.Globalization.JapaneseLunisolarCalendar.JapaneseEra"> <summary> Specifies the current era. </summary> </member> <member name="P:System.Globalization.JapaneseLunisolarCalendar.MaxSupportedDateTime"> <summary> Gets the maximum date and time supported by the <see cref="T:System.Globalization.JapaneseLunisolarCalendar" /> class. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.JapaneseLunisolarCalendar" /> class, which is equivalent to the last moment of January 22, 2050 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.JapaneseLunisolarCalendar.MinSupportedDateTime"> <summary> Gets the minimum date and time supported by the <see cref="T:System.Globalization.JapaneseLunisolarCalendar" /> class. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.JapaneseLunisolarCalendar" /> class, which is equivalent to the first moment of January 28, 1960 C.E. in the Gregorian calendar. </returns> </member> <member name="T:System.Globalization.JulianCalendar"> <summary> Represents the Julian calendar. </summary> </member> <member name="M:System.Globalization.JulianCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.JulianCalendar" /> class. </summary> </member> <member name="M:System.Globalization.JulianCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of months away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of months to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add months. </param> <param name="months"> The number of months to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120000. -or- <paramref name="months" /> is greater than 120000. </exception> </member> <member name="M:System.Globalization.JulianCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of years away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of years to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add years. </param> <param name="years"> The number of years to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> </member> <member name="P:System.Globalization.JulianCalendar.AlgorithmType"> <summary> Gets a value that indicates whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> Always returns the <see cref="F:System.Globalization.CalendarAlgorithmType.SolarCalendar" /> type. </returns> </member> <member name="P:System.Globalization.JulianCalendar.Eras"> <summary> Gets the list of eras in the <see cref="T:System.Globalization.JulianCalendar" />. </summary> <returns> An array of integers that represents the eras in the <see cref="T:System.Globalization.JulianCalendar" />. </returns> </member> <member name="M:System.Globalization.JulianCalendar.GetDayOfMonth(System.DateTime)"> <summary> Returns the day of the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 31 that represents the day of the month in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JulianCalendar.GetDayOfWeek(System.DateTime)"> <summary> Returns the day of the week in the specified <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JulianCalendar.GetDayOfYear(System.DateTime)"> <summary> Returns the day of the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 366 that represents the day of the year in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JulianCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month in the specified year in the specified era. </summary> <returns> The number of days in the specified month in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by the calendar. -or- <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JulianCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified year in the specified era. </summary> <returns> The number of days in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by the calendar. -or- <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JulianCalendar.GetEra(System.DateTime)"> <summary> Returns the era in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JulianCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for a specified year and era. </summary> <returns> A positive integer that indicates the leap month in the specified year and era. Alternatively, this method returns zero if the calendar does not support a leap month, or if <paramref name="year" /> and <paramref name="era" /> do not specify a leap year. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> </member> <member name="M:System.Globalization.JulianCalendar.GetMonth(System.DateTime)"> <summary> Returns the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 12 that represents the month in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JulianCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Returns the number of months in the specified year in the specified era. </summary> <returns> The number of months in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="era" /> is outside the range supported by the calendar. -or- <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JulianCalendar.GetYear(System.DateTime)"> <summary> Returns the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the year in <paramref name="time" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.JulianCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date in the specified era is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JulianCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year in the specified era is a leap month. </summary> <returns> This method always returns false, unless overridden by a derived class. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JulianCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="F:System.Globalization.JulianCalendar.JulianEra"> <summary> Represents the current era. This field is constant. </summary> </member> <member name="P:System.Globalization.JulianCalendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by the <see cref="T:System.Globalization.JulianCalendar" /> class. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.JulianCalendar" /> class, which is equivalent to the last moment of December 31, 9999 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.JulianCalendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by the <see cref="T:System.Globalization.JulianCalendar" /> class. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.JulianCalendar" /> class, which is equivalent to the first moment of January 1, 0001 C.E. in the Gregorian calendar. </returns> </member> <member name="M:System.Globalization.JulianCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date and time in the specified era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="hour"> An integer from 0 to 23 that represents the hour. </param> <param name="minute"> An integer from 0 to 59 that represents the minute. </param> <param name="second"> An integer from 0 to 59 that represents the second. </param> <param name="millisecond"> An integer from 0 to 999 that represents the millisecond. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than zero or greater than 59. -or- <paramref name="second" /> is less than zero or greater than 59. -or- <paramref name="millisecond" /> is less than zero or greater than 999. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.JulianCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year by using the <see cref="P:System.Globalization.JulianCalendar.TwoDigitYearMax" /> property to determine the appropriate century. </summary> <returns> An integer that contains the four-digit representation of <paramref name="year" />. </returns> <param name="year"> A two-digit or four-digit integer that represents the year to convert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="P:System.Globalization.JulianCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> </member> <member name="T:System.Globalization.KoreanCalendar"> <summary> Represents the Korean calendar. </summary> </member> <member name="M:System.Globalization.KoreanCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.KoreanCalendar" /> class. </summary> </member> <member name="M:System.Globalization.KoreanCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of months away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of months to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add months. </param> <param name="months"> The number of months to add. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120000. -or- <paramref name="months" /> is greater than 120000. </exception> </member> <member name="M:System.Globalization.KoreanCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of years away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of years to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add years. </param> <param name="years"> The number of years to add. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="years" /> or <paramref name="time" /> is out of range. </exception> </member> <member name="P:System.Globalization.KoreanCalendar.AlgorithmType"> <summary> Gets a value indicating whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> Always returns the <see cref="F:System.Globalization.CalendarAlgorithmType.SolarCalendar" /> value. </returns> </member> <member name="P:System.Globalization.KoreanCalendar.Eras"> <summary> Gets the list of eras in the <see cref="T:System.Globalization.KoreanCalendar" />. </summary> <returns> An array of integers that represents the eras in the <see cref="T:System.Globalization.KoreanCalendar" />. </returns> </member> <member name="M:System.Globalization.KoreanCalendar.GetDayOfMonth(System.DateTime)"> <summary> Returns the day of the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 31 that represents the day of the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.KoreanCalendar.GetDayOfWeek(System.DateTime)"> <summary> Returns the day of the week in the specified <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.KoreanCalendar.GetDayOfYear(System.DateTime)"> <summary> Returns the day of the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 366 that represents the day of the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.KoreanCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month in the specified year in the specified era. </summary> <returns> The number of days in the specified month in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.KoreanCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified year in the specified era. </summary> <returns> The number of days in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.KoreanCalendar.GetEra(System.DateTime)"> <summary> Returns the era in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.KoreanCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for a specified year and era. </summary> <returns> The return value is always 0 because the <see cref="T:System.Globalization.KoreanCalendar" /> class does not support the notion of a leap month. </returns> <param name="year"> A year. </param> <param name="era"> An era. </param> </member> <member name="M:System.Globalization.KoreanCalendar.GetMonth(System.DateTime)"> <summary> Returns the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 12 that represents the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.KoreanCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Returns the number of months in the specified year in the specified era. </summary> <returns> The number of months in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.KoreanCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek)"> <summary> Returns the week of the year that includes the date in the specified <see cref="T:System.DateTime" />. </summary> <returns> A 1-based integer that represents the week of the year that includes the date in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <param name="rule"> One of the <see cref="T:System.Globalization.CalendarWeekRule" /> values that defines a calendar week. </param> <param name="firstDayOfWeek"> One of the <see cref="T:System.DayOfWeek" /> values that represents the first day of the week. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> or <paramref name="firstDayOfWeek" /> is outside the range supported by the calendar. -or- <paramref name="rule" /> is not a valid <see cref="T:System.Globalization.CalendarWeekRule" /> value. </exception> </member> <member name="M:System.Globalization.KoreanCalendar.GetYear(System.DateTime)"> <summary> Returns the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.KoreanCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date in the specified era is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.KoreanCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year in the specified era is a leap month. </summary> <returns> This method always returns false, unless overridden by a derived class. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.KoreanCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="F:System.Globalization.KoreanCalendar.KoreanEra"> <summary> Represents the current era. This field is constant. </summary> </member> <member name="P:System.Globalization.KoreanCalendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by the <see cref="T:System.Globalization.KoreanCalendar" /> class. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.KoreanCalendar" /> class, which is equivalent to the last moment of December 31, 9999 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.KoreanCalendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by the <see cref="T:System.Globalization.KoreanCalendar" /> class. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.KoreanCalendar" /> class, which is equivalent to the first moment of January 1, 0001 C.E. in the Gregorian calendar. </returns> </member> <member name="M:System.Globalization.KoreanCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date and time in the specified era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="hour"> An integer from 0 to 23 that represents the hour. </param> <param name="minute"> An integer from 0 to 59 that represents the minute. </param> <param name="second"> An integer from 0 to 59 that represents the second. </param> <param name="millisecond"> An integer from 0 to 999 that represents the millisecond. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than zero or greater than 59. -or- <paramref name="second" /> is less than zero or greater than 59. -or- <paramref name="millisecond" /> is less than zero or greater than 999. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.KoreanCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year by using the <see cref="P:System.Globalization.KoreanCalendar.TwoDigitYearMax" /> property to determine the appropriate century. </summary> <returns> An integer that contains the four-digit representation of <paramref name="year" />. </returns> <param name="year"> A two-digit or four-digit integer that represents the year to convert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="P:System.Globalization.KoreanCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Globalization.KoreanLunisolarCalendar"> <summary> Represents time in divisions, such as months, days, and years. Years are calculated using the Gregorian calendar, while days and months are calculated using the lunisolar calendar. </summary> </member> <member name="M:System.Globalization.KoreanLunisolarCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.KoreanLunisolarCalendar" /> class. </summary> </member> <member name="P:System.Globalization.KoreanLunisolarCalendar.Eras"> <summary> Gets the eras that correspond to the range of dates and times supported by the current <see cref="T:System.Globalization.KoreanLunisolarCalendar" /> object. </summary> <returns> An array of 32-bit signed integers that specify the relevant eras. The return value for a <see cref="T:System.Globalization.KoreanLunisolarCalendar" /> object is always an array containing one element equal to the <see cref="F:System.Globalization.KoreanLunisolarCalendar.GregorianEra" /> value. </returns> </member> <member name="M:System.Globalization.KoreanLunisolarCalendar.GetEra(System.DateTime)"> <summary> Retrieves the era that corresponds to the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era specified by the <paramref name="time" /> parameter. The return value for a <see cref="T:System.Globalization.KoreanLunisolarCalendar" /> object is always the <see cref="F:System.Globalization.KoreanLunisolarCalendar.GregorianEra" /> value. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> represents a date and time less than <see cref="P:System.Globalization.KoreanLunisolarCalendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.KoreanLunisolarCalendar.MaxSupportedDateTime" />. </exception> </member> <member name="F:System.Globalization.KoreanLunisolarCalendar.GregorianEra"> <summary> Specifies the Gregorian era that corresponds to the current <see cref="T:System.Globalization.KoreanLunisolarCalendar" /> object. </summary> </member> <member name="P:System.Globalization.KoreanLunisolarCalendar.MaxSupportedDateTime"> <summary> Gets the maximum date and time supported by the <see cref="T:System.Globalization.KoreanLunisolarCalendar" /> class. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.KoreanLunisolarCalendar" /> class, which is equivalent to the last moment of February 10, 2051 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.KoreanLunisolarCalendar.MinSupportedDateTime"> <summary> Gets the minimum date and time supported by the <see cref="T:System.Globalization.KoreanLunisolarCalendar" /> class. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.KoreanLunisolarCalendar" /> class, which is equivalent to the first moment of February 14, 918 C.E. in the Gregorian calendar. </returns> </member> <member name="T:System.Globalization.NumberFormatInfo"> <summary> Defines how numeric values are formatted and displayed, depending on the culture. </summary> </member> <member name="M:System.Globalization.NumberFormatInfo.#ctor"> <summary> Initializes a new writable instance of the <see cref="T:System.Globalization.NumberFormatInfo" /> class that is culture-independent (invariant). </summary> </member> <member name="M:System.Globalization.NumberFormatInfo.Clone"> <summary> Creates a shallow copy of the <see cref="T:System.Globalization.NumberFormatInfo" />. </summary> <returns> A new <see cref="T:System.Globalization.NumberFormatInfo" /> copied from the original <see cref="T:System.Globalization.NumberFormatInfo" />. </returns> </member> <member name="P:System.Globalization.NumberFormatInfo.CurrencyDecimalDigits"> <summary> Indicates the number of decimal places to use in currency values. </summary> <returns> The number of decimal places to use in currency values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is 2. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to a value that is less than 0 or greater than 99. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparator"> <summary> Gets or sets the string to use as the decimal separator in currency values. </summary> <returns> The string to use as the decimal separator in currency values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is ".". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> <exception cref="T:System.ArgumentException"> The property is being set to an empty string. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.CurrencyGroupSeparator"> <summary> Gets or sets the string that separates groups of digits to the left of the decimal in currency values. </summary> <returns> The string that separates groups of digits to the left of the decimal in currency values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is ",". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.CurrencyGroupSizes"> <summary> Gets or sets the number of digits in each group to the left of the decimal in currency values. </summary> <returns> The number of digits in each group to the left of the decimal in currency values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is a one-dimensional array with only one element, which is set to 3. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.ArgumentException"> The property is being set and the array contains an entry that is less than 0 or greater than 9. -or- The property is being set and the array contains an entry, other than the last entry, that is set to 0. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.CurrencyNegativePattern"> <summary> Gets or sets the format pattern for negative currency values. </summary> <returns> The format pattern for negative currency values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is 0, which represents "($n)", where "$" is the <see cref="P:System.Globalization.NumberFormatInfo.CurrencySymbol" /> and <paramref name="n" /> is a number. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to a value that is less than 0 or greater than 15. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.CurrencyPositivePattern"> <summary> Gets or sets the format pattern for positive currency values. </summary> <returns> The format pattern for positive currency values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is 0, which represents "$n", where "$" is the <see cref="P:System.Globalization.NumberFormatInfo.CurrencySymbol" /> and <paramref name="n" /> is a number. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to a value that is less than 0 or greater than 3. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.CurrencySymbol"> <summary> Gets or sets the string to use as the currency symbol. </summary> <returns> The string to use as the currency symbol. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is "$". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.CurrentInfo"> <summary> Gets a read-only <see cref="T:System.Globalization.NumberFormatInfo" /> that formats values based on the current culture. </summary> <returns> A read-only <see cref="T:System.Globalization.NumberFormatInfo" /> based on the <see cref="T:System.Globalization.CultureInfo" /> of the current thread. </returns> </member> <member name="P:System.Globalization.NumberFormatInfo.DigitSubstitution"> <summary> Gets or sets a value that specifies how the graphical user interface displays the shape of a digit. </summary> <returns> One of the <see cref="T:System.Globalization.DigitShapes" /> values. </returns> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Globalization.NumberFormatInfo" /> object is read-only. </exception> <exception cref="T:System.ArgumentException"> The value in a set operation is not a defined <see cref="T:System.Globalization.DigitShapes" /> value. </exception> </member> <member name="M:System.Globalization.NumberFormatInfo.GetFormat(System.Type)"> <summary> Gets an object of the specified type that provides a number formatting service. </summary> <returns> The current <see cref="T:System.Globalization.NumberFormatInfo" />, if <paramref name="formatType" /> is the same as the type of the current <see cref="T:System.Globalization.NumberFormatInfo" />; otherwise, null. </returns> <param name="formatType"> The <see cref="T:System.Type" /> of the required formatting service. </param> </member> <member name="M:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider)"> <summary> Gets the <see cref="T:System.Globalization.NumberFormatInfo" /> associated with the specified <see cref="T:System.IFormatProvider" />. </summary> <returns> The <see cref="T:System.Globalization.NumberFormatInfo" /> associated with the specified <see cref="T:System.IFormatProvider" />. </returns> <param name="formatProvider"> The <see cref="T:System.IFormatProvider" /> used to get the <see cref="T:System.Globalization.NumberFormatInfo" />. -or- null to get <see cref="P:System.Globalization.NumberFormatInfo.CurrentInfo" />. </param> </member> <member name="P:System.Globalization.NumberFormatInfo.InvariantInfo"> <summary> Gets the default read-only <see cref="T:System.Globalization.NumberFormatInfo" /> that is culture-independent (invariant). </summary> <returns> The default read-only <see cref="T:System.Globalization.NumberFormatInfo" /> that is culture-independent (invariant). </returns> </member> <member name="P:System.Globalization.NumberFormatInfo.IsReadOnly"> <summary> Gets a value indicating whether the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </summary> <returns>true if the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only; otherwise, false. </returns> </member> <member name="P:System.Globalization.NumberFormatInfo.NaNSymbol"> <summary> Gets or sets the string that represents the IEEE NaN (not a number) value. </summary> <returns> The string that represents the IEEE NaN (not a number) value. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is "NaN". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.NativeDigits"> <summary> Gets or sets a string array of native digits equivalent to the Western digits 0 through 9. </summary> <returns> An array of type <see cref="T:System.String" /> that contains the native equivalent of the Western digits 0 through 9. The default is an array having the elements "0", "1", "2", "3", "4", "5", "6", "7", "8", and "9". </returns> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Globalization.NumberFormatInfo" /> object is read-only. </exception> <exception cref="T:System.ArgumentNullException"> In a set operation, the value is null. -or- In a set operation, an element of the value array is null. </exception> <exception cref="T:System.ArgumentException"> In a set operation, the value array does not contain 10 elements. -or- In a set operation, an element of the value array does not contain either a single <see cref="T:System.Char" /> object or a pair of <see cref="T:System.Char" /> objects that comprise a surrogate pair. -or- In a set operation, an element of the value array is not a number digit as defined by the Unicode standard. That is, the digit in the array element does not have the Unicode Number, Decimal Digit (Nd) General Category value. -or- In a set operation, the numeric value of an element in the value array does not correspond to the element's position in the array. That is, the element at index 0, which is the first element of the array, does not have a numeric value of 0, or the element at index 1 does not have a numeric value of 1. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.NegativeInfinitySymbol"> <summary> Gets or sets the string that represents negative infinity. </summary> <returns> The string that represents negative infinity. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is "-Infinity". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.NegativeSign"> <summary> Gets or sets the string that denotes that the associated number is negative. </summary> <returns> The string that denotes that the associated number is negative. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is "-". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.NumberDecimalDigits"> <summary> Gets or sets the number of decimal places to use in numeric values. </summary> <returns> The number of decimal places to use in numeric values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is 2. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to a value that is less than 0 or greater than 99. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.NumberDecimalSeparator"> <summary> Gets or sets the string to use as the decimal separator in numeric values. </summary> <returns> The string to use as the decimal separator in numeric values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is ".". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> <exception cref="T:System.ArgumentException"> The property is being set to an empty string. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.NumberGroupSeparator"> <summary> Gets or sets the string that separates groups of digits to the left of the decimal in numeric values. </summary> <returns> The string that separates groups of digits to the left of the decimal in numeric values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is ",". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.NumberGroupSizes"> <summary> Gets or sets the number of digits in each group to the left of the decimal in numeric values. </summary> <returns> The number of digits in each group to the left of the decimal in numeric values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is a one-dimensional array with only one element, which is set to 3. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.ArgumentException"> The property is being set and the array contains an entry that is less than 0 or greater than 9. -or- The property is being set and the array contains an entry, other than the last entry, that is set to 0. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.NumberNegativePattern"> <summary> Gets or sets the format pattern for negative numeric values. </summary> <returns> The format pattern for negative numeric values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is 1, which represents "-n", where <paramref name="n" /> is a number. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to a value that is less than 0 or greater than 4. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.PercentDecimalDigits"> <summary> Gets the number of decimal places to use in percent values. </summary> <returns> The number of decimal places to use in percent values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is 2. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to a value that is less than 0 or greater than 99. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.PercentDecimalSeparator"> <summary> Gets the string to use as the decimal separator in percent values. </summary> <returns> The string to use as the decimal separator in percent values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is ".". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> <exception cref="T:System.ArgumentException"> The property is being set to an empty string. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.PercentGroupSeparator"> <summary> Gets the string that separates groups of digits to the left of the decimal in percent values. </summary> <returns> The string that separates groups of digits to the left of the decimal in percent values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is ",". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.PercentGroupSizes"> <summary> Gets the number of digits in each group to the left of the decimal in percent values. </summary> <returns> The number of digits in each group to the left of the decimal in percent values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is a one-dimensional array with only one element, which is set to 3. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.ArgumentException"> The property is being set and the array contains an entry that is less than 0 or greater than 9. -or- The property is being set and the array contains an entry, other than the last entry, that is set to 0. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.PercentNegativePattern"> <summary> Gets or sets the format pattern for negative percent values. </summary> <returns> The format pattern for negative percent values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is 0, which represents "-n %", where "%" is the <see cref="P:System.Globalization.NumberFormatInfo.PercentSymbol" /> and <paramref name="n" /> is a number. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to a value that is less than 0 or greater than 11. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.PercentPositivePattern"> <summary> Gets or sets the format pattern for positive percent values. </summary> <returns> The format pattern for positive percent values. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is 0, which represents "n %", where "%" is the <see cref="P:System.Globalization.NumberFormatInfo.PercentSymbol" /> and <paramref name="n" /> is a number. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The property is being set to a value that is less than 0 or greater than 3. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.PercentSymbol"> <summary> Gets or sets the string to use as the percent symbol. </summary> <returns> The string to use as the percent symbol. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is "%". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.PerMilleSymbol"> <summary> Gets or sets the string to use as the per mille symbol. </summary> <returns> The string to use as the per mille symbol. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is "‰", which is the Unicode character U+2030. </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.PositiveInfinitySymbol"> <summary> Gets or sets the string that represents positive infinity. </summary> <returns> The string that represents positive infinity. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is "Infinity". </returns> <exception cref="T:System.ArgumentNullException"> The property is being set to null. </exception> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="P:System.Globalization.NumberFormatInfo.PositiveSign"> <summary> Gets or sets the string that denotes that the associated number is positive. </summary> <returns> The string that denotes that the associated number is positive. The default for <see cref="P:System.Globalization.NumberFormatInfo.InvariantInfo" /> is "+". </returns> <exception cref="T:System.InvalidOperationException"> The property is being set and the <see cref="T:System.Globalization.NumberFormatInfo" /> is read-only. </exception> </member> <member name="M:System.Globalization.NumberFormatInfo.ReadOnly(System.Globalization.NumberFormatInfo)"> <summary> Returns a read-only <see cref="T:System.Globalization.NumberFormatInfo" /> wrapper. </summary> <returns> A read-only <see cref="T:System.Globalization.NumberFormatInfo" /> wrapper around <paramref name="nfi" />. </returns> <param name="nfi"> The <see cref="T:System.Globalization.NumberFormatInfo" /> to wrap. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="nfi" /> is null. </exception> </member> <member name="T:System.Globalization.NumberStyles"> <summary> Determines the styles permitted in numeric string arguments that are passed to the Parse methods of the numeric base type classes. </summary> </member> <member name="F:System.Globalization.NumberStyles.None"> <summary> Indicates that none of the bit styles are allowed. </summary> </member> <member name="F:System.Globalization.NumberStyles.AllowLeadingWhite"> <summary> Indicates that a leading white-space character must be ignored during parsing. Valid white-space characters have the Unicode values U+0009, U+000A, U+000B, U+000C, U+000D, and U+0020. </summary> </member> <member name="F:System.Globalization.NumberStyles.AllowTrailingWhite"> <summary> Indicates that trailing white-space character must be ignored during parsing. Valid white-space characters have the Unicode values U+0009, U+000A, U+000B, U+000C, U+000D, and U+0020. </summary> </member> <member name="F:System.Globalization.NumberStyles.AllowLeadingSign"> <summary> Indicates that the numeric string can have a leading sign. Valid leading sign characters are determined by the <see cref="P:System.Globalization.NumberFormatInfo.PositiveSign" /> and <see cref="P:System.Globalization.NumberFormatInfo.NegativeSign" /> properties of <see cref="T:System.Globalization.NumberFormatInfo" />. </summary> </member> <member name="F:System.Globalization.NumberStyles.AllowTrailingSign"> <summary> Indicates that the numeric string can have a trailing sign. Valid trailing sign characters are determined by the <see cref="P:System.Globalization.NumberFormatInfo.PositiveSign" /> and <see cref="P:System.Globalization.NumberFormatInfo.NegativeSign" /> properties of <see cref="T:System.Globalization.NumberFormatInfo" />. </summary> </member> <member name="F:System.Globalization.NumberStyles.AllowParentheses"> <summary> Indicates that the numeric string can have one pair of parentheses enclosing the number. </summary> </member> <member name="F:System.Globalization.NumberStyles.AllowDecimalPoint"> <summary> Indicates that the numeric string can have a decimal point. Valid decimal point characters are determined by the <see cref="P:System.Globalization.NumberFormatInfo.NumberDecimalSeparator" /> and <see cref="P:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparator" /> properties of <see cref="T:System.Globalization.NumberFormatInfo" />. </summary> </member> <member name="F:System.Globalization.NumberStyles.AllowThousands"> <summary> Indicates that the numeric string can have group separators, for example, separating the hundreds from the thousands. Valid group separator characters are determined by the <see cref="P:System.Globalization.NumberFormatInfo.NumberGroupSeparator" /> and <see cref="P:System.Globalization.NumberFormatInfo.CurrencyGroupSeparator" /> properties of <see cref="T:System.Globalization.NumberFormatInfo" /> and the number of digits in each group is determined by the <see cref="P:System.Globalization.NumberFormatInfo.NumberGroupSizes" /> and <see cref="P:System.Globalization.NumberFormatInfo.CurrencyGroupSizes" /> properties of <see cref="T:System.Globalization.NumberFormatInfo" />. </summary> </member> <member name="F:System.Globalization.NumberStyles.AllowExponent"> <summary> Indicates that the numeric string can be in exponential notation. </summary> </member> <member name="F:System.Globalization.NumberStyles.AllowCurrencySymbol"> <summary> Indicates that the numeric string is parsed as currency if it contains a currency symbol. Otherwise, it is parsed as a number. Valid currency symbols are determined by the <see cref="P:System.Globalization.NumberFormatInfo.CurrencySymbol" /> property of <see cref="T:System.Globalization.NumberFormatInfo" />. </summary> </member> <member name="F:System.Globalization.NumberStyles.AllowHexSpecifier"> <summary> Indicates that the numeric string represents a hexadecimal value. Valid hexadecimal values include the numeric digits 0-9 and the hexadecimal digits A-F and a-f. Hexadecimal values can be left-padded with zeros. Strings parsed using this style are not permitted to be prefixed with "0x". </summary> </member> <member name="F:System.Globalization.NumberStyles.Integer"> <summary> Indicates that the AllowLeadingWhite, AllowTrailingWhite, and AllowLeadingSign styles are used. This is a composite number style. </summary> </member> <member name="F:System.Globalization.NumberStyles.HexNumber"> <summary> Indicates that the AllowLeadingWhite, AllowTrailingWhite, and AllowHexSpecifier styles are used. This is a composite number style. </summary> </member> <member name="F:System.Globalization.NumberStyles.Number"> <summary> Indicates that the AllowLeadingWhite, AllowTrailingWhite, AllowLeadingSign, AllowTrailingSign, AllowDecimalPoint, and AllowThousands styles are used. This is a composite number style. </summary> </member> <member name="F:System.Globalization.NumberStyles.Float"> <summary> Indicates that the AllowLeadingWhite, AllowTrailingWhite, AllowLeadingSign, AllowDecimalPoint, and AllowExponent styles are used. This is a composite number style. </summary> </member> <member name="F:System.Globalization.NumberStyles.Currency"> <summary> Indicates that all styles, except AllowExponent and AllowHexSpecifier, are used. This is a composite number style. </summary> </member> <member name="F:System.Globalization.NumberStyles.Any"> <summary> Indicates that all styles, except AllowHexSpecifier, are used. This is a composite number style. </summary> </member> <member name="T:System.Globalization.PersianCalendar"> <summary> Represents the Persian calendar. </summary> </member> <member name="M:System.Globalization.PersianCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.PersianCalendar" /> class. </summary> </member> <member name="M:System.Globalization.PersianCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is offset the specified number of months from the specified <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DateTime" /> that represents the date yielded by adding the number of months specified by the <paramref name="months" /> parameter to the date specified by the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add months. </param> <param name="months"> The positive or negative number of months to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120,000 or greater than 120,000. </exception> </member> <member name="M:System.Globalization.PersianCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is offset the specified number of years from the specified <see cref="T:System.DateTime" /> object. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of years to the specified <see cref="T:System.DateTime" /> object. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add years. </param> <param name="years"> The positive or negative number of years to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="years" /> is less than -10,000 or greater than 10,000. </exception> </member> <member name="P:System.Globalization.PersianCalendar.AlgorithmType"> <summary> Gets a value indicating whether the current calendar is solar-based, lunar-based, or lunisolar-based. </summary> <returns> Always returns <see cref="F:System.Globalization.CalendarAlgorithmType.SolarCalendar" />. </returns> </member> <member name="P:System.Globalization.PersianCalendar.Eras"> <summary> Gets the list of eras in a <see cref="T:System.Globalization.PersianCalendar" /> object. </summary> <returns> An array of integers that represents the eras in a <see cref="T:System.Globalization.PersianCalendar" /> object. The array consists of a single element having a value of <see cref="F:System.Globalization.PersianCalendar.PersianEra" />. </returns> </member> <member name="M:System.Globalization.PersianCalendar.GetDayOfMonth(System.DateTime)"> <summary> Returns the day of the month in the specified <see cref="T:System.DateTime" /> object. </summary> <returns> An integer from 1 through 31 that represents the day of the month in the specified <see cref="T:System.DateTime" /> object. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="time" /> parameter represents a date less than <see cref="P:System.Globalization.PersianCalendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.PersianCalendar.MaxSupportedDateTime" />. </exception> </member> <member name="M:System.Globalization.PersianCalendar.GetDayOfWeek(System.DateTime)"> <summary> Returns the day of the week in the specified <see cref="T:System.DateTime" /> object. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week in the specified <see cref="T:System.DateTime" /> object. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.PersianCalendar.GetDayOfYear(System.DateTime)"> <summary> Returns the day of the year in the specified <see cref="T:System.DateTime" /> object. </summary> <returns> An integer from 1 through 366 that represents the day of the year in the specified <see cref="T:System.DateTime" /> object. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="time" /> parameter represents a date less than <see cref="P:System.Globalization.PersianCalendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.PersianCalendar.MaxSupportedDateTime" />. </exception> </member> <member name="M:System.Globalization.PersianCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month of the specified year and era. </summary> <returns> The number of days in the specified month of the specified year and era. </returns> <param name="year"> An integer from 1 through 9378 that represents the year. </param> <param name="month"> An integer that represents the month, and ranges from 1 through 12 if <paramref name="year" /> is not 9378, or 1 through 10 if <paramref name="year" /> is 9378. </param> <param name="era"> An integer from 0 through 1 that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.PersianCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified year of the specified era. </summary> <returns> The number of days in the specified year and era. The number of days is 365 in a common year or 366 in a leap year. </returns> <param name="year"> An integer from 1 through 9378 that represents the year. </param> <param name="era"> An integer from 0 through 1 that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.PersianCalendar.GetEra(System.DateTime)"> <summary> Returns the era in the specified <see cref="T:System.DateTime" /> object. </summary> <returns> Always returns <see cref="F:System.Globalization.PersianCalendar.PersianEra" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="time" /> parameter represents a date less than <see cref="P:System.Globalization.PersianCalendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.PersianCalendar.MaxSupportedDateTime" />. </exception> </member> <member name="M:System.Globalization.PersianCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Returns the leap month for a specified year and era. </summary> <returns> The return value is always 0. </returns> <param name="year"> An integer from 1 through 9378 that represents the year to convert. </param> <param name="era"> An integer from 0 through 1 that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.PersianCalendar.GetMonth(System.DateTime)"> <summary> Returns the month in the specified <see cref="T:System.DateTime" /> object. </summary> <returns> An integer from 1 through 12 that represents the month in the specified <see cref="T:System.DateTime" /> object. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="time" /> parameter represents a date less than <see cref="P:System.Globalization.PersianCalendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.PersianCalendar.MaxSupportedDateTime" />. </exception> </member> <member name="M:System.Globalization.PersianCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Returns the number of months in the specified year of the specified era. </summary> <returns> Returns 10 if the <paramref name="year" /> parameter is 9378; otherwise, always returns 12. </returns> <param name="year"> An integer from 1 through 9378 that represents the year. </param> <param name="era"> An integer from 0 through 1 that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.PersianCalendar.GetYear(System.DateTime)"> <summary> Returns the year in the specified <see cref="T:System.DateTime" /> object. </summary> <returns> An integer from 1 through 9378 that represents the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="time" /> parameter represents a date less than <see cref="P:System.Globalization.PersianCalendar.MinSupportedDateTime" /> or greater than <see cref="P:System.Globalization.PersianCalendar.MaxSupportedDateTime" />. </exception> </member> <member name="M:System.Globalization.PersianCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer from 1 through 9378 that represents the year. </param> <param name="month"> An integer that represents the month and ranges from 1 through 12 if <paramref name="year" /> is not 9378, or 1 through 10 if <paramref name="year" /> is 9378. </param> <param name="day"> An integer from 1 through 31 that represents the day. </param> <param name="era"> An integer from 0 through 1 that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.PersianCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year and era is a leap month. </summary> <returns> Always returns false because the <see cref="T:System.Globalization.PersianCalendar" /> class does not support the notion of a leap month. </returns> <param name="year"> An integer from 1 through 9378 that represents the year. </param> <param name="month"> An integer that represents the month and ranges from 1 through 12 if <paramref name="year" /> is not 9378, or 1 through 10 if <paramref name="year" /> is 9378. </param> <param name="era"> An integer from 0 through 1 that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.PersianCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer from 1 through 9378 that represents the year. </param> <param name="era"> An integer from 0 through 1 that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="P:System.Globalization.PersianCalendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by the <see cref="T:System.Globalization.PersianCalendar" /> class. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.PersianCalendar" /> class, which is equivalent to the last moment of December 31, 9999 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.PersianCalendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by the <see cref="T:System.Globalization.PersianCalendar" /> class. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.PersianCalendar" /> class, which is equivalent to the first moment of March 21, 622 C.E. in the Gregorian calendar. </returns> </member> <member name="F:System.Globalization.PersianCalendar.PersianEra"> <summary> Represents the current era. This field is constant. </summary> </member> <member name="M:System.Globalization.PersianCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date, time, and era. </summary> <returns> A <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer from 1 through 9378 that represents the year. </param> <param name="month"> An integer from 1 through 12 that represents the month. </param> <param name="day"> An integer from 1 through 31 that represents the day. </param> <param name="hour"> An integer from 0 through 23 that represents the hour. </param> <param name="minute"> An integer from 0 through 59 that represents the minute. </param> <param name="second"> An integer from 0 through 59 that represents the second. </param> <param name="millisecond"> An integer from 0 through 999 that represents the millisecond. </param> <param name="era"> An integer from 0 through 1 that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, <paramref name="hour" />, <paramref name="minute" />, <paramref name="second" />, <paramref name="millisecond" />, or <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.PersianCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year representation. </summary> <returns> An integer that contains the four-digit representation of <paramref name="year" />. </returns> <param name="year"> An integer from 1 through 9378 that represents the year to convert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than 0 or greater than 9378. </exception> </member> <member name="P:System.Globalization.PersianCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <exception cref="T:System.InvalidOperationException"> This calendar is read-only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value in a set operation is less than 100 or greater than 9378. </exception> </member> <member name="T:System.Globalization.RegionInfo"> <summary> Contains information about the country/region. </summary> </member> <member name="M:System.Globalization.RegionInfo.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.RegionInfo" /> class based on the country/region associated with the specified culture identifier. </summary> <param name="culture"> A culture identifier. </param> <exception cref="T:System.ArgumentException"> <paramref name="culture" /> specifies either an invariant, custom, or neutral culture. </exception> </member> <member name="M:System.Globalization.RegionInfo.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.RegionInfo" /> class based on the country/region or specific culture, specified by name. </summary> <param name="name"> A string containing one of the two-letter codes defined in ISO 3166 for country/region. -or- Beginning in .NET Framework version 2.0, a string containing the culture name for a specific culture, custom culture, or Windows-only culture. If the culture name is not in RFC 4646 format, your application should specify the entire culture name, not just the country/region. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is not a valid country/region name or specific culture name. </exception> </member> <member name="P:System.Globalization.RegionInfo.CurrencyEnglishName"> <summary> Gets the name, in English, of the currency used in the country/region. </summary> <returns> The name, in English, of the currency used in the country/region. </returns> </member> <member name="P:System.Globalization.RegionInfo.CurrencyNativeName"> <summary> Gets the name of the currency used in the country/region, formatted in the native language of the country/region. </summary> <returns> The native name of the currency used in the country/region, formatted in the language associated with the ISO 3166 country/region code. </returns> </member> <member name="P:System.Globalization.RegionInfo.CurrencySymbol"> <summary> Gets the currency symbol associated with the country/region. </summary> <returns> The currency symbol associated with the country/region. </returns> </member> <member name="P:System.Globalization.RegionInfo.CurrentRegion"> <summary> Gets the <see cref="T:System.Globalization.RegionInfo" /> that represents the country/region used by the current thread. </summary> <returns> The <see cref="T:System.Globalization.RegionInfo" /> that represents the country/region used by the current thread. </returns> </member> <member name="P:System.Globalization.RegionInfo.DisplayName"> <summary> Gets the full name of the country/region in the language of the localized version of .NET Framework. </summary> <returns> The full name of the country/region in the language of the localized version of .NET Framework. </returns> </member> <member name="P:System.Globalization.RegionInfo.EnglishName"> <summary> Gets the full name of the country/region in English. </summary> <returns> The full name of the country/region in English. </returns> </member> <member name="M:System.Globalization.RegionInfo.Equals(System.Object)"> <summary> Determines whether the specified object is the same instance as the current <see cref="T:System.Globalization.RegionInfo" />. </summary> <returns>true if the <paramref name="value" /> parameter is a <see cref="T:System.Globalization.RegionInfo" /> object and its <see cref="P:System.Globalization.RegionInfo.Name" /> property is the same as the <see cref="P:System.Globalization.RegionInfo.Name" /> property of the current <see cref="T:System.Globalization.RegionInfo" /> object; otherwise, false. </returns> <param name="value"> The object to compare with the current <see cref="T:System.Globalization.RegionInfo" />. </param> </member> <member name="P:System.Globalization.RegionInfo.GeoId"> <summary> Gets a unique identification number for a geographical region, country, city, or location. </summary> <returns> A 32-bit signed number that uniquely identifies a geographical location. </returns> </member> <member name="M:System.Globalization.RegionInfo.GetHashCode"> <summary> Serves as a hash function for the current <see cref="T:System.Globalization.RegionInfo" />, suitable for hashing algorithms and data structures, such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Globalization.RegionInfo" />. </returns> </member> <member name="P:System.Globalization.RegionInfo.IsMetric"> <summary> Gets a value indicating whether the country/region uses the metric system for measurements. </summary> <returns>true if the country/region uses the metric system for measurements; otherwise, false. </returns> </member> <member name="P:System.Globalization.RegionInfo.ISOCurrencySymbol"> <summary> Gets the three-character ISO 4217 currency symbol associated with the country/region. </summary> <returns> The three-character ISO 4217 currency symbol associated with the country/region. </returns> </member> <member name="P:System.Globalization.RegionInfo.Name"> <summary> Gets the name or ISO 3166 two-letter country/region code for the current <see cref="T:System.Globalization.RegionInfo" /> object. </summary> <returns> The value specified by the <paramref name="name" /> parameter of the <see cref="M:System.Globalization.RegionInfo.#ctor(System.String)" /> constructor. The return value is in uppercase. -or- The two-letter code defined in ISO 3166 for the country/region specified by the <paramref name="culture" /> parameter of the <see cref="M:System.Globalization.RegionInfo.#ctor(System.Int32)" /> constructor. The return value is in uppercase. </returns> </member> <member name="P:System.Globalization.RegionInfo.NativeName"> <summary> Gets the name of a country/region formatted in the native language of the country/region. </summary> <returns> The native name of the country/region formatted in the language associated with the ISO 3166 country/region code. </returns> </member> <member name="P:System.Globalization.RegionInfo.ThreeLetterISORegionName"> <summary> Gets the three-letter code defined in ISO 3166 for the country/region. </summary> <returns> The three-letter code defined in ISO 3166 for the country/region. </returns> </member> <member name="P:System.Globalization.RegionInfo.ThreeLetterWindowsRegionName"> <summary> Gets the three-letter code assigned by Windows to the country/region represented by this <see cref="T:System.Globalization.RegionInfo" />. </summary> <returns> The three-letter code assigned by Windows to the country/region represented by this <see cref="T:System.Globalization.RegionInfo" />. </returns> </member> <member name="M:System.Globalization.RegionInfo.ToString"> <summary> Returns a string containing the culture name or ISO 3166 two-letter country/region codes specified for the current <see cref="T:System.Globalization.RegionInfo" />. </summary> <returns> A string containing the culture name or ISO 3166 two-letter country/region codes defined for the current <see cref="T:System.Globalization.RegionInfo" />. </returns> </member> <member name="P:System.Globalization.RegionInfo.TwoLetterISORegionName"> <summary> Gets the two-letter code defined in ISO 3166 for the country/region. </summary> <returns> The two-letter code defined in ISO 3166 for the country/region. </returns> </member> <member name="T:System.Globalization.SortKey"> <summary> Represents the result of mapping a string to its sort key. </summary> </member> <member name="M:System.Globalization.SortKey.Compare(System.Globalization.SortKey,System.Globalization.SortKey)"> <summary> Compares two sort keys. </summary> <returns> Value Condition Less than zero <paramref name="sortkey1" /> is less than <paramref name="sortkey2" />. Zero <paramref name="sortkey1" /> is equal to <paramref name="sortkey2" />. Greater than zero <paramref name="sortkey1" /> is greater than <paramref name="sortkey2" />. </returns> <param name="sortkey1"> The first sort key to compare. </param> <param name="sortkey2"> The second sort key to compare. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sortkey1" /> or <paramref name="sortkey2" /> is null. </exception> </member> <member name="M:System.Globalization.SortKey.Equals(System.Object)"> <summary> Determines whether the specified object is equal to the current <see cref="T:System.Globalization.SortKey" /> object. </summary> <returns>true if the <paramref name="value" /> parameter is equal to the current <see cref="T:System.Globalization.SortKey" /> object; otherwise, false. </returns> <param name="value"> The object to compare with the current <see cref="T:System.Globalization.SortKey" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> </member> <member name="M:System.Globalization.SortKey.GetHashCode"> <summary> Serves as a hash function for the current <see cref="T:System.Globalization.SortKey" /> object that is suitable for hashing algorithms and data structures such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Globalization.SortKey" /> object. </returns> </member> <member name="P:System.Globalization.SortKey.KeyData"> <summary> Gets the byte array representing the current <see cref="T:System.Globalization.SortKey" /> object. </summary> <returns> A byte array representing the current <see cref="T:System.Globalization.SortKey" /> object. </returns> </member> <member name="P:System.Globalization.SortKey.OriginalString"> <summary> Gets the original string used to create the current <see cref="T:System.Globalization.SortKey" /> object. </summary> <returns> The original string used to create the current <see cref="T:System.Globalization.SortKey" /> object. </returns> </member> <member name="M:System.Globalization.SortKey.ToString"> <summary> Returns a string that represents the current <see cref="T:System.Globalization.SortKey" /> object. </summary> <returns> A string that represents the current <see cref="T:System.Globalization.SortKey" /> object. </returns> </member> <member name="T:System.Globalization.StringInfo"> <summary> Provides functionality to split a string into text elements and to iterate through those text elements. </summary> </member> <member name="M:System.Globalization.StringInfo.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.StringInfo" /> class. </summary> </member> <member name="M:System.Globalization.StringInfo.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.StringInfo" /> class to a specified string. </summary> <param name="value"> A string to initialize this <see cref="T:System.Globalization.StringInfo" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> </member> <member name="M:System.Globalization.StringInfo.Equals(System.Object)"> <summary> Indicates whether the current <see cref="T:System.Globalization.StringInfo" /> object is equal to a specified object. </summary> <returns>true if the <paramref name="value" /> parameter is a <see cref="T:System.Globalization.StringInfo" /> object and its <see cref="P:System.Globalization.StringInfo.String" /> property equals the <see cref="P:System.Globalization.StringInfo.String" /> property of this <see cref="T:System.Globalization.StringInfo" /> object; otherwise, false. </returns> <param name="value"> An object. </param> </member> <member name="M:System.Globalization.StringInfo.GetHashCode"> <summary> Calculates a hash code for the value of the current <see cref="T:System.Globalization.StringInfo" /> object. </summary> <returns> A 32-bit signed integer hash code based on the string value of this <see cref="T:System.Globalization.StringInfo" /> object. </returns> </member> <member name="M:System.Globalization.StringInfo.GetNextTextElement(System.String)"> <summary> Gets the first text element in a specified string. </summary> <returns> A string containing the first text element in the specified string. </returns> <param name="str"> The string from which to get the text element. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> </member> <member name="M:System.Globalization.StringInfo.GetNextTextElement(System.String,System.Int32)"> <summary> Gets the text element at the specified index of the specified string. </summary> <returns> A string containing the text element at the specified index of the specified string. </returns> <param name="str"> The string from which to get the text element. </param> <param name="index"> The zero-based index at which the text element starts. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for <paramref name="str" />. </exception> </member> <member name="M:System.Globalization.StringInfo.GetTextElementEnumerator(System.String)"> <summary> Returns an enumerator that iterates through the text elements of the entire string. </summary> <returns> A <see cref="T:System.Globalization.TextElementEnumerator" /> for the entire string. </returns> <param name="str"> The string to iterate through. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> </member> <member name="M:System.Globalization.StringInfo.GetTextElementEnumerator(System.String,System.Int32)"> <summary> Returns an enumerator that iterates through the text elements of the string, starting at the specified index. </summary> <returns> A <see cref="T:System.Globalization.TextElementEnumerator" /> for the string starting at <paramref name="index" />. </returns> <param name="str"> The string to iterate through. </param> <param name="index"> The zero-based index at which to start iterating. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the range of valid indexes for <paramref name="str" />. </exception> </member> <member name="P:System.Globalization.StringInfo.LengthInTextElements"> <summary> Gets the number of text elements in the current <see cref="T:System.Globalization.StringInfo" /> object. </summary> <returns> The number of base characters, surrogate pairs, and combining character sequences in this <see cref="T:System.Globalization.StringInfo" /> object. </returns> </member> <member name="M:System.Globalization.StringInfo.ParseCombiningCharacters(System.String)"> <summary> Returns the indexes of each base character, high surrogate, or control character within the specified string. </summary> <returns> An array of integers that contains the zero-based indexes of each base character, high surrogate, or control character within the specified string. </returns> <param name="str"> The string to search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> </member> <member name="P:System.Globalization.StringInfo.String"> <summary> Gets or sets the value of the current <see cref="T:System.Globalization.StringInfo" /> object. </summary> <returns> The string that is the value of the current <see cref="T:System.Globalization.StringInfo" /> object. </returns> <exception cref="T:System.ArgumentNullException"> The value in a set operation is null. </exception> </member> <member name="M:System.Globalization.StringInfo.SubstringByTextElements(System.Int32)"> <summary> Retrieves a substring of text elements from the current <see cref="T:System.Globalization.StringInfo" /> object starting from a specified text element and continuing through the last text element. </summary> <returns> A substring of text elements in this <see cref="T:System.Globalization.StringInfo" /> object, starting from the text element index specified by the <paramref name="startingTextElement" /> parameter and continuing through the last text element in this object. </returns> <param name="startingTextElement"> The index of a text element in this <see cref="T:System.Globalization.StringInfo" /> object. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startingTextElement" /> is less than zero. -or- The string that is the value of the current <see cref="T:System.Globalization.StringInfo" /> object is the empty string (""). </exception> </member> <member name="M:System.Globalization.StringInfo.SubstringByTextElements(System.Int32,System.Int32)"> <summary> Retrieves a substring of text elements from the current <see cref="T:System.Globalization.StringInfo" /> object starting from a specified text element and continuing through the specified number of text elements. </summary> <returns> A substring of text elements in this <see cref="T:System.Globalization.StringInfo" /> object. The substring consists of the number of text elements specified by the <paramref name="lengthInTextElements" /> parameter and starts from the text element index specified by the <paramref name="startingTextElement" /> parameter. </returns> <param name="startingTextElement"> The index of a text element in this <see cref="T:System.Globalization.StringInfo" /> object. </param> <param name="lengthInTextElements"> The number of text elements to retrieve. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startingTextElement" /> is less than zero. -or- <paramref name="startingTextElement" /> is greater than or equal to the length of the string that is the value of the current <see cref="T:System.Globalization.StringInfo" /> object. -or- <paramref name="lengthInTextElements" /> is less than zero. -or- The string that is the value of the current <see cref="T:System.Globalization.StringInfo" /> object is the empty string (""). -or- <paramref name="startingTextElement" /> + <paramref name="lengthInTextElements" /> specify an index that is greater than the number of text elements in this <see cref="T:System.Globalization.StringInfo" /> object. </exception> </member> <member name="T:System.Globalization.TaiwanCalendar"> <summary> the Taiwan calendar. </summary> </member> <member name="M:System.Globalization.TaiwanCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.TaiwanCalendar" /> class. </summary> </member> <member name="M:System.Globalization.TaiwanCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of months away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of months to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add months. </param> <param name="months"> The number of months to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120000. -or- <paramref name="months" /> is greater than 120000. </exception> </member> <member name="M:System.Globalization.TaiwanCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of years away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of years to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add years. </param> <param name="years"> The number of years to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> </member> <member name="P:System.Globalization.TaiwanCalendar.AlgorithmType"> <summary> Gets a value that indicates whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> Always returns the <see cref="F:System.Globalization.CalendarAlgorithmType.SolarCalendar" /> value. </returns> </member> <member name="P:System.Globalization.TaiwanCalendar.Eras"> <summary> Gets the list of eras in the <see cref="T:System.Globalization.TaiwanCalendar" />. </summary> <returns> An array that consists of a single element for which the value is always the current era. </returns> </member> <member name="M:System.Globalization.TaiwanCalendar.GetDayOfMonth(System.DateTime)"> <summary> Returns the day of the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 31 that represents the day of the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.TaiwanCalendar.GetDayOfWeek(System.DateTime)"> <summary> Returns the day of the week in the specified <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.TaiwanCalendar.GetDayOfYear(System.DateTime)"> <summary> Returns the day of the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 366 that represents the day of the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.TaiwanCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month in the specified year in the specified era. </summary> <returns> The number of days in the specified month in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.TaiwanCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified year in the specified era. </summary> <returns> The number of days in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.TaiwanCalendar.GetEra(System.DateTime)"> <summary> Returns the era in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.TaiwanCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for a specified year and era. </summary> <returns> The return value is always 0 because the <see cref="T:System.Globalization.TaiwanCalendar" /> class does not support the notion of a leap month. </returns> <param name="year"> A year. </param> <param name="era"> An era. </param> </member> <member name="M:System.Globalization.TaiwanCalendar.GetMonth(System.DateTime)"> <summary> Returns the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 12 that represents the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.TaiwanCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Returns the number of months in the specified year in the specified era. </summary> <returns> The number of months in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.TaiwanCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek)"> <summary> Returns the week of the year that includes the date in the specified <see cref="T:System.DateTime" />. </summary> <returns> A positive integer that represents the week of the year that includes the date in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <param name="rule"> One of the <see cref="T:System.Globalization.CalendarWeekRule" /> values that defines a calendar week. </param> <param name="firstDayOfWeek"> One of the <see cref="T:System.DayOfWeek" /> values that represents the first day of the week. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> or <paramref name="firstDayOfWeek" /> is outside the range supported by the calendar. -or- <paramref name="rule" /> is not a valid <see cref="T:System.Globalization.CalendarWeekRule" /> value. </exception> </member> <member name="M:System.Globalization.TaiwanCalendar.GetYear(System.DateTime)"> <summary> Returns the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.TaiwanCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date in the specified era is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.TaiwanCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year in the specified era is a leap month. </summary> <returns> This method always returns false, unless overridden by a derived class. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.TaiwanCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="P:System.Globalization.TaiwanCalendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by the <see cref="T:System.Globalization.TaiwanCalendar" /> class. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.TaiwanCalendar" /> class, which is equivalent to the last moment of December 31, 9999 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.TaiwanCalendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by the <see cref="T:System.Globalization.TaiwanCalendar" /> class. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.TaiwanCalendar" /> class, which is equivalent to the first moment of January 1, 1912 C.E. in the Gregorian calendar. </returns> </member> <member name="M:System.Globalization.TaiwanCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date and time in the specified era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="hour"> An integer from 0 to 23 that represents the hour. </param> <param name="minute"> An integer from 0 to 59 that represents the minute. </param> <param name="second"> An integer from 0 to 59 that represents the second. </param> <param name="millisecond"> An integer from 0 to 999 that represents the millisecond. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than zero or greater than 59. -or- <paramref name="second" /> is less than zero or greater than 59. -or- <paramref name="millisecond" /> is less than zero or greater than 999. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.TaiwanCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year by using the <see cref="P:System.Globalization.TaiwanCalendar.TwoDigitYearMax" /> property to determine the appropriate century. </summary> <returns> An integer that contains the four-digit representation of <paramref name="year" />. </returns> <param name="year"> A two-digit or four-digit integer that represents the year to convert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. </exception> </member> <member name="P:System.Globalization.TaiwanCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Globalization.TaiwanLunisolarCalendar"> <summary> Represents the Taiwan lunisolar calendar. As for the Taiwan calendar, years are calculated using the Gregorian calendar, while days and months are calculated using the lunisolar calendar. </summary> </member> <member name="M:System.Globalization.TaiwanLunisolarCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.TaiwanLunisolarCalendar" /> class. </summary> </member> <member name="P:System.Globalization.TaiwanLunisolarCalendar.Eras"> <summary> Gets the eras that are relevant to the current <see cref="T:System.Globalization.TaiwanLunisolarCalendar" /> object. </summary> <returns> An array that consists of a single element having a value that is always the current era. </returns> </member> <member name="M:System.Globalization.TaiwanLunisolarCalendar.GetEra(System.DateTime)"> <summary> Retrieves the era that corresponds to the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era specified in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="P:System.Globalization.TaiwanLunisolarCalendar.MaxSupportedDateTime"> <summary> Gets the maximum date and time supported by the <see cref="T:System.Globalization.TaiwanLunisolarCalendar" /> class. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.TaiwanLunisolarCalendar" /> class, which is equivalent to the last moment of February 10, 2051 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.TaiwanLunisolarCalendar.MinSupportedDateTime"> <summary> Gets the minimum date and time supported by the <see cref="T:System.Globalization.TaiwanLunisolarCalendar" /> class. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.TaiwanLunisolarCalendar" /> class, which is equivalent to the first moment of February 18, 1912 C.E. in the Gregorian calendar. </returns> </member> <member name="T:System.Globalization.TextElementEnumerator"> <summary> Enumerates the text elements of a string. </summary> </member> <member name="P:System.Globalization.TextElementEnumerator.Current"> <summary> Gets the current text element in the string. </summary> <returns> An object containing the current text element in the string. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first text element of the string or after the last text element. </exception> </member> <member name="P:System.Globalization.TextElementEnumerator.ElementIndex"> <summary> Gets the index of the text element that the enumerator is currently positioned over. </summary> <returns> The index of the text element that the enumerator is currently positioned over. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first text element of the string or after the last text element. </exception> </member> <member name="M:System.Globalization.TextElementEnumerator.GetTextElement"> <summary> Gets the current text element in the string. </summary> <returns> A new string containing the current text element in the string being read. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator is positioned before the first text element of the string or after the last text element. </exception> </member> <member name="M:System.Globalization.TextElementEnumerator.MoveNext"> <summary> Advances the enumerator to the next text element of the string. </summary> <returns>true if the enumerator was successfully advanced to the next text element; false if the enumerator has passed the end of the string. </returns> <exception cref="T:System.InvalidOperationException"> The string was modified after the enumerator was created. </exception> </member> <member name="M:System.Globalization.TextElementEnumerator.Reset"> <summary> Sets the enumerator to its initial position, which is before the first text element in the string. </summary> </member> <member name="T:System.Globalization.TextInfo"> <summary> Defines properties and behaviors, such as casing, that are specific to a writing system. </summary> </member> <member name="P:System.Globalization.TextInfo.ANSICodePage"> <summary> Gets the American National Standards Institute (ANSI) code page used by the writing system represented by the current <see cref="T:System.Globalization.TextInfo" />. </summary> <returns> The ANSI code page used by the writing system represented by the current <see cref="T:System.Globalization.TextInfo" />. </returns> </member> <member name="M:System.Globalization.TextInfo.Clone"> <summary> Creates a new object that is a copy of the current <see cref="T:System.Globalization.TextInfo" /> object. </summary> <returns> A new instance of <see cref="T:System.Object" /> that is the memberwise clone of the current <see cref="T:System.Globalization.TextInfo" /> object. </returns> </member> <member name="P:System.Globalization.TextInfo.CultureName"> <summary> Gets the name of the culture associated with the current <see cref="T:System.Globalization.TextInfo" /> object. </summary> <returns> The name of a culture. </returns> </member> <member name="P:System.Globalization.TextInfo.EBCDICCodePage"> <summary> Gets the Extended Binary Coded Decimal Interchange Code (EBCDIC) code page used by the writing system represented by the current <see cref="T:System.Globalization.TextInfo" />. </summary> <returns> The EBCDIC code page used by the writing system represented by the current <see cref="T:System.Globalization.TextInfo" />. </returns> </member> <member name="M:System.Globalization.TextInfo.Equals(System.Object)"> <summary> Determines whether the specified object represents the same writing system as the current <see cref="T:System.Globalization.TextInfo" /> object. </summary> <returns>true if <paramref name="obj" /> represents the same writing system as the current <see cref="T:System.Globalization.TextInfo" />; otherwise, false. </returns> <param name="obj"> The object to compare with the current <see cref="T:System.Globalization.TextInfo" />. </param> </member> <member name="M:System.Globalization.TextInfo.GetHashCode"> <summary> Serves as a hash function for the current <see cref="T:System.Globalization.TextInfo" />, suitable for hashing algorithms and data structures, such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Globalization.TextInfo" />. </returns> </member> <member name="P:System.Globalization.TextInfo.IsReadOnly"> <summary> Gets a value indicating whether the current <see cref="T:System.Globalization.TextInfo" /> object is read-only. </summary> <returns>true if the current <see cref="T:System.Globalization.TextInfo" /> object is read-only; otherwise, false. </returns> </member> <member name="P:System.Globalization.TextInfo.IsRightToLeft"> <summary> Gets a value indicating whether the current <see cref="T:System.Globalization.TextInfo" /> object represents a writing system where text flows from right to left. </summary> <returns>true if text flows from right to left; otherwise, false. </returns> </member> <member name="P:System.Globalization.TextInfo.LCID"> <summary> Gets the culture identifier for the culture associated with the current <see cref="T:System.Globalization.TextInfo" /> object. </summary> <returns> A number that identifies the culture that the current <see cref="T:System.Globalization.TextInfo" /> object was created from. </returns> </member> <member name="P:System.Globalization.TextInfo.ListSeparator"> <summary> Gets or sets the string that separates items in a list. </summary> <returns> The string that separates items in a list. </returns> <exception cref="T:System.ArgumentNullException"> The value in a set operation is null. </exception> <exception cref="T:System.InvalidOperationException"> In a set operation, the current <see cref="T:System.Globalization.TextInfo" /> object is read-only. </exception> </member> <member name="P:System.Globalization.TextInfo.MacCodePage"> <summary> Gets the Macintosh code page used by the writing system represented by the current <see cref="T:System.Globalization.TextInfo" />. </summary> <returns> The Macintosh code page used by the writing system represented by the current <see cref="T:System.Globalization.TextInfo" />. </returns> </member> <member name="P:System.Globalization.TextInfo.OEMCodePage"> <summary> Gets the original equipment manufacturer (OEM) code page used by the writing system represented by the current <see cref="T:System.Globalization.TextInfo" />. </summary> <returns> The OEM code page used by the writing system represented by the current <see cref="T:System.Globalization.TextInfo" />. </returns> </member> <member name="M:System.Globalization.TextInfo.ReadOnly(System.Globalization.TextInfo)"> <summary> Returns a read-only version of the specified <see cref="T:System.Globalization.TextInfo" /> object. </summary> <returns> The <see cref="T:System.Globalization.TextInfo" /> object specified by the <paramref name="textInfo" /> parameter, if <paramref name="textInfo" /> is read-only. -or- A read-only memberwise clone of the <see cref="T:System.Globalization.TextInfo" /> object specified by <paramref name="textInfo" />, if <paramref name="textInfo" /> is not read-only. </returns> <param name="textInfo"> A <see cref="T:System.Globalization.TextInfo" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="textInfo" /> is null. </exception> </member> <member name="M:System.Globalization.TextInfo.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)"> <summary> Raises the deserialization event when deserialization is complete. </summary> <param name="sender"> The source of the deserialization event. </param> </member> <member name="M:System.Globalization.TextInfo.ToLower(System.Char)"> <summary> Converts the specified character to lowercase. </summary> <returns> The specified character converted to lowercase. </returns> <param name="c"> The character to convert to lowercase. </param> </member> <member name="M:System.Globalization.TextInfo.ToLower(System.String)"> <summary> Converts the specified string to lowercase. </summary> <returns> The specified string converted to lowercase. </returns> <param name="str"> The string to convert to lowercase. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> </member> <member name="M:System.Globalization.TextInfo.ToString"> <summary> Returns a string that represents the current <see cref="T:System.Globalization.TextInfo" />. </summary> <returns> A string that represents the current <see cref="T:System.Globalization.TextInfo" />. </returns> </member> <member name="M:System.Globalization.TextInfo.ToTitleCase(System.String)"> <summary> Converts the specified string to titlecase. </summary> <returns> The specified string converted to titlecase. </returns> <param name="str"> The string to convert to titlecase. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> </member> <member name="M:System.Globalization.TextInfo.ToUpper(System.Char)"> <summary> Converts the specified character to uppercase. </summary> <returns> The specified character converted to uppercase. </returns> <param name="c"> The character to convert to uppercase. </param> </member> <member name="M:System.Globalization.TextInfo.ToUpper(System.String)"> <summary> Converts the specified string to uppercase. </summary> <returns> The specified string converted to uppercase. </returns> <param name="str"> The string to convert to uppercase. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> </member> <member name="T:System.Globalization.ThaiBuddhistCalendar"> <summary> Represents the Thai Buddhist calendar. </summary> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.ThaiBuddhistCalendar" /> class. </summary> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of months away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of months to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add months. </param> <param name="months"> The number of months to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120000. -or- <paramref name="months" /> is greater than 120000. </exception> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is the specified number of years away from the specified <see cref="T:System.DateTime" />. </summary> <returns> The <see cref="T:System.DateTime" /> that results from adding the specified number of years to the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add years. </param> <param name="years"> The number of years to add. </param> <exception cref="T:System.ArgumentException"> The resulting <see cref="T:System.DateTime" /> is outside the supported range. </exception> </member> <member name="P:System.Globalization.ThaiBuddhistCalendar.AlgorithmType"> <summary> Gets a value indicating whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> Always returns the <see cref="F:System.Globalization.CalendarAlgorithmType.SolarCalendar" /> value. </returns> </member> <member name="P:System.Globalization.ThaiBuddhistCalendar.Eras"> <summary> Gets the list of eras in the <see cref="T:System.Globalization.ThaiBuddhistCalendar" /> class. </summary> <returns> An array that consists of a single element having a value that is always the current era. </returns> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetDayOfMonth(System.DateTime)"> <summary> Returns the day of the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 31 that represents the day of the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetDayOfWeek(System.DateTime)"> <summary> Returns the day of the week in the specified <see cref="T:System.DateTime" />. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetDayOfYear(System.DateTime)"> <summary> Returns the day of the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 366 that represents the day of the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Returns the number of days in the specified month in the specified year in the specified era. </summary> <returns> The number of days in the specified month in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Returns the number of days in the specified year in the specified era. </summary> <returns> The number of days in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetEra(System.DateTime)"> <summary> Returns the era in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the era in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for a specified year and era. </summary> <returns> The return value is always 0 because the <see cref="T:System.Globalization.ThaiBuddhistCalendar" /> class does not support the notion of a leap month. </returns> <param name="year"> A year. </param> <param name="era"> An era. </param> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetMonth(System.DateTime)"> <summary> Returns the month in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer from 1 to 12 that represents the month in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Returns the number of months in the specified year in the specified era. </summary> <returns> The number of months in the specified year in the specified era. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek)"> <summary> Returns the week of the year that includes the date in the specified <see cref="T:System.DateTime" />. </summary> <returns> A 1-based positive integer that represents the week of the year that includes the date in the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> <param name="rule"> One of the <see cref="T:System.Globalization.CalendarWeekRule" /> values that defines a calendar week. </param> <param name="firstDayOfWeek"> One of the <see cref="T:System.DayOfWeek" /> values that represents the first day of the week. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> or <paramref name="firstDayOfWeek" /> is outside the range supported by the calendar. -or- <paramref name="rule" /> is not a valid <see cref="T:System.Globalization.CalendarWeekRule" /> value. </exception> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.GetYear(System.DateTime)"> <summary> Returns the year in the specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the year in the specified <see cref="T:System.DateTime" />. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. </param> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date in the specified era is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year in the specified era is a leap month. </summary> <returns> This method always returns false, unless overridden by a derived class. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> An integer that represents the year. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="P:System.Globalization.ThaiBuddhistCalendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by the <see cref="T:System.Globalization.ThaiBuddhistCalendar" /> class. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.ThaiBuddhistCalendar" /> class, which is equivalent to the last moment of December 31, 9999 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.ThaiBuddhistCalendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by the <see cref="T:System.Globalization.ThaiBuddhistCalendar" /> class. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.ThaiBuddhistCalendar" /> class, which is equivalent to the first moment of January 1, 0001 C.E. in the Gregorian calendar. </returns> </member> <member name="F:System.Globalization.ThaiBuddhistCalendar.ThaiBuddhistEra"> <summary> Represents the current era. This field is constant. </summary> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date and time in the specified era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> An integer that represents the year. </param> <param name="month"> An integer from 1 to 12 that represents the month. </param> <param name="day"> An integer from 1 to 31 that represents the day. </param> <param name="hour"> An integer from 0 to 23 that represents the hour. </param> <param name="minute"> An integer from 0 to 59 that represents the minute. </param> <param name="second"> An integer from 0 to 59 that represents the second. </param> <param name="millisecond"> An integer from 0 to 999 that represents the millisecond. </param> <param name="era"> An integer that represents the era. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. -or- <paramref name="month" /> is outside the range supported by the calendar. -or- <paramref name="day" /> is outside the range supported by the calendar. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than zero or greater than 59. -or- <paramref name="second" /> is less than zero or greater than 59. -or- <paramref name="millisecond" /> is less than zero or greater than 999. -or- <paramref name="era" /> is outside the range supported by the calendar. </exception> </member> <member name="M:System.Globalization.ThaiBuddhistCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year by using the <see cref="P:System.Globalization.ThaiBuddhistCalendar.TwoDigitYearMax" /> property to determine the appropriate century. </summary> <returns> An integer that contains the four-digit representation of <paramref name="year" />. </returns> <param name="year"> A two-digit or four-digit integer that represents the year to convert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by the calendar. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="\" /> </PermissionSet> </member> <member name="P:System.Globalization.ThaiBuddhistCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Globalization.UmAlQuraCalendar"> <summary> Represents the Saudi Hijri (Um Al Qura) calendar. </summary> </member> <member name="M:System.Globalization.UmAlQuraCalendar.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class. </summary> </member> <member name="M:System.Globalization.UmAlQuraCalendar.AddMonths(System.DateTime,System.Int32)"> <summary> Calculates a date that is a specified number of months away from a specified initial date. </summary> <returns> A <see cref="T:System.DateTime" /> that represents the date yielded by adding the number of months specified by the <paramref name="months" /> parameter to the date specified by the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add months. On Windows Vista for .NET Framework 2.0 and later, the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class supports only dates from 04/30/1900 00.00.00 (Gregorian date) through 05/13/2029 23:59:59 (Gregorian date). </param> <param name="months"> The positive or negative number of months to add. </param> <exception cref="T:System.ArgumentException"> The resulting date is outside the range supported by the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="months" /> is less than -120,000 or greater than 120,000. -or- <paramref name="time" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.AddYears(System.DateTime,System.Int32)"> <summary> Calculates a date that is a specified number of years away from a specified initial date. </summary> <returns> A <see cref="T:System.DateTime" /> that represents the date yielded by adding the number of years specified by the <paramref name="years" /> parameter to the date specified by the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to which to add years. On Windows Vista for .NET Framework 2.0 and later, the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class supports only dates from 04/30/1900 00.00.00 (Gregorian date) through 05/13/2029 23:59:59 (Gregorian date). </param> <param name="years"> The positive or negative number of years to add. </param> <exception cref="T:System.ArgumentException"> The resulting date is outside the range supported by the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="years" /> is less than -10,000 or greater than 10,000. -or- <paramref name="time" /> is outside the range supported by this calendar. </exception> </member> <member name="P:System.Globalization.UmAlQuraCalendar.AlgorithmType"> <summary> Gets a value indicating whether the current calendar is solar-based, lunar-based, or a combination of both. </summary> <returns> Always returns the <see cref="F:System.Globalization.CalendarAlgorithmType.LunarCalendar" /> value. </returns> </member> <member name="P:System.Globalization.UmAlQuraCalendar.Eras"> <summary> Gets a list of the eras that are supported by the current <see cref="T:System.Globalization.UmAlQuraCalendar" />. </summary> <returns> An array that consists of a single element having a value that is <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" />. </returns> </member> <member name="M:System.Globalization.UmAlQuraCalendar.GetDayOfMonth(System.DateTime)"> <summary> Calculates on which day of the month a specified date occurs. </summary> <returns> An integer from 1 through 30 that represents the day of the month specified by the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. On Windows Vista for .NET Framework 2.0 and later, the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class supports only dates from 04/30/1900 00.00.00 (Gregorian date) through 05/13/2029 23:59:59 (Gregorian date). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.GetDayOfWeek(System.DateTime)"> <summary> Calculates on which day of the week a specified date occurs. </summary> <returns> A <see cref="T:System.DayOfWeek" /> value that represents the day of the week specified by the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. On Windows Vista for .NET Framework 2.0 and later, the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class supports only dates from 04/30/1900 00.00.00 (Gregorian date) through 05/13/2029 23:59:59 (Gregorian date). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.GetDayOfYear(System.DateTime)"> <summary> Calculates on which day of the year a specified date occurs. </summary> <returns> An integer from 1 through 355 that represents the day of the year specified by the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. On Windows Vista for .NET Framework 2.0 and later, the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class supports only dates from 04/30/1900 00.00.00 (Gregorian date) through 05/13/2029 23:59:59 (Gregorian date). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32)"> <summary> Calculates the number of days in the specified month of the specified year and era. </summary> <returns> The number of days in the specified month in the specified year and era. The return value is 29 in a common year and 30 in a leap year. </returns> <param name="year"> A year. </param> <param name="month"> An integer from 1 through 12 that represents a month. </param> <param name="era"> An era. Specify <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, or <paramref name="era" /> is outside the range supported by the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.GetDaysInYear(System.Int32,System.Int32)"> <summary> Calculates the number of days in the specified year of the specified era. </summary> <returns> The number of days in the specified year and era. The number of days is 354 in a common year or 355 in a leap year. </returns> <param name="year"> A year. </param> <param name="era"> An era. Specify <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.GetEra(System.DateTime)"> <summary> Calculates in which era a specified date occurs. </summary> <returns> Always returns the <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" /> value. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. On Windows Vista for .NET Framework 2.0 and later, the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class supports only dates from 04/30/1900 00.00.00 (Gregorian date) through 05/13/2029 23:59:59 (Gregorian date). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.GetLeapMonth(System.Int32,System.Int32)"> <summary> Calculates the leap month for a specified year and era. </summary> <returns> The return value is always 0 because the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class does not support the notion of a leap month. </returns> <param name="year"> A year. </param> <param name="era"> An era. Specify <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is less than 1318 or greater than 1450. -or- <paramref name="era" /> is not <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" />. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.GetMonth(System.DateTime)"> <summary> Calculates the month in which a specified date occurs. </summary> <returns> An integer from 1 through 12 that represents the month in the date specified by the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. On Windows Vista for .NET Framework 2.0 and later, the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class supports only dates from 04/30/1900 00.00.00 (Gregorian date) through 05/13/2029 23:59:59 (Gregorian date). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.GetMonthsInYear(System.Int32,System.Int32)"> <summary> Calculates the number of months in the specified year of the specified era. </summary> <returns> The return value is always 12. </returns> <param name="year"> A year. </param> <param name="era"> An era. Specify <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by this calendar. </exception> <exception cref="T:System.ArgumentException"> <paramref name="era" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.GetYear(System.DateTime)"> <summary> Calculates the year of a date represented by a specified <see cref="T:System.DateTime" />. </summary> <returns> An integer that represents the year specified by the <paramref name="time" /> parameter. </returns> <param name="time"> The <see cref="T:System.DateTime" /> to read. On Windows Vista for .NET Framework 2.0 and later, the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class supports only dates from 04/30/1900 00.00.00 (Gregorian date) through 05/13/2029 23:59:59 (Gregorian date). </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="time" /> is outside the range supported by this calendar. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified date is a leap day. </summary> <returns>true if the specified day is a leap day; otherwise, false. The return value is always false because the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class does not support the notion of a leap day. </returns> <param name="year"> A year. </param> <param name="month"> An integer from 1 through 12 that represents a month. </param> <param name="day"> An integer from 1 through 30 that represents a day. </param> <param name="era"> An era. Specify <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, or <paramref name="era" /> is outside the range supported by the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32)"> <summary> Determines whether the specified month in the specified year and era is a leap month. </summary> <returns> The return value is always false because the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class does not support the notion of a leap month. </returns> <param name="year"> A year. </param> <param name="month"> An integer from 1 through 12 that represents a month. </param> <param name="era"> An era. Specify <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, or <paramref name="era" /> is outside the range supported by the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.IsLeapYear(System.Int32,System.Int32)"> <summary> Determines whether the specified year in the specified era is a leap year. </summary> <returns>true if the specified year is a leap year; otherwise, false. </returns> <param name="year"> A year. </param> <param name="era"> An era. Specify <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> or <paramref name="era" /> is outside the range supported by the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class. </exception> </member> <member name="P:System.Globalization.UmAlQuraCalendar.MaxSupportedDateTime"> <summary> Gets the latest date and time supported by this calendar. </summary> <returns> The latest date and time supported by the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class, which is equivalent to the last moment of May 13, 2029 C.E. in the Gregorian calendar. </returns> </member> <member name="P:System.Globalization.UmAlQuraCalendar.MinSupportedDateTime"> <summary> Gets the earliest date and time supported by this calendar. </summary> <returns> The earliest date and time supported by the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class, which is equivalent to the first moment of April 30, 1900 C.E. in the Gregorian calendar. </returns> </member> <member name="M:System.Globalization.UmAlQuraCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Returns a <see cref="T:System.DateTime" /> that is set to the specified date, time, and era. </summary> <returns> The <see cref="T:System.DateTime" /> that is set to the specified date and time in the current era. </returns> <param name="year"> A year. </param> <param name="month"> An integer from 1 through 12 that represents a month. </param> <param name="day"> An integer from 1 through 29 that represents a day. </param> <param name="hour"> An integer from 0 through 23 that represents an hour. </param> <param name="minute"> An integer from 0 through 59 that represents a minute. </param> <param name="second"> An integer from 0 through 59 that represents a second. </param> <param name="millisecond"> An integer from 0 through 999 that represents a millisecond. </param> <param name="era"> An era. Specify <see cref="F:System.Globalization.Calendar.CurrentEra" /> or <see cref="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" />, <paramref name="month" />, <paramref name="day" />, or <paramref name="era" /> is outside the range supported by the <see cref="T:System.Globalization.UmAlQuraCalendar" /> class. -or- <paramref name="hour" /> is less than zero or greater than 23. -or- <paramref name="minute" /> is less than zero or greater than 59. -or- <paramref name="second" /> is less than zero or greater than 59. -or- <paramref name="millisecond" /> is less than zero or greater than 999. </exception> </member> <member name="M:System.Globalization.UmAlQuraCalendar.ToFourDigitYear(System.Int32)"> <summary> Converts the specified year to a four-digit year by using the <see cref="P:System.Globalization.UmAlQuraCalendar.TwoDigitYearMax" /> property to determine the appropriate century. </summary> <returns> If the <paramref name="year" /> parameter is a 2-digit year, the return value is the corresponding 4-digit year. If the <paramref name="year" /> parameter is a 4-digit year, the return value is the unchanged <paramref name="year" /> parameter. </returns> <param name="year"> A 2-digit year from 0 through 99, or a 4-digit Um Al Qura calendar year from 1318 through 1450. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="year" /> is outside the range supported by this calendar. </exception> </member> <member name="P:System.Globalization.UmAlQuraCalendar.TwoDigitYearMax"> <summary> Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. </summary> <returns> The last year of a 100-year range that can be represented by a 2-digit year. </returns> <exception cref="T:System.InvalidOperationException"> This calendar is read-only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> In a set operation, the Um Al Qura calendar year value is less than 1318 but not 99, or is greater than 1450. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra"> <summary> Represents the current era. This field is constant. </summary> </member> <member name="T:System.Globalization.UnicodeCategory"> <summary> Defines the Unicode category of a character. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.UppercaseLetter"> <summary> Indicates that the character is an uppercase letter. Signified by the Unicode designation "Lu" (letter, uppercase). The value is 0. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.LowercaseLetter"> <summary> Indicates that the character is a lowercase letter. Signified by the Unicode designation "Ll" (letter, lowercase). The value is 1. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.TitlecaseLetter"> <summary> Indicates that the character is a titlecase letter. Signified by the Unicode designation "Lt" (letter, titlecase). The value is 2. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.ModifierLetter"> <summary> Indicates that the character is a modifier letter, which is free-standing spacing character that indicates modifications of a preceding letter. Signified by the Unicode designation "Lm" (letter, modifier). The value is 3. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.OtherLetter"> <summary> Indicates that the character is a letter that is not an uppercase letter, a lowercase letter, a titlecase letter, or a modifier letter. Signified by the Unicode designation "Lo" (letter, other). The value is 4. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.NonSpacingMark"> <summary> Indicates that the character is a nonspacing character, which indicates modifications of a base character. Signified by the Unicode designation "Mn" (mark, nonspacing). The value is 5. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.SpacingCombiningMark"> <summary> Indicates that the character is a spacing character, which indicates modifications of a base character and affects the width of the glyph for that base character. Signified by the Unicode designation "Mc" (mark, spacing combining). The value is 6. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.EnclosingMark"> <summary> Indicates that the character is an enclosing mark, which is a nonspacing combining character that surrounds all previous characters up to and including a base character. Signified by the Unicode designation "Me" (mark, enclosing). The value is 7. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.DecimalDigitNumber"> <summary> Indicates that the character is a decimal digit, that is, in the range 0 through 9. Signified by the Unicode designation "Nd" (number, decimal digit). The value is 8. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.LetterNumber"> <summary> Indicates that the character is a number represented by a letter, instead of a decimal digit, for example, the Roman numeral for five, which is "V". The indicator is signified by the Unicode designation "Nl" (number, letter). The value is 9. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.OtherNumber"> <summary> Indicates that the character is a number that is neither a decimal digit nor a letter number, for example, the fraction 1/2. The indicator is signified by the Unicode designation "No" (number, other). The value is 10. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.SpaceSeparator"> <summary> Indicates that the character is a space character, which has no glyph but is not a control or format character. Signified by the Unicode designation "Zs" (separator, space). The value is 11. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.LineSeparator"> <summary> Indicates that the character is used to separate lines of text. Signified by the Unicode designation "Zl" (separator, line). The value is 12. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.ParagraphSeparator"> <summary> Indicates that the character is used to separate paragraphs. Signified by the Unicode designation "Zp" (separator, paragraph). The value is 13. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.Control"> <summary> Indicates that the character is a control code, with a Unicode value of U+007F or in the range U+0000 through U+001F or U+0080 through U+009F. Signified by the Unicode designation "Cc" (other, control). The value is 14. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.Format"> <summary> Indicates that the character is a format character, which is not normally rendered but affects the layout of text or the operation of text processes. Signified by the Unicode designation "Cf" (other, format). The value is 15. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.Surrogate"> <summary> Indicates that the character is a high surrogate or a low surrogate. Surrogate code values are in the range U+D800 through U+DFFF. Signified by the Unicode designation "Cs" (other, surrogate). The value is 16. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.PrivateUse"> <summary> Indicates that the character is a private-use character, with a Unicode value in the range U+E000 through U+F8FF. Signified by the Unicode designation "Co" (other, private use). The value is 17. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.ConnectorPunctuation"> <summary> Indicates that the character is a connector punctuation, which connects two characters. Signified by the Unicode designation "Pc" (punctuation, connector). The value is 18. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.DashPunctuation"> <summary> Indicates that the character is a dash or a hyphen. Signified by the Unicode designation "Pd" (punctuation, dash). The value is 19. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.OpenPunctuation"> <summary> Indicates that the character is the opening character of one of the paired punctuation marks, such as parentheses, square brackets, and braces. Signified by the Unicode designation "Ps" (punctuation, open). The value is 20. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.ClosePunctuation"> <summary> Indicates that the character is the closing character of one of the paired punctuation marks, such as parentheses, square brackets, and braces. Signified by the Unicode designation "Pe" (punctuation, close). The value is 21. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.InitialQuotePunctuation"> <summary> Indicates that the character is an opening or initial quotation mark. Signified by the Unicode designation "Pi" (punctuation, initial quote). The value is 22. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.FinalQuotePunctuation"> <summary> Indicates that the character is a closing or final quotation mark. Signified by the Unicode designation "Pf" (punctuation, final quote). The value is 23. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.OtherPunctuation"> <summary> Indicates that the character is a punctuation that is not a connector punctuation, a dash punctuation, an open punctuation, a close punctuation, an initial quote punctuation, or a final quote punctuation. Signified by the Unicode designation "Po" (punctuation, other). The value is 24. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.MathSymbol"> <summary> Indicates that the character is a mathematical symbol, such as "+" or "= ". Signified by the Unicode designation "Sm" (symbol, math). The value is 25. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.CurrencySymbol"> <summary> Indicates that the character is a currency symbol. Signified by the Unicode designation "Sc" (symbol, currency). The value is 26. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.ModifierSymbol"> <summary> Indicates that the character is a modifier symbol, which indicates modifications of surrounding characters. For example, the fraction slash indicates that the number to the left is the numerator and the number to the right is the denominator. The indicator is signified by the Unicode designation "Sk" (symbol, modifier). The value is 27. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.OtherSymbol"> <summary> Indicates that the character is a symbol that is not a mathematical symbol, a currency symbol or a modifier symbol. Signified by the Unicode designation "So" (symbol, other). The value is 28. </summary> </member> <member name="F:System.Globalization.UnicodeCategory.OtherNotAssigned"> <summary> Indicates that the character is not assigned to any Unicode category. Signified by the Unicode designation "Cn" (other, not assigned). The value is 29. </summary> </member> <member name="M:System.Globalization.GregorianCalendar.AddWeeks(System.DateTime,System.Int32)"></member> <member name="M:System.Globalization.CompareInfo.Finalize"></member> <member name="T:System.IO.BinaryReader"> <summary> Reads primitive data types as binary values in a specific encoding. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the <see cref="T:System.IO.BinaryReader" /> class based on the supplied stream and using <see cref="T:System.Text.UTF8Encoding" />. </summary> <param name="input"> A stream. </param> <exception cref="T:System.ArgumentException"> The stream does not support reading, the stream is null, or the stream is already closed. </exception> </member> <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream,System.Text.Encoding)"> <summary> Initializes a new instance of the <see cref="T:System.IO.BinaryReader" /> class based on the supplied stream and a specific character encoding. </summary> <param name="input"> The supplied stream. </param> <param name="encoding"> The character encoding. </param> <exception cref="T:System.ArgumentException"> The stream does not support reading, the stream is null, or the stream is already closed. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="encoding" /> is null. </exception> </member> <member name="P:System.IO.BinaryReader.BaseStream"> <summary> Exposes access to the underlying stream of the <see cref="T:System.IO.BinaryReader" />. </summary> <returns> The underlying stream associated with the BinaryReader. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.Close"> <summary> Closes the current reader and the underlying stream. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.BinaryReader" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.IO.BinaryReader.FillBuffer(System.Int32)"> <summary> Fills the internal buffer with the specified number of bytes read from the stream. </summary> <param name="numBytes"> The number of bytes to be read. </param> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached before <paramref name="numBytes" /> could be read. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Requested <paramref name="numBytes" /> is larger than the internal buffer size. </exception> </member> <member name="M:System.IO.BinaryReader.PeekChar"> <summary> Returns the next available character and does not advance the byte or character position. </summary> <returns> The next available character, or -1 if no more characters are available or the stream does not support seeking. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.Read"> <summary> Reads characters from the underlying stream and advances the current position of the stream in accordance with the Encoding used and the specific character being read from the stream. </summary> <returns> The next character from the input stream, or -1 if no characters are currently available. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.Read(System.Byte[],System.Int32,System.Int32)"> <summary> Reads <paramref name="count" /> bytes from the stream with <paramref name="index" /> as the starting point in the byte array. </summary> <returns> The number of characters read into <paramref name="buffer" />. This might be less than the number of bytes requested if that many bytes are not available, or it might be zero if the end of the stream is reached. </returns> <param name="buffer"> The buffer to read data into. </param> <param name="index"> The starting point in the buffer at which to begin reading into the buffer. </param> <param name="count"> The number of characters to read. </param> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.Read(System.Char[],System.Int32,System.Int32)"> <summary> Reads <paramref name="count" /> characters from the stream with <paramref name="index" /> as the starting point in the character array. </summary> <returns> The total number of characters read into the buffer. This might be less than the number of characters requested if that many characters are not currently available, or it might be zero if the end of the stream is reached. </returns> <param name="buffer"> The buffer to read data into. </param> <param name="index"> The starting point in the buffer at which to begin reading into the buffer. </param> <param name="count"> The number of characters to read. </param> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.Read7BitEncodedInt"> <summary> Reads in a 32-bit integer in compressed format. </summary> <returns> A 32-bit integer in compressed format. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.FormatException"> The stream is corrupted. </exception> </member> <member name="M:System.IO.BinaryReader.ReadBoolean"> <summary> Reads a Boolean value from the current stream and advances the current position of the stream by one byte. </summary> <returns>true if the byte is nonzero; otherwise, false. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadByte"> <summary> Reads the next byte from the current stream and advances the current position of the stream by one byte. </summary> <returns> The next byte read from the current stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadBytes(System.Int32)"> <summary> Reads <paramref name="count" /> bytes from the current stream into a byte array and advances the current position by <paramref name="count" /> bytes. </summary> <returns> A byte array containing data read from the underlying stream. This might be less than the number of bytes requested if the end of the stream is reached. </returns> <param name="count"> The number of bytes to read. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is negative. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadChar"> <summary> Reads the next character from the current stream and advances the current position of the stream in accordance with the Encoding used and the specific character being read from the stream. </summary> <returns> A character read from the current stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ArgumentException"> A surrogate character was read. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadChars(System.Int32)"> <summary> Reads <paramref name="count" /> characters from the current stream, returns the data in a character array, and advances the current position in accordance with the Encoding used and the specific character being read from the stream. </summary> <returns> A character array containing data read from the underlying stream. This might be less than the number of characters requested if the end of the stream is reached. </returns> <param name="count"> The number of characters to read. </param> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is negative. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadDecimal"> <summary> Reads a decimal value from the current stream and advances the current position of the stream by sixteen bytes. </summary> <returns> A decimal value read from the current stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadDouble"> <summary> Reads an 8-byte floating point value from the current stream and advances the current position of the stream by eight bytes. </summary> <returns> An 8-byte floating point value read from the current stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadInt16"> <summary> Reads a 2-byte signed integer from the current stream and advances the current position of the stream by two bytes. </summary> <returns> A 2-byte signed integer read from the current stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadInt32"> <summary> Reads a 4-byte signed integer from the current stream and advances the current position of the stream by four bytes. </summary> <returns> A 4-byte signed integer read from the current stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadInt64"> <summary> Reads an 8-byte signed integer from the current stream and advances the current position of the stream by eight bytes. </summary> <returns> An 8-byte signed integer read from the current stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadSByte"> <summary> Reads a signed byte from this stream and advances the current position of the stream by one byte. </summary> <returns> A signed byte read from the current stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadSingle"> <summary> Reads a 4-byte floating point value from the current stream and advances the current position of the stream by four bytes. </summary> <returns> A 4-byte floating point value read from the current stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadString"> <summary> Reads a string from the current stream. The string is prefixed with the length, encoded as an integer seven bits at a time. </summary> <returns> The string being read. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadUInt16"> <summary> Reads a 2-byte unsigned integer from the current stream using little-endian encoding and advances the position of the stream by two bytes. </summary> <returns> A 2-byte unsigned integer read from this stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadUInt32"> <summary> Reads a 4-byte unsigned integer from the current stream and advances the position of the stream by four bytes. </summary> <returns> A 4-byte unsigned integer read from this stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.ReadUInt64"> <summary> Reads an 8-byte unsigned integer from the current stream and advances the position of the stream by eight bytes. </summary> <returns> An 8-byte unsigned integer read from this stream. </returns> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryReader.System#IDisposable#Dispose"> <summary> Releases all resources used by the <see cref="T:System.IO.BinaryWriter" />. </summary> </member> <member name="T:System.IO.BinaryWriter"> <summary> Writes primitive types in binary to a stream and supports writing strings in a specific encoding. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BinaryWriter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class that writes to a stream. </summary> </member> <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class based on the supplied stream and using UTF-8 as the encoding for strings. </summary> <param name="output"> The output stream. </param> <exception cref="T:System.ArgumentException"> The stream does not support writing, or the stream is already closed. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="output" /> is null. </exception> </member> <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream,System.Text.Encoding)"> <summary> Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class based on the supplied stream and a specific character encoding. </summary> <param name="output"> The supplied stream. </param> <param name="encoding"> The character encoding. </param> <exception cref="T:System.ArgumentException"> The stream does not support writing, or the stream is already closed. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="output" /> or <paramref name="encoding" /> is null. </exception> </member> <member name="P:System.IO.BinaryWriter.BaseStream"> <summary> Gets the underlying stream of the <see cref="T:System.IO.BinaryWriter" />. </summary> <returns> The underlying stream associated with the BinaryWriter. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Close"> <summary> Closes the current <see cref="T:System.IO.BinaryWriter" /> and the underlying stream. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.BinaryWriter" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.IO.BinaryWriter.Flush"> <summary> Clears all buffers for the current writer and causes any buffered data to be written to the underlying device. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.BinaryWriter.Null"> <summary> Specifies a <see cref="T:System.IO.BinaryWriter" /> with no backing store. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.BinaryWriter.OutStream"> <summary> Holds the underlying stream. </summary> </member> <member name="M:System.IO.BinaryWriter.Seek(System.Int32,System.IO.SeekOrigin)"> <summary> Sets the position within the current stream. </summary> <returns> The position with the current stream. </returns> <param name="offset"> A byte offset relative to <paramref name="origin" />. </param> <param name="origin"> A field of <see cref="T:System.IO.SeekOrigin" /> indicating the reference point from which the new position is to be obtained. </param> <exception cref="T:System.IO.IOException"> The file pointer was moved to an invalid location. </exception> <exception cref="T:System.ArgumentException"> The <see cref="T:System.IO.SeekOrigin" /> value is invalid. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.System#IDisposable#Dispose"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.BinaryWriter" /> and optionally releases the managed resources. </summary> </member> <member name="M:System.IO.BinaryWriter.Write(System.Boolean)"> <summary> Writes a one-byte Boolean value to the current stream, with 0 representing false and 1 representing true. </summary> <param name="value"> The Boolean value to write (0 or 1). </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Byte)"> <summary> Writes an unsigned byte to the current stream and advances the stream position by one byte. </summary> <param name="value"> The unsigned byte to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Byte[])"> <summary> Writes a byte array to the underlying stream. </summary> <param name="buffer"> A byte array containing the data to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Byte[],System.Int32,System.Int32)"> <summary> Writes a region of a byte array to the current stream. </summary> <param name="buffer"> A byte array containing the data to write. </param> <param name="index"> The starting point in <paramref name="buffer" /> at which to begin writing. </param> <param name="count"> The number of bytes to write. </param> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Char)"> <summary> Writes a Unicode character to the current stream and advances the current position of the stream in accordance with the Encoding used and the specific characters being written to the stream. </summary> <param name="ch"> The non-surrogate, Unicode character to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ch" /> is a single surrogate character. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Char[])"> <summary> Writes a character array to the current stream and advances the current position of the stream in accordance with the Encoding used and the specific characters being written to the stream. </summary> <param name="chars"> A character array containing the data to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Char[],System.Int32,System.Int32)"> <summary> Writes a section of a character array to the current stream, and advances the current position of the stream in accordance with the Encoding used and perhaps the specific characters being written to the stream. </summary> <param name="chars"> A character array containing the data to write. </param> <param name="index"> The starting point in <paramref name="buffer" /> from which to begin writing. </param> <param name="count"> The number of characters to write. </param> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Decimal)"> <summary> Writes a decimal value to the current stream and advances the stream position by sixteen bytes. </summary> <param name="value"> The decimal value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Double)"> <summary> Writes an eight-byte floating-point value to the current stream and advances the stream position by eight bytes. </summary> <param name="value"> The eight-byte floating-point value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Int16)"> <summary> Writes a two-byte signed integer to the current stream and advances the stream position by two bytes. </summary> <param name="value"> The two-byte signed integer to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Int32)"> <summary> Writes a four-byte signed integer to the current stream and advances the stream position by four bytes. </summary> <param name="value"> The four-byte signed integer to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Int64)"> <summary> Writes an eight-byte signed integer to the current stream and advances the stream position by eight bytes. </summary> <param name="value"> The eight-byte signed integer to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.SByte)"> <summary> Writes a signed byte to the current stream and advances the stream position by one byte. </summary> <param name="value"> The signed byte to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.Single)"> <summary> Writes a four-byte floating-point value to the current stream and advances the stream position by four bytes. </summary> <param name="value"> The four-byte floating-point value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.String)"> <summary> Writes a length-prefixed string to this stream in the current encoding of the <see cref="T:System.IO.BinaryWriter" />, and advances the current position of the stream in accordance with the encoding used and the specific characters being written to the stream. </summary> <param name="value"> The value to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.UInt16)"> <summary> Writes a two-byte unsigned integer to the current stream and advances the stream position by two bytes. </summary> <param name="value"> The two-byte unsigned integer to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.UInt32)"> <summary> Writes a four-byte unsigned integer to the current stream and advances the stream position by four bytes. </summary> <param name="value"> The four-byte unsigned integer to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write(System.UInt64)"> <summary> Writes an eight-byte unsigned integer to the current stream and advances the stream position by eight bytes. </summary> <param name="value"> The eight-byte unsigned integer to write. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.BinaryWriter.Write7BitEncodedInt(System.Int32)"> <summary> Writes a 32-bit integer in a compressed format. </summary> <param name="value"> The 32-bit integer to be written. </param> <exception cref="T:System.IO.EndOfStreamException"> The end of the stream is reached. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> The stream is closed. </exception> </member> <member name="T:System.IO.BufferedStream"> <summary> Adds a buffering layer to read and write operations on another stream. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BufferedStream.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the <see cref="T:System.IO.BufferedStream" /> class with a default buffer size of 4096 bytes. </summary> <param name="stream"> The current stream. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> is null. </exception> </member> <member name="M:System.IO.BufferedStream.#ctor(System.IO.Stream,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.BufferedStream" /> class with the specified buffer size. </summary> <param name="stream"> The current stream. </param> <param name="bufferSize"> The buffer size in bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is negative. </exception> </member> <member name="P:System.IO.BufferedStream.CanRead"> <summary> Gets a value indicating whether the current stream supports reading. </summary> <returns>true if the stream supports reading; false if the stream is closed or was opened with write-only access. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.BufferedStream.CanSeek"> <summary> Gets a value indicating whether the current stream supports seeking. </summary> <returns>true if the stream supports seeking; false if the stream is closed or if the stream was constructed from an operating system handle such as a pipe or output to the console. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.BufferedStream.CanWrite"> <summary> Gets a value indicating whether the current stream supports writing. </summary> <returns>true if the stream supports writing; false if the stream is closed or was opened with read-only access. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BufferedStream.Flush"> <summary> Clears all buffers for this stream and causes any buffered data to be written to the underlying device. </summary> <exception cref="T:System.IO.IOException"> The data source or repository is not open. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.BufferedStream.Length"> <summary> Gets the stream length in bytes. </summary> <returns> The stream length in bytes. </returns> <exception cref="T:System.IO.IOException"> The underlying stream is null or closed. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support seeking. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.BufferedStream.Position"> <summary> Gets the position within the current stream. </summary> <returns> The position within the current stream. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value passed to <see cref="M:System.IO.BufferedStream.Seek(System.Int64,System.IO.SeekOrigin)" /> is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as the stream being closed. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support seeking. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BufferedStream.Read(System.Byte[],System.Int32,System.Int32)"> <summary> Copies bytes from the current buffered stream to an array. </summary> <returns> The total number of bytes read into <paramref name="array" />. This can be less than the number of bytes requested if that many bytes are not currently available, or 0 if the end of the stream has been reached before any data can be read. </returns> <param name="array"> The buffer to which bytes are to be copied. </param> <param name="offset"> The byte offset in the buffer at which to begin reading bytes. </param> <param name="count"> The number of bytes to be read. </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="array" /> minus <paramref name="offset" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.IO.IOException"> The stream is not open or is null. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support reading. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BufferedStream.ReadByte"> <summary> Reads a byte from the underlying stream and returns the byte cast to an int, or returns -1 if reading from the end of the stream. </summary> <returns> The byte cast to an int, or -1 if reading from the end of the stream. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as the stream being closed. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support reading. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BufferedStream.Seek(System.Int64,System.IO.SeekOrigin)"> <summary> Sets the position within the current buffered stream. </summary> <returns> The new position within the current buffered stream. </returns> <param name="offset"> A byte offset relative to <paramref name="origin" />. </param> <param name="origin"> A value of type <see cref="T:System.IO.SeekOrigin" /> indicating the reference point from which to obtain the new position. </param> <exception cref="T:System.IO.IOException"> The stream is not open or is null. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support seeking. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BufferedStream.SetLength(System.Int64)"> <summary> Sets the length of the buffered stream. </summary> <param name="value"> An integer indicating the desired length of the current buffered stream in bytes. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="value" /> is negative. </exception> <exception cref="T:System.IO.IOException"> The stream is not open or is null. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support both writing and seeking. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BufferedStream.Write(System.Byte[],System.Int32,System.Int32)"> <summary> Copies bytes to the buffered stream and advances the current position within the buffered stream by the number of bytes written. </summary> <param name="array"> The byte array from which to copy <paramref name="count" /> bytes to the current buffered stream. </param> <param name="offset"> The offset in the buffer at which to begin copying bytes to the current buffered stream. </param> <param name="count"> The number of bytes to be written to the current buffered stream. </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="array" /> minus <paramref name="offset" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.IO.IOException"> The stream is closed or null. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support writing. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BufferedStream.WriteByte(System.Byte)"> <summary> Writes a byte to the current position in the buffered stream. </summary> <param name="value"> A byte to write to the stream. </param> <exception cref="T:System.NotSupportedException"> The stream does not support writing. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.IO.Directory"> <summary> Exposes static methods for creating, moving, and enumerating through directories and subdirectories. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Directory.CreateDirectory(System.String)"> <summary> Creates all directories and subdirectories as specified by <paramref name="path" />. </summary> <returns> A <see cref="T:System.IO.DirectoryInfo" /> as specified by <paramref name="path" />. </returns> <param name="path"> The directory path to create. </param> <exception cref="T:System.IO.IOException"> The directory specified by <paramref name="path" /> is read-only. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="path" /> is prefixed with, or contains only a colon character (:). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> contains a colon character (:) that is not part of a drive label ("C:\"). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.CreateDirectory(System.String,System.Security.AccessControl.DirectorySecurity)"> <summary> Creates all the directories in the specified path, applying the specified Windows security. </summary> <returns> A <see cref="T:System.IO.DirectoryInfo" /> object representing the newly created directory. </returns> <param name="path"> The directory to create. </param> <param name="directorySecurity"> The access control to apply to the directory. </param> <exception cref="T:System.IO.IOException"> The directory specified by <paramref name="path" /> is read-only. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="path" /> is prefixed with, or contains only a colon character (:). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> contains a colon character (:) that is not part of a drive label ("C:\"). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.Delete(System.String)"> <summary> Deletes an empty directory from a specified path. </summary> <param name="path"> The name of the empty directory to remove. This directory must be writable or empty. </param> <exception cref="T:System.IO.IOException"> A file with the same name and location specified by <paramref name="path" /> exists. -or- The directory is the application's current working directory. -or- The directory specified by <paramref name="path" /> is not empty. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path does not exist or could not be found. -or- The specified path is invalid (for example, it is on an unmapped drive). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.Delete(System.String,System.Boolean)"> <summary> Deletes the specified directory and, if indicated, any subdirectories in the directory. </summary> <param name="path"> The name of the directory to remove. </param> <param name="recursive">true to remove directories, subdirectories, and files in <paramref name="path" />; otherwise, false. </param> <exception cref="T:System.IO.IOException"> A file with the same name and location specified by <paramref name="path" /> exists. -or- The directory specified by <paramref name="path" /> is read-only, or <paramref name="recursive" /> is false and <paramref name="path" /> is not an empty directory. -or- The directory is the application's current working directory. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path does not exist or could not be found. -or- The specified path is invalid (for example, it is on an unmapped drive). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.Exists(System.String)"> <summary> Determines whether the given path refers to an existing directory on disk. </summary> <returns>true if <paramref name="path" /> refers to an existing directory; otherwise, false. </returns> <param name="path"> The path to test. </param> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetAccessControl(System.String)"> <summary> Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that encapsulates the access control list (ACL) entries for a specified directory. </summary> <returns> A <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that encapsulates the access control rules for the file described by the <paramref name="path" /> parameter. </returns> <param name="path"> The path to a directory containing a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that describes the file's access control list (ACL) information. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> parameter is null. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the directory. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> <exception cref="T:System.SystemException"> The directory could not be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="path" /> parameter specified a directory that is read-only. -or- This operation is not supported on the current platform. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetAccessControl(System.String,System.Security.AccessControl.AccessControlSections)"> <summary> Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that encapsulates the specified type of access control list (ACL) entries for a specified directory. </summary> <returns> A <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that encapsulates the access control rules for the file described by the <paramref name="path" /> parameter. </returns> <param name="path"> The path to a directory containing a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that describes the file's access control list (ACL) information. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> values that specifies the type of access control list (ACL) information to receive. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> parameter is null. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the directory. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> <exception cref="T:System.SystemException"> The directory could not be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="path" /> parameter specified a directory that is read-only. -or- This operation is not supported on the current platform. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetCreationTime(System.String)"> <summary> Gets the creation date and time of a directory. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the creation date and time for the specified directory. This value is expressed in local time. </returns> <param name="path"> The path of the directory. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetCreationTimeUtc(System.String)"> <summary> Gets the creation date and time, in Coordinated Universal Time (UTC) format, of a directory. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the creation date and time for the specified directory. This value is expressed in UTC time. </returns> <param name="path"> The path of the directory. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetCurrentDirectory"> <summary> Gets the current working directory of the application. </summary> <returns> A string containing the path of the current working directory. </returns> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.NotSupportedException"> The operating system is Windows CE, which does not have current directory functionality. This method is available in the .NET Compact Framework, but is not currently supported. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetDirectories(System.String)"> <summary> Gets the names of subdirectories in the specified directory. </summary> <returns> An array of type String containing the names of subdirectories in <paramref name="path" />. </returns> <param name="path"> The path for which an array of subdirectory names is returned. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> is a file name. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetDirectories(System.String,System.String)"> <summary> Gets an array of directories matching the specified search pattern from the current directory. </summary> <returns> A String array of directories matching the search pattern. </returns> <param name="path"> The path to search. </param> <param name="searchPattern"> The search string to match against the names of files in <paramref name="path" />. The parameter cannot end in two periods ("..") or contain two periods ("..") followed by <see cref="F:System.IO.Path.DirectorySeparatorChar" /> or <see cref="F:System.IO.Path.AltDirectorySeparatorChar" />, nor can it contain any of the characters in <see cref="F:System.IO.Path.InvalidPathChars" />. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="searchPattern" /> does not contain a valid pattern. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> or <paramref name="searchPattern" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> is a file name. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetDirectories(System.String,System.String,System.IO.SearchOption)"> <summary> Gets an array of directories matching the specified search pattern from the current directory, using a value to determine whether to search subdirectories. </summary> <returns> A String array of directories matching the search pattern. </returns> <param name="path"> The path to search. </param> <param name="searchPattern"> The search string to match against the names of files in <paramref name="path" />. The parameter cannot end in two periods ("..") or contain two periods ("..") followed by <see cref="F:System.IO.Path.DirectorySeparatorChar" /> or <see cref="F:System.IO.Path.AltDirectorySeparatorChar" />, nor can it contain any of the characters in <see cref="F:System.IO.Path.InvalidPathChars" />. </param> <param name="searchOption"> One of the <see cref="T:System.IO.SearchOption" /> values that specifies whether the search operation should include all subdirectories or only the current directory. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="searchPattern" /> does not contain a valid pattern. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> or <paramref name="searchPattern" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> is a file name. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> </member> <member name="M:System.IO.Directory.GetDirectoryRoot(System.String)"> <summary> Returns the volume information, root information, or both for the specified path. </summary> <returns> A string containing the volume information, root information, or both for the specified path. </returns> <param name="path"> The path of a file or directory. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetFiles(System.String)"> <summary> Returns the names of files in the specified directory. </summary> <returns> A String array of file names in the specified directory. </returns> <param name="path"> The directory from which to retrieve the files. </param> <exception cref="T:System.IO.IOException"> <paramref name="path" /> is a file name. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetFiles(System.String,System.String)"> <summary> Returns the names of files in the specified directory that match the specified search pattern. </summary> <returns> A String array containing the names of files in the specified directory that match the specified search pattern. </returns> <param name="path"> The directory to search. </param> <param name="searchPattern"> The search string to match against the names of files in <paramref name="path" />. The parameter cannot end in two periods ("..") or contain two periods ("..") followed by <see cref="F:System.IO.Path.DirectorySeparatorChar" /> or <see cref="F:System.IO.Path.AltDirectorySeparatorChar" />, nor can it contain any of the characters in <see cref="F:System.IO.Path.InvalidPathChars" />. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="searchPattern" /> does not contain a valid pattern. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> or <paramref name="searchPattern" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetFiles(System.String,System.String,System.IO.SearchOption)"> <summary> Returns the names of files in the specified directory that match the specified search pattern, using a value to determine whether to search subdirectories. </summary> <returns> A String array containing the names of files in the specified directory that match the specified search pattern. File names include the full path. </returns> <param name="path"> The directory to search. </param> <param name="searchPattern"> The search string to match against the names of files in <paramref name="path" />. The parameter cannot end in two periods ("..") or contain two periods ("..") followed by <see cref="F:System.IO.Path.DirectorySeparatorChar" /> or <see cref="F:System.IO.Path.AltDirectorySeparatorChar" />, nor can it contain any of the characters in <see cref="F:System.IO.Path.InvalidPathChars" />. </param> <param name="searchOption"> One of the <see cref="T:System.IO.SearchOption" /> values that specifies whether the search operation should include all subdirectories or only the current directory. </param> <exception cref="T:System.IO.IOException"> <paramref name="path" /> is a file name. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="searchPattern" /> does not contain a valid pattern. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> or <paramref name="searchpattern" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> </member> <member name="M:System.IO.Directory.GetFileSystemEntries(System.String)"> <summary> Returns the names of all files and subdirectories in the specified directory. </summary> <returns> A String array containing the names of file system entries in the specified directory. </returns> <param name="path"> The directory for which file and subdirectory names are returned. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> is a file name. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetFileSystemEntries(System.String,System.String)"> <summary> Returns an array of file system entries matching the specified search criteria. </summary> <returns> A String array of file system entries matching the search criteria. </returns> <param name="path"> The path to be searched. </param> <param name="searchPattern"> The search string to match against the names of files in <paramref name="path" />. The <paramref name="searchPattern" /> parameter cannot end in two periods ("..") or contain two periods ("..") followed by <see cref="F:System.IO.Path.DirectorySeparatorChar" /> or <see cref="F:System.IO.Path.AltDirectorySeparatorChar" />, nor can it contain any of the characters in <see cref="F:System.IO.Path.InvalidPathChars" />. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="searchPattern" /> does not contain a valid pattern. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> or <paramref name="searchPattern" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> is a file name. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetLastAccessTime(System.String)"> <summary> Returns the date and time the specified file or directory was last accessed. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the date and time the specified file or directory was last accessed. This value is expressed in local time. </returns> <param name="path"> The file or directory for which to obtain access date and time information. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> The <paramref name="path" /> parameter is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetLastAccessTimeUtc(System.String)"> <summary> Returns the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last accessed. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the date and time the specified file or directory was last accessed. This value is expressed in UTC time. </returns> <param name="path"> The file or directory for which to obtain access date and time information. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> The <paramref name="path" /> parameter is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetLastWriteTime(System.String)"> <summary> Returns the date and time the specified file or directory was last written to. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the date and time the specified file or directory was last written to. This value is expressed in local time. </returns> <param name="path"> The file or directory for which to obtain modification date and time information. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetLastWriteTimeUtc(System.String)"> <summary> Returns the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last written to. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the date and time the specified file or directory was last written to. This value is expressed in UTC time. </returns> <param name="path"> The file or directory for which to obtain modification date and time information. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetLogicalDrives"> <summary> Retrieves the names of the logical drives on this computer in the form "<drive letter>:\". </summary> <returns> The logical drives on this computer. </returns> <exception cref="T:System.IO.IOException"> An I/O error occured (for example, a disk error). </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.Directory.GetParent(System.String)"> <summary> Retrieves the parent directory of the specified path, including both absolute and relative paths. </summary> <returns> The parent directory, or null if <paramref name="path" /> is the root directory, including the root of a UNC server or share name. </returns> <param name="path"> The path for which to retrieve the parent directory. </param> <exception cref="T:System.IO.IOException"> The directory specified by <paramref name="path" /> is read-only. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path was not found. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.Move(System.String,System.String)"> <summary> Moves a file or a directory and its contents to a new location. </summary> <param name="sourceDirName"> The path of the file or directory to move. </param> <param name="destDirName"> The path to the new location for <paramref name="sourceDirName" />. If <paramref name="sourceDirName" /> is a file, then <paramref name="destDirName" /> must also be a file name. </param> <exception cref="T:System.IO.IOException"> An attempt was made to move a directory to a different volume. -or- <paramref name="destDirName" /> already exists. -or- The <paramref name="sourceDirName" /> and <paramref name="destDirName" /> parameters refer to the same file or directory. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="sourceDirName" /> or <paramref name="destDirName" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="sourceDirName" /> or <paramref name="destDirName" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The path specified by <paramref name="sourceDirName" /> is invalid (for example, it is on an unmapped drive). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.SetAccessControl(System.String,System.Security.AccessControl.DirectorySecurity)"> <summary> Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object to the specified directory. </summary> <param name="path"> A directory to add or remove access control list (ACL) entries from. </param> <param name="directorySecurity"> A <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that describes an ACL entry to apply to the directory described by the <paramref name="path" /> parameter. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="directorySecurity" /> parameter is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The directory could not be found. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> was invalid. </exception> <exception cref="T:System.UnauthorizedAccessException"> The current process does not have access to open the file. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.SetCreationTime(System.String,System.DateTime)"> <summary> Sets the creation date and time for the specified file or directory. </summary> <param name="path"> The file or directory for which to set the creation date and time information. </param> <param name="creationTime"> A <see cref="T:System.DateTime" /> containing the value to set for the creation date and time of <paramref name="path" />. This value is expressed in local time. </param> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="creationTime" /> specifies a value outside the range of dates or times permitted for this operation. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.SetCreationTimeUtc(System.String,System.DateTime)"> <summary> Sets the creation date and time, in Coordinated Universal Time (UTC) format, for the specified file or directory. </summary> <param name="path"> The file or directory for which to set the creation date and time information. </param> <param name="creationTimeUtc"> A <see cref="T:System.DateTime" /> containing the value to set for the creation date and time of <paramref name="path" />. This value is expressed in UTC time. </param> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="creationTime" /> specifies a value outside the range of dates or times permitted for this operation. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.SetCurrentDirectory(System.String)"> <summary> Sets the application's current working directory to the specified directory. </summary> <param name="path"> The path to which the current working directory is set. </param> <exception cref="T:System.IO.IOException"> An IO error occurred. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission to access unmanaged code. </exception> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified directory was not found. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.Directory.SetLastAccessTime(System.String,System.DateTime)"> <summary> Sets the date and time the specified file or directory was last accessed. </summary> <param name="path"> The file or directory for which to set the access date and time information. </param> <param name="lastAccessTime"> A <see cref="T:System.DateTime" /> containing the value to set for the access date and time of <paramref name="path" />. This value is expressed in local time. </param> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="lastAccessTime" /> specifies a value outside the range of dates or times permitted for this operation. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.SetLastAccessTimeUtc(System.String,System.DateTime)"> <summary> Sets the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last accessed. </summary> <param name="path"> The file or directory for which to set the access date and time information. </param> <param name="lastAccessTimeUtc"> A <see cref="T:System.DateTime" /> containing the value to set for the access date and time of <paramref name="path" />. This value is expressed in UTC time. </param> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="lastAccessTimeUtc" /> specifies a value outside the range of dates or times permitted for this operation. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.SetLastWriteTime(System.String,System.DateTime)"> <summary> Sets the date and time a directory was last written to. </summary> <param name="path"> The path of the directory. </param> <param name="lastWriteTime"> The date and time the directory was last written to. This value is expressed in local time. </param> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="lastWriteTime" /> specifies a value outside the range of dates or times permitted for this operation. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Directory.SetLastWriteTimeUtc(System.String,System.DateTime)"> <summary> Sets the date and time, in Coordinated Universal Time (UTC) format, that a directory was last written to. </summary> <param name="path"> The path of the directory. </param> <param name="lastWriteTimeUtc"> The date and time the directory was last written to. This value is expressed in UTC time. </param> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="lastWriteTimeUtc" /> specifies a value outside the range of dates or times permitted for this operation. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.IO.DirectoryInfo"> <summary> Exposes instance methods for creating, moving, and enumerating through directories and subdirectories. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.DirectoryInfo.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.DirectoryInfo" /> class on the specified path. </summary> <param name="path"> A string specifying the path on which to create the DirectoryInfo. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> contains invalid characters such as ", <, >, or |. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. The specified path, file name, or both are too long. </exception> </member> <member name="M:System.IO.DirectoryInfo.Create"> <summary> Creates a directory. </summary> <exception cref="T:System.IO.IOException"> The directory cannot be created. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.Create(System.Security.AccessControl.DirectorySecurity)"> <summary> Creates a directory using a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object. </summary> <param name="directorySecurity"> The access control to apply to the directory. </param> <exception cref="T:System.IO.IOException"> The directory specified by <paramref name="path" /> is read-only or is not empty. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.NotSupportedException"> Creating a directory with only the colon (:) character was attempted. </exception> <exception cref="T:System.IO.IOException"> The directory specified by <paramref name="path" /> is read-only or is not empty. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.CreateSubdirectory(System.String)"> <summary> Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the <see cref="T:System.IO.DirectoryInfo" /> class. </summary> <returns> The last directory specified in <paramref name="path" />. </returns> <param name="path"> The specified path. This cannot be a different disk volume or Universal Naming Convention (UNC) name. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> does not specify a valid file path or contains invalid DirectoryInfo characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> The subdirectory cannot be created. -or- A file or directory already has the name specified by <paramref name="path" />. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. The specified path, file name, or both are too long. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have code access permission to create the directory. -or- The caller does not have code access permission to read the directory described by the returned <see cref="T:System.IO.DirectoryInfo" /> object. This can occur when the <paramref name="path" /> parameter describes an existing directory. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> contains a colon character (:) that is not part of a drive label ("C:\"). </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.CreateSubdirectory(System.String,System.Security.AccessControl.DirectorySecurity)"> <summary> Creates a subdirectory or subdirectories on the specified path with the specified security. The specified path can be relative to this instance of the <see cref="T:System.IO.DirectoryInfo" /> class. </summary> <returns> The last directory specified in <paramref name="path" />. </returns> <param name="path"> The specified path. This cannot be a different disk volume or Universal Naming Convention (UNC) name. </param> <param name="directorySecurity"> The security to apply. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> does not specify a valid file path or contains invalid DirectoryInfo characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> The subdirectory cannot be created. -or- A file or directory already has the name specified by <paramref name="path" />. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. The specified path, file name, or both are too long. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have code access permission to create the directory. -or- The caller does not have code access permission to read the directory described by the returned <see cref="T:System.IO.DirectoryInfo" /> object. This can occur when the <paramref name="path" /> parameter describes an existing directory. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> contains a colon character (:) that is not part of a drive label ("C:\"). </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.Delete"> <summary> Deletes this <see cref="T:System.IO.DirectoryInfo" /> if it is empty. </summary> <exception cref="T:System.IO.IOException"> The directory is not empty. -or- The directory is the application's current working directory. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The directory described by this <see cref="T:System.IO.DirectoryInfo" /> object does not exist or could not be found. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.Delete(System.Boolean)"> <summary> Deletes this instance of a <see cref="T:System.IO.DirectoryInfo" />, specifying whether to delete subdirectories and files. </summary> <param name="recursive">true to delete this directory, its subdirectories, and all files; otherwise, false. </param> <exception cref="T:System.IO.IOException"> The directory is read-only. -or- The directory contains one or more files or subdirectories and <paramref name="recursive" /> is false. -or- The directory is the application's current working directory. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.DirectoryInfo.Exists"> <summary> Gets a value indicating whether the directory exists. </summary> <returns>true if the directory exists; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.DirectoryInfo.GetAccessControl"> <summary> Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that encapsulates the access control list (ACL) entries for the directory described by the current <see cref="T:System.IO.DirectoryInfo" /> object. </summary> <returns> A <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that encapsulates the access control rules for the directory. </returns> <exception cref="T:System.SystemException"> The directory could not be found or modified. </exception> <exception cref="T:System.UnauthorizedAccessException"> The current process does not have access to open the directory. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the directory. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> <exception cref="T:System.UnauthorizedAccessException"> The directory is read-only. -or- This operation is not supported on the current platform. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.GetAccessControl(System.Security.AccessControl.AccessControlSections)"> <summary> Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that encapsulates the specified type of access control list (ACL) entries for the directory described by the current <see cref="T:System.IO.DirectoryInfo" /> object. </summary> <returns> A <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that encapsulates the access control rules for the file described by the <paramref name="path" /> parameter. Exceptions Exception type Condition <see cref="T:System.SystemException" /> The directory could not be found or modified. <see cref="T:System.UnauthorizedAccessException" /> The current process does not have access to open the directory. <see cref="T:System.IO.IOException" /> An I/O error occurred while opening the directory. <see cref="T:System.PlatformNotSupportedException" /> The current operating system is not Microsoft Windows 2000 or later. <see cref="T:System.UnauthorizedAccessException" /> The directory is read-only. -or- This operation is not supported on the current platform. -or- The caller does not have the required permission. </returns> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> values that specifies the type of access control list (ACL) information to receive. </param> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.GetDirectories"> <summary> Returns the subdirectories of the current directory. </summary> <returns> An array of <see cref="T:System.IO.DirectoryInfo" /> objects. </returns> <exception cref="T:System.IO.DirectoryNotFoundException"> The path encapsulated in the DirectoryInfo object is invalid, such as being on an unmapped drive. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.GetDirectories(System.String)"> <summary> Returns an array of directories in the current <see cref="T:System.IO.DirectoryInfo" /> matching the given search criteria. </summary> <returns> An array of type DirectoryInfo matching <paramref name="searchPattern" />. </returns> <param name="searchPattern"> The search string, such as "System*", used to search for all directories beginning with the word "System". </param> <exception cref="T:System.ArgumentNullException"> <paramref name="searchPattern" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The path encapsulated in the DirectoryInfo object is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.GetDirectories(System.String,System.IO.SearchOption)"> <summary> Returns an array of directories in the current <see cref="T:System.IO.DirectoryInfo" /> matching the given search criteria and using a value to determine whether to search subdirectories. </summary> <returns> An array of type DirectoryInfo matching <paramref name="searchPattern" />. </returns> <param name="searchPattern"> The search string, such as "System*", used to search for all directories beginning with the word "System". </param> <param name="searchOption"> One of the values of the <see cref="T:System.IO.SearchOption" /> enumeration that specifies whether the search operation should include only the current directory or should include all subdirectories. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="searchPattern" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The path encapsulated in the DirectoryInfo object is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.IO.DirectoryInfo.GetFiles"> <summary> Returns a file list from the current directory. </summary> <returns> An array of type <see cref="T:System.IO.FileInfo" />. </returns> <exception cref="T:System.IO.DirectoryNotFoundException"> The path is invalid, such as being on an unmapped drive. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.GetFiles(System.String)"> <summary> Returns a file list from the current directory matching the given <paramref name="searchPattern" />. </summary> <returns> An array of type <see cref="T:System.IO.FileInfo" />. </returns> <param name="searchPattern"> The search string, such as "*.txt". </param> <exception cref="T:System.ArgumentNullException"> <paramref name="searchPattern" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.GetFiles(System.String,System.IO.SearchOption)"> <summary> Returns a file list from the current directory matching the given <paramref name="searchPattern" /> and using a value to determine whether to search subdirectories. </summary> <returns> An array of type <see cref="T:System.IO.FileInfo" />. </returns> <param name="searchPattern"> The search string, such as "System*", used to search for all directories beginning with the word "System". </param> <param name="searchOption"> One of the values of the <see cref="T:System.IO.SearchOption" /> enumeration that specifies whether the search operation should include only the current directory or should include all subdirectories. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="searchPattern" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.IO.DirectoryInfo.GetFileSystemInfos"> <summary> Returns an array of strongly typed <see cref="T:System.IO.FileSystemInfo" /> entries representing all the files and subdirectories in a directory. </summary> <returns> An array of strongly typed <see cref="T:System.IO.FileSystemInfo" /> entries. </returns> <exception cref="T:System.IO.DirectoryNotFoundException"> The path is invalid, such as being on an unmapped drive. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.GetFileSystemInfos(System.String)"> <summary> Retrieves an array of strongly typed <see cref="T:System.IO.FileSystemInfo" /> objects representing the files and subdirectories matching the specified search criteria. </summary> <returns> An array of strongly typed FileSystemInfo objects matching the search criteria. </returns> <param name="searchPattern"> The search string, such as "System*", used to search for all directories beginning with the word "System". </param> <exception cref="T:System.ArgumentNullException"> <paramref name="searchPattern" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.MoveTo(System.String)"> <summary> Moves a <see cref="T:System.IO.DirectoryInfo" /> instance and its contents to a new path. </summary> <param name="destDirName"> The name and path to which to move this directory. The destination cannot be another disk volume or a directory with the identical name. It can be an existing directory to which you want to add this directory as a subdirectory. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="destDirName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="destDirName" /> is an empty string (''"). </exception> <exception cref="T:System.IO.IOException"> An attempt was made to move a directory to a different volume. -or- <paramref name="destDirName" /> already exists. -or- You are not authorized to access this path. -or- The directory being moved and the destination directory have the same name. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The destination directory cannot be found. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.DirectoryInfo.Name"> <summary> Gets the name of this <see cref="T:System.IO.DirectoryInfo" /> instance. </summary> <returns> The directory name. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.DirectoryInfo.Parent"> <summary> Gets the parent directory of a specified subdirectory. </summary> <returns> The parent directory, or null if the path is null or if the file path denotes a root (such as "\", "C:", or * "\\server\share"). </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.DirectoryInfo.Root"> <summary> Gets the root portion of a path. </summary> <returns> A <see cref="T:System.IO.DirectoryInfo" /> object representing the root of a path. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.SetAccessControl(System.Security.AccessControl.DirectorySecurity)"> <summary> Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object to the directory described by the current <see cref="T:System.IO.DirectoryInfo" /> object. </summary> <param name="directorySecurity"> A <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object that describes an ACL entry to apply to the directory described by the <paramref name="path" /> parameter. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="directorySecurity" /> parameter is null. </exception> <exception cref="T:System.SystemException"> The file could not be found or modified. </exception> <exception cref="T:System.UnauthorizedAccessException"> The current process does not have access to open the file. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DirectoryInfo.ToString"> <summary> Returns the original path that was passed by the user. </summary> <returns> Returns the original path that was passed by the user. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.IO.DirectoryNotFoundException"> <summary> The exception that is thrown when part of a file or directory cannot be found. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.DirectoryNotFoundException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.DirectoryNotFoundException" /> class with its message string set to a system-supplied message and its HRESULT set to COR_E_DIRECTORYNOTFOUND. </summary> </member> <member name="M:System.IO.DirectoryNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.IO.DirectoryNotFoundException" /> class with the specified serialization and context information. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.IO.DirectoryNotFoundException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.DirectoryNotFoundException" /> class with its message string set to <paramref name="message" /> and its HRESULT set to COR_E_DIRECTORYNOTFOUND. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.IO.DirectoryNotFoundException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IO.DirectoryNotFoundException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.IO.DriveInfo"> <summary> Provides access to information on a drive. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.DriveInfo.#ctor(System.String)"> <summary> Provides access to information on the specified drive. </summary> <param name="driveName"> A valid drive path or drive letter. This can be either uppercase or lowercase, 'a' to 'z'. A null value is not valid. </param> <exception cref="T:System.ArgumentNullException"> The drive letter cannot be null. </exception> <exception cref="T:System.ArgumentException"> The first letter of <paramref name="driveName" /> is not an uppercase or lowercase letter from 'a' to 'z'. -or- <paramref name="driveName" /> does not refer to a valid drive. </exception> </member> <member name="P:System.IO.DriveInfo.AvailableFreeSpace"> <summary> Indicates the amount of available free space on a drive. </summary> <returns> The amount of free space available on the drive, in bytes. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred (for example, a disk error or a drive was not ready). </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.DriveInfo.DriveFormat"> <summary> Gets the name of the file system, such as NTFS or FAT32. </summary> <returns> The name of the file system on the specified drive. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred (for example, a disk error or a drive was not ready). </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.DriveInfo.DriveType"> <summary> Gets the drive type. </summary> <returns> One of the <see cref="T:System.IO.DriveType" /> values. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.DriveInfo.GetDrives"> <summary> Retrieves the drive names of all logical drives on a computer. </summary> <returns> An array of type <see cref="T:System.IO.DriveInfo" /> that represents the logical drives on a computer. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred (for example, a disk error or a drive was not ready). </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.IO.DriveInfo.IsReady"> <summary> Gets a value indicating whether a drive is ready. </summary> <returns>true if the drive is ready; false if the drive is not ready. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.DriveInfo.Name"> <summary> Gets the name of a drive. </summary> <returns> The name of the drive. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.DriveInfo.RootDirectory"> <summary> Gets the root directory of a drive. </summary> <returns> A <see cref="T:System.IO.DirectoryInfo" /> object that contains the root directory of the drive. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.DriveInfo.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data needed to serialize the target object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to populate with data. </param> <param name="context"> The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext" />) for this serialization. </param> </member> <member name="M:System.IO.DriveInfo.ToString"> <summary> Returns a drive name as a string. </summary> <returns> The name of the drive. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.DriveInfo.TotalFreeSpace"> <summary> Gets the total amount of free space available on a drive. </summary> <returns> The total free space available on a drive, in bytes. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred (for example, a disk error or a drive was not ready). </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.DriveInfo.TotalSize"> <summary> Gets the total size of storage space on a drive. </summary> <returns> The total size of the drive, in bytes. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred (for example, a disk error or a drive was not ready). </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.DriveInfo.VolumeLabel"> <summary> Gets or sets the volume label of a drive. </summary> <returns> The volume label. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred (for example, a disk error or a drive was not ready). </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.UnauthorizedAccessException"> The volume label is being set on a network or CD-ROM drive. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.IO.DriveNotFoundException"> <summary> The exception that is thrown when trying to access a drive or share that is not available. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.DriveNotFoundException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.DriveNotFoundException" /> class with its message string set to a system-supplied message and its HRESULT set to COR_E_DIRECTORYNOTFOUND. </summary> </member> <member name="M:System.IO.DriveNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.IO.DriveNotFoundException" /> class with the specified serialization and context information. </summary> <param name="info"> A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the serialized object data about the exception being thrown. </param> <param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination of the exception being thrown. </param> </member> <member name="M:System.IO.DriveNotFoundException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.DriveNotFoundException" /> class with the specified message string and the HRESULT set to COR_E_DIRECTORYNOTFOUND. </summary> <param name="message"> A <see cref="T:System.String" /> object that describes the error. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.IO.DriveNotFoundException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IO.DriveNotFoundException" /> class with the specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.IO.DriveType"> <summary> Defines constants for drive types, including CDRom, Fixed, Network, NoRootDirectory, Ram, Removable, and Unknown. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.IO.DriveType.Unknown"> <summary> The type of drive is unknown. </summary> </member> <member name="F:System.IO.DriveType.NoRootDirectory"> <summary> The drive does not have a root directory. </summary> </member> <member name="F:System.IO.DriveType.Removable"> <summary> The drive is a removable storage device, such as a floppy disk drive or a USB flash drive. </summary> </member> <member name="F:System.IO.DriveType.Fixed"> <summary> The drive is a fixed disk. </summary> </member> <member name="F:System.IO.DriveType.Network"> <summary> The drive is a network drive. </summary> </member> <member name="F:System.IO.DriveType.CDRom"> <summary> The drive is an optical disc device, such as a CD or DVD-ROM. </summary> </member> <member name="F:System.IO.DriveType.Ram"> <summary> The drive is a RAM disk. </summary> </member> <member name="T:System.IO.EndOfStreamException"> <summary> The exception that is thrown when reading is attempted past the end of a stream. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.EndOfStreamException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with its message string set to a system-supplied message and its HRESULT set to COR_E_ENDOFSTREAM. </summary> </member> <member name="M:System.IO.EndOfStreamException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with the specified serialization and context information. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.IO.EndOfStreamException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with its message string set to <paramref name="message" /> and its HRESULT set to COR_E_ENDOFSTREAM. </summary> <param name="message"> A string that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.IO.EndOfStreamException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> A string that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.IO.File"> <summary> Provides static methods for the creation, copying, deletion, moving, and opening of files, and aids in the creation of <see cref="T:System.IO.FileStream" /> objects. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.File.AppendAllText(System.String,System.String)"> <summary> Opens a file, appends the specified string to the file, and then closes the file. If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file. </summary> <param name="path"> The file to append the specified string to. </param> <param name="contents"> The string to append to the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.AppendAllText(System.String,System.String,System.Text.Encoding)"> <summary> Appends the specified string to the file, creating the file if it does not already exist. </summary> <param name="path"> The file to append the specified string to. </param> <param name="contents"> The string to append to the file. </param> <param name="encoding"> The character encoding to use. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.AppendText(System.String)"> <summary> Creates a <see cref="T:System.IO.StreamWriter" /> that appends UTF-8 encoded text to an existing file. </summary> <returns> A StreamWriter that appends UTF-8 encoded text to an existing file. </returns> <param name="path"> The path to the file to append to. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Copy(System.String,System.String)"> <summary> Copies an existing file to a new file. Overwriting a file of the same name is not allowed. </summary> <param name="sourceFileName"> The file to copy. </param> <param name="destFileName"> The name of the destination file. This cannot be a directory or an existing file. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="sourceFileName" /> or <paramref name="destFileName" /> specifies a directory. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The path specified in <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="sourceFileName" /> was not found. </exception> <exception cref="T:System.IO.IOException"> <paramref name="destFileName" /> exists. -or- An I/O error has occurred. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Copy(System.String,System.String,System.Boolean)"> <summary> Copies an existing file to a new file. Overwriting a file of the same name is allowed. </summary> <param name="sourceFileName"> The file to copy. </param> <param name="destFileName"> The name of the destination file. This cannot be a directory. </param> <param name="overwrite">true if the destination file can be overwritten; otherwise, false. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="sourceFileName" /> or <paramref name="destFileName" /> specifies a directory. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The path specified in <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="sourceFileName" /> was not found. </exception> <exception cref="T:System.IO.IOException"> <paramref name="destFileName" /> is read-only, or <paramref name="destFileName" /> exists and <paramref name="overwrite" /> is false. -or- An I/O error has occurred. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Create(System.String)"> <summary> Creates or overwrites a file in the specified path. </summary> <returns> A <see cref="T:System.IO.FileStream" /> that provides read/write access to the file specified in <paramref name="path" />. </returns> <param name="path"> The path and name of the file to create. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. -or- <paramref name="path" /> specified a file that is read-only. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while creating the file. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Create(System.String,System.Int32)"> <summary> Creates or overwrites the specified file. </summary> <returns> A <see cref="T:System.IO.FileStream" /> with the specified buffer size that provides read/write access to the file specified in <paramref name="path" />. </returns> <param name="path"> The name of the file. </param> <param name="bufferSize"> The number of bytes buffered for reads and writes to the file. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. -or- <paramref name="path" /> specified a file that is read-only. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while creating the file. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Create(System.String,System.Int32,System.IO.FileOptions)"> <summary> Creates or overwrites the specified file, specifying a buffer size and a <see cref="T:System.IO.FileOptions" /> value that describes how to create or overwrite the file. </summary> <returns> A new file with the specified buffer size. </returns> <param name="path"> The name of the file. </param> <param name="bufferSize"> The number of bytes buffered for reads and writes to the file. </param> <param name="options"> One of the <see cref="T:System.IO.FileOptions" /> values that describes how to create or overwrite the file. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. -or- <paramref name="path" /> specified a file that is read-only. -or- <see cref="F:System.IO.FileOptions.Encrypted" /> is specified for <paramref name="options" /> and file encryption is not supported on the current platform. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while creating the file. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. -or- <paramref name="path" /> specified a file that is read-only. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. -or- <paramref name="path" /> specified a file that is read-only. </exception> </member> <member name="M:System.IO.File.Create(System.String,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity)"> <summary> Creates or overwrites the specified file with the specified buffer size, file options, and file security. </summary> <returns> A new file with the specified buffer size, file options, and file security. </returns> <param name="path"> The name of the file. </param> <param name="bufferSize"> The number of bytes buffered for reads and writes to the file. </param> <param name="options"> One of the <see cref="T:System.IO.FileOptions" /> values that describes how to create or overwrite the file. </param> <param name="fileSecurity"> One of the <see cref="T:System.Security.AccessControl.FileSecurity" /> values that determines the access control and audit security for the file. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. -or- <paramref name="path" /> specified a file that is read-only. -or- <see cref="F:System.IO.FileOptions.Encrypted" /> is specified for <paramref name="options" /> and file encryption is not supported on the current platform. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while creating the file. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. -or- <paramref name="path" /> specified a file that is read-only. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. -or- <paramref name="path" /> specified a file that is read-only. </exception> </member> <member name="M:System.IO.File.CreateText(System.String)"> <summary> Creates or opens a file for writing UTF-8 encoded text. </summary> <returns> A <see cref="T:System.IO.StreamWriter" /> that writes to the specified file using UTF-8 encoding. </returns> <param name="path"> The file to be opened for writing. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Decrypt(System.String)"> <summary> Decrypts a file that was encrypted by the current account using the <see cref="M:System.IO.File.Encrypt(System.String)" /> method. </summary> <param name="path"> A path that describes a file to decrypt. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> parameter is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> parameter is null. </exception> <exception cref="T:System.IO.DriveNotFoundException"> An invalid drive was specified. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file described by the <paramref name="path" /> parameter could not be found. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. For example, the encrypted file is already open. -or- This operation is not supported on the current platform. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <exception cref="T:System.NotSupportedException"> The file system is not NTFS. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="path" /> parameter specified a file that is read-only. -or- This operation is not supported on the current platform. -or- The <paramref name="path" /> parameter specified a directory. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Delete(System.String)"> <summary> Deletes the specified file. An exception is not thrown if the specified file does not exist. </summary> <param name="path"> The name of the file to be deleted. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> The specified file is in use. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. -or- <paramref name="path" /> is a directory. -or- <paramref name="path" /> specified a read-only file. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Encrypt(System.String)"> <summary> Encrypts a file so that only the account used to encrypt the file can decrypt it. </summary> <param name="path"> A path that describes a file to encrypt. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> parameter is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> parameter is null. </exception> <exception cref="T:System.IO.DriveNotFoundException"> An invalid drive was specified. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file described by the <paramref name="path" /> parameter could not be found. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. -or- This operation is not supported on the current platform. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <exception cref="T:System.NotSupportedException"> The file system is not NTFS. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="path" /> parameter specified a file that is read-only. -or- This operation is not supported on the current platform. -or- The <paramref name="path" /> parameter specified a directory. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Exists(System.String)"> <summary> Determines whether the specified file exists. </summary> <returns>true if the caller has the required permissions and <paramref name="path" /> contains the name of an existing file; otherwise, false. This method also returns false if <paramref name="path" /> is null, an invalid path, or a zero-length string. If the caller does not have sufficient permissions to read the specified file, no exception is thrown and the method returns false regardless of the existence of <paramref name="path" />. </returns> <param name="path"> The file to check. </param> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.GetAccessControl(System.String)"> <summary> Gets a <see cref="T:System.Security.AccessControl.FileSecurity" /> object that encapsulates the access control list (ACL) entries for a specified file. </summary> <returns> A <see cref="T:System.Security.AccessControl.FileSecurity" /> object that encapsulates the access control rules for the file described by the <paramref name="path" /> parameter. </returns> <param name="path"> The path to a file containing a <see cref="T:System.Security.AccessControl.FileSecurity" /> object that describes the file's access control list (ACL) information. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.Runtime.InteropServices.SEHException"> The <paramref name="path" /> parameter is null. </exception> <exception cref="T:System.SystemException"> The file could not be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="path" /> parameter specified a file that is read-only. -or- This operation is not supported on the current platform. -or- The <paramref name="path" /> parameter specified a directory. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.GetAccessControl(System.String,System.Security.AccessControl.AccessControlSections)"> <summary> Gets a <see cref="T:System.Security.AccessControl.FileSecurity" /> object that encapsulates the specified type of access control list (ACL) entries for a particular file. </summary> <returns> A <see cref="T:System.Security.AccessControl.FileSecurity" /> object that encapsulates the access control rules for the file described by the <paramref name="path" /> parameter. </returns> <param name="path"> The path to a file containing a <see cref="T:System.Security.AccessControl.FileSecurity" /> object that describes the file's access control list (ACL) information. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> values that specifies the type of access control list (ACL) information to receive. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.Runtime.InteropServices.SEHException"> The <paramref name="path" /> parameter is null. </exception> <exception cref="T:System.SystemException"> The file could not be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="path" /> parameter specified a file that is read-only. -or- This operation is not supported on the current platform. -or- The <paramref name="path" /> parameter specified a directory. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.GetAttributes(System.String)"> <summary> Gets the <see cref="T:System.IO.FileAttributes" /> of the file on the path. </summary> <returns> The <see cref="T:System.IO.FileAttributes" /> of the file on the path. </returns> <param name="path"> The path to the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is empty, contains only white spaces, or contains invalid characters. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="path" /> represents a file and is invalid, such as being on an unmapped drive, or the file cannot be found. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> <paramref name="path" /> represents a directory and is invalid, such as being on an unmapped drive, or the directory cannot be found. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.GetCreationTime(System.String)"> <summary> Returns the creation date and time of the specified file or directory. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the creation date and time for the specified file or directory. This value is expressed in local time. </returns> <param name="path"> The file or directory for which to obtain creation date and time information. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.GetCreationTimeUtc(System.String)"> <summary> Returns the creation date and time, in coordinated universal time (UTC), of the specified file or directory. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the creation date and time for the specified file or directory. This value is expressed in UTC time. </returns> <param name="path"> The file or directory for which to obtain creation date and time information. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.GetLastAccessTime(System.String)"> <summary> Returns the date and time the specified file or directory was last accessed. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the date and time that the specified file or directory was last accessed. This value is expressed in local time. </returns> <param name="path"> The file or directory for which to obtain access date and time information. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.GetLastAccessTimeUtc(System.String)"> <summary> Returns the date and time, in coordinated universal time (UTC), that the specified file or directory was last accessed. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the date and time that the specified file or directory was last accessed. This value is expressed in UTC time. </returns> <param name="path"> The file or directory for which to obtain access date and time information. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.GetLastWriteTime(System.String)"> <summary> Returns the date and time the specified file or directory was last written to. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the date and time that the specified file or directory was last written to. This value is expressed in local time. </returns> <param name="path"> The file or directory for which to obtain write date and time information. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.GetLastWriteTimeUtc(System.String)"> <summary> Returns the date and time, in coordinated universal time (UTC), that the specified file or directory was last written to. </summary> <returns> A <see cref="T:System.DateTime" /> structure set to the date and time that the specified file or directory was last written to. This value is expressed in UTC time. </returns> <param name="path"> The file or directory for which to obtain write date and time information. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Move(System.String,System.String)"> <summary> Moves a specified file to a new location, providing the option to specify a new file name. </summary> <param name="sourceFileName"> The name of the file to move. </param> <param name="destFileName"> The new path for the file. </param> <exception cref="T:System.IO.IOException"> The destination file already exists. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is a zero-length string, contains only white space, or contains invalid characters as defined in <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="sourceFileName" /> was not found. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The path specified in <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.NotSupportedException"> <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Open(System.String,System.IO.FileMode)"> <summary> Opens a <see cref="T:System.IO.FileStream" /> on the specified path with read/write access. </summary> <returns> A <see cref="T:System.IO.FileStream" /> opened in the specified mode and path, with read/write access and not shared. </returns> <param name="path"> The file to open. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="mode" /> specified an invalid value. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess)"> <summary> Opens a <see cref="T:System.IO.FileStream" /> on the specified path, with the specified mode and access. </summary> <returns> An unshared <see cref="T:System.IO.FileStream" /> that provides access to the specified file, with the specified mode and access. </returns> <param name="path"> The file to open. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> value that specifies the operations that can be performed on the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="access" /> specified Read and <paramref name="mode" /> specified Create, CreateNew, Truncate, or Append. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only and <paramref name="access" /> is not Read. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="mode" /> or <paramref name="access" /> specified an invalid value. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)"> <summary> Opens a <see cref="T:System.IO.FileStream" /> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option. </summary> <returns> A <see cref="T:System.IO.FileStream" /> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option. </returns> <param name="path"> The file to open. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> value that specifies the operations that can be performed on the file. </param> <param name="share"> A <see cref="T:System.IO.FileShare" /> value specifying the type of access other threads have to the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. -or- <paramref name="access" /> specified Read and <paramref name="mode" /> specified Create, CreateNew, Truncate, or Append. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only and <paramref name="access" /> is not Read. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="mode" />, <paramref name="access" />, or <paramref name="share" /> specified an invalid value. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.OpenRead(System.String)"> <summary> Opens an existing file for reading. </summary> <returns> A read-only <see cref="T:System.IO.FileStream" /> on the specified path. </returns> <param name="path"> The file to be opened for reading. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.OpenText(System.String)"> <summary> Opens an existing UTF-8 encoded text file for reading. </summary> <returns> A <see cref="T:System.IO.StreamReader" /> on the specified path. </returns> <param name="path"> The file to be opened for reading. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.OpenWrite(System.String)"> <summary> Opens an existing file for writing. </summary> <returns> An unshared <see cref="T:System.IO.FileStream" /> object on the specified path with <see cref="F:System.IO.FileAccess.Write" /> access. </returns> <param name="path"> The file to be opened for writing. </param> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. -or- <paramref name="path" /> specified a read-only file or directory. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.ReadAllBytes(System.String)"> <summary> Opens a binary file, reads the contents of the file into a byte array, and then closes the file. </summary> <returns> A byte array containing the contents of the file. </returns> <param name="path"> The file to open for reading. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.ReadAllLines(System.String)"> <summary> Opens a text file, reads all lines of the file, and then closes the file. </summary> <returns> A string array containing all lines of the file. </returns> <param name="path"> The file to open for reading. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.ReadAllLines(System.String,System.Text.Encoding)"> <summary> Opens a file, reads all lines of the file with the specified encoding, and then closes the file. </summary> <returns> A string array containing all lines of the file. </returns> <param name="path"> The file to open for reading. </param> <param name="encoding"> The encoding applied to the contents of the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.ReadAllText(System.String)"> <summary> Opens a text file, reads all lines of the file, and then closes the file. </summary> <returns> A string containing all lines of the file. </returns> <param name="path"> The file to open for reading. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.ReadAllText(System.String,System.Text.Encoding)"> <summary> Opens a file, reads all lines of the file with the specified encoding, and then closes the file. </summary> <returns> A string containing all lines of the file. </returns> <param name="path"> The file to open for reading. </param> <param name="encoding"> The encoding applied to the contents of the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Replace(System.String,System.String,System.String)"> <summary> Replaces the contents of a specified file with the contents of another file, deleting the original file, and creating a backup of the replaced file. </summary> <param name="sourceFileName"> The name of a file that replaces the file specified by <paramref name="destinationFileName" />. </param> <param name="destinationFileName"> The name of the file being replaced. </param> <param name="destinationBackupFileName"> The name of the backup file. </param> <exception cref="T:System.ArgumentException"> The path described by the <paramref name="destinationFileName" /> parameter was not of a legal form. -or- The path described by the <paramref name="destinationBackupFileName" /> parameter was not of a legal form. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="destinationFileName" /> parameter is null. </exception> <exception cref="T:System.IO.DriveNotFoundException"> An invalid drive was specified. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found. -or- The file described by the <paramref name="destinationBackupFileName" /> parameter could not be found. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. - or - The <paramref name="sourceFileName" /> and <paramref name="destinationFileName" /> parameters specify the same file. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.PlatformNotSupportedException"> The operating system is Windows 98 Second Edition or earlier and the files system is not NTFS. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> parameter specifies a file that is read-only. -or- This operation is not supported on the current platform. -or- Source or destination parameters specify a directory instead of a file. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.Replace(System.String,System.String,System.String,System.Boolean)"> <summary> Replaces the contents of a specified file with the contents of another file, deleting the original file, and creating a backup of the replaced file and optionally ignores merge errors. </summary> <param name="sourceFileName"> The name of a file that replaces the file specified by <paramref name="destinationFileName" />. </param> <param name="destinationFileName"> The name of the file being replaced. </param> <param name="destinationBackupFileName"> The name of the backup file. </param> <param name="ignoreMetadataErrors">true to ignore merge errors (such as attributes and access control lists (ACLs)) from the replaced file to the replacement file; otherwise, false. </param> <exception cref="T:System.ArgumentException"> The path described by the <paramref name="destinationFileName" /> parameter was not of a legal form. -or- The path described by the <paramref name="destinationBackupFileName" /> parameter was not of a legal form. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="destinationFileName" /> parameter is null. </exception> <exception cref="T:System.IO.DriveNotFoundException"> An invalid drive was specified. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found. -or- The file described by the <paramref name="destinationBackupFileName" /> parameter could not be found. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. - or - The <paramref name="sourceFileName" /> and <paramref name="destinationFileName" /> parameters specify the same file. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.PlatformNotSupportedException"> The operating system is Windows 98 Second Edition or earlier and the files system is not NTFS. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> parameter specifies a file that is read-only. -or- This operation is not supported on the current platform. -or- Source or destination parameters specify a directory instead of a file. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.SetAccessControl(System.String,System.Security.AccessControl.FileSecurity)"> <summary> Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.FileSecurity" /> object to the specified file. </summary> <param name="path"> A file to add or remove access control list (ACL) entries from. </param> <param name="fileSecurity"> A <see cref="T:System.Security.AccessControl.FileSecurity" /> object that describes an ACL entry to apply to the file described by the <paramref name="path" /> parameter. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.Runtime.InteropServices.SEHException"> The <paramref name="path" /> parameter is null. </exception> <exception cref="T:System.SystemException"> The file could not be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="path" /> parameter specified a file that is read-only. -or- This operation is not supported on the current platform. -or- The <paramref name="path" /> parameter specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="fileSecurity" /> parameter is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.SetAttributes(System.String,System.IO.FileAttributes)"> <summary> Sets the specified <see cref="T:System.IO.FileAttributes" /> of the file on the specified path. </summary> <param name="path"> The path to the file. </param> <param name="fileAttributes"> The desired <see cref="T:System.IO.FileAttributes" />, such as Hidden, ReadOnly, Normal, and Archive. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is empty, contains only white spaces, contains invalid characters, or the file attribute is invalid. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.SetCreationTime(System.String,System.DateTime)"> <summary> Sets the date and time the file was created. </summary> <param name="path"> The file for which to set the creation date and time information. </param> <param name="creationTime"> A <see cref="T:System.DateTime" /> containing the value to set for the creation date and time of <paramref name="path" />. This value is expressed in local time. </param> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while performing the operation. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="creationTime" /> specifies a value outside the range of dates, times, or both permitted for this operation. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.SetCreationTimeUtc(System.String,System.DateTime)"> <summary> Sets the date and time, in coordinated universal time (UTC), that the file was created. </summary> <param name="path"> The file for which to set the creation date and time information. </param> <param name="creationTimeUtc"> A <see cref="T:System.DateTime" /> containing the value to set for the creation date and time of <paramref name="path" />. This value is expressed in UTC time. </param> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while performing the operation. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="creationTime" /> specifies a value outside the range of dates, times, or both permitted for this operation. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.SetLastAccessTime(System.String,System.DateTime)"> <summary> Sets the date and time the specified file was last accessed. </summary> <param name="path"> The file for which to set the access date and time information. </param> <param name="lastAccessTime"> A <see cref="T:System.DateTime" /> containing the value to set for the last access date and time of <paramref name="path" />. This value is expressed in local time. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="lastAccessTime" /> specifies a value outside the range of dates or times permitted for this operation. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.SetLastAccessTimeUtc(System.String,System.DateTime)"> <summary> Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed. </summary> <param name="path"> The file for which to set the access date and time information. </param> <param name="lastAccessTimeUtc"> A <see cref="T:System.DateTime" /> containing the value to set for the last access date and time of <paramref name="path" />. This value is expressed in UTC time. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="lastAccessTimeUtc" /> specifies a value outside the range of dates or times permitted for this operation. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.SetLastWriteTime(System.String,System.DateTime)"> <summary> Sets the date and time that the specified file was last written to. </summary> <param name="path"> The file for which to set the date and time information. </param> <param name="lastWriteTime"> A <see cref="T:System.DateTime" /> containing the value to set for the last write date and time of <paramref name="path" />. This value is expressed in local time. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="lastWriteTime" /> specifies a value outside the range of dates or times permitted for this operation. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.SetLastWriteTimeUtc(System.String,System.DateTime)"> <summary> Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to. </summary> <param name="path"> The file for which to set the date and time information. </param> <param name="lastWriteTimeUtc"> A <see cref="T:System.DateTime" /> containing the value to set for the last write date and time of <paramref name="path" />. This value is expressed in UTC time. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.FileNotFoundException"> The specified path was not found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The caller does not have the required permission. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="lastWriteTimeUtc" /> specifies a value outside the range of dates or times permitted for this operation. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.WriteAllBytes(System.String,System.Byte[])"> <summary> Creates a new file, writes the specified byte array to the file, and then closes the file. If the target file already exists, it is overwritten. </summary> <param name="path"> The file to write to. </param> <param name="bytes"> The bytes to write to the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null or the byte array is empty. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.WriteAllLines(System.String,System.String[])"> <summary> Creates a new file, write the specified string array to the file, and then closes the file. If the target file already exists, it is overwritten. </summary> <param name="path"> The file to write to. </param> <param name="contents"> The string array to write to the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.WriteAllLines(System.String,System.String[],System.Text.Encoding)"> <summary> Creates a new file, writes the specified string array to the file using the specified encoding, and then closes the file. If the target file already exists, it is overwritten. </summary> <param name="path"> The file to write to. </param> <param name="contents"> The string array to write to the file. </param> <param name="encoding"> An <see cref="T:System.Text.Encoding" /> object that represents the character encoding applied to the string array. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null or contents string is empty. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.WriteAllText(System.String,System.String)"> <summary> Creates a new file, writes the specified string to the file, and then closes the file. If the target file already exists, it is overwritten. </summary> <param name="path"> The file to write to. </param> <param name="contents"> The string to write to the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.File.WriteAllText(System.String,System.String,System.Text.Encoding)"> <summary> Creates a new file, writes the specified string to the file using the specified encoding, and then closes the file. If the target file already exists, it is overwritten. </summary> <param name="path"> The file to write to. </param> <param name="contents"> The string to write to the file. </param> <param name="encoding"> An <see cref="T:System.Text.Encoding" /> object that represents the encoding to apply to the string. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null or contents string is empty. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> specified a file that is read-only. -or- This operation is not supported on the current platform. -or- <paramref name="path" /> specified a directory. -or- The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in <paramref name="path" /> was not found. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.IO.FileAccess"> <summary> Defines constants for read, write, or read/write access to a file. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.IO.FileAccess.Read"> <summary> Read access to the file. Data can be read from the file. Combine with Write for read/write access. </summary> </member> <member name="F:System.IO.FileAccess.Write"> <summary> Write access to the file. Data can be written to the file. Combine with Read for read/write access. </summary> </member> <member name="F:System.IO.FileAccess.ReadWrite"> <summary> Read and write access to the file. Data can be written to and read from the file. </summary> </member> <member name="T:System.IO.FileAttributes"> <summary> Provides attributes for files and directories. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.IO.FileAttributes.ReadOnly"> <summary> The file is read-only. </summary> </member> <member name="F:System.IO.FileAttributes.Hidden"> <summary> The file is hidden, and thus is not included in an ordinary directory listing. </summary> </member> <member name="F:System.IO.FileAttributes.System"> <summary> The file is a system file. The file is part of the operating system or is used exclusively by the operating system. </summary> </member> <member name="F:System.IO.FileAttributes.Directory"> <summary> The file is a directory. </summary> </member> <member name="F:System.IO.FileAttributes.Archive"> <summary> The file's archive status. Applications use this attribute to mark files for backup or removal. </summary> </member> <member name="F:System.IO.FileAttributes.Device"> <summary> Reserved for future use. </summary> </member> <member name="F:System.IO.FileAttributes.Normal"> <summary> The file is normal and has no other attributes set. This attribute is valid only if used alone. </summary> </member> <member name="F:System.IO.FileAttributes.Temporary"> <summary> The file is temporary. File systems attempt to keep all of the data in memory for quicker access rather than flushing the data back to mass storage. A temporary file should be deleted by the application as soon as it is no longer needed. </summary> </member> <member name="F:System.IO.FileAttributes.SparseFile"> <summary> The file is a sparse file. Sparse files are typically large files whose data are mostly zeros. </summary> </member> <member name="F:System.IO.FileAttributes.ReparsePoint"> <summary> The file contains a reparse point, which is a block of user-defined data associated with a file or a directory. </summary> </member> <member name="F:System.IO.FileAttributes.Compressed"> <summary> The file is compressed. </summary> </member> <member name="F:System.IO.FileAttributes.Offline"> <summary> The file is offline. The data of the file is not immediately available. </summary> </member> <member name="F:System.IO.FileAttributes.NotContentIndexed"> <summary> The file will not be indexed by the operating system's content indexing service. </summary> </member> <member name="F:System.IO.FileAttributes.Encrypted"> <summary> The file or directory is encrypted. For a file, this means that all data in the file is encrypted. For a directory, this means that encryption is the default for newly created files and directories. </summary> </member> <member name="T:System.IO.FileInfo"> <summary> Provides instance methods for the creation, copying, deletion, moving, and opening of files, and aids in the creation of <see cref="T:System.IO.FileStream" /> objects. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileInfo.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileInfo" /> class, which acts as a wrapper for a file path. </summary> <param name="fileName"> The fully qualified name of the new file, or the relative file name. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="fileName" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> The file name is empty, contains only white spaces, or contains invalid characters. </exception> <exception cref="T:System.UnauthorizedAccessException"> Access to <paramref name="fileName" /> is denied. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="fileName" /> contains a colon (:) in the middle of the string. </exception> </member> <member name="M:System.IO.FileInfo.AppendText"> <summary> Creates a <see cref="T:System.IO.StreamWriter" /> that appends text to the file represented by this instance of the <see cref="T:System.IO.FileInfo" />. </summary> <returns> A new StreamWriter. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.CopyTo(System.String)"> <summary> Copies an existing file to a new file, disallowing the overwriting of an existing file. </summary> <returns> A new file with a fully qualified path. </returns> <param name="destFileName"> The name of the new file to copy to. </param> <exception cref="T:System.ArgumentException"> <paramref name="destFileName" /> is empty, contains only white spaces, or contains invalid characters. </exception> <exception cref="T:System.IO.IOException"> An error occurs, or the destination file already exists. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="destFileName" /> is null. </exception> <exception cref="T:System.UnauthorizedAccessException"> A directory path is passed in, or the file is being moved to a different drive. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The directory specified in <paramref name="destFileName" /> does not exist. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="destFileName" /> contains a colon (:) within the string but does not specify the volume. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.CopyTo(System.String,System.Boolean)"> <summary> Copies an existing file to a new file, allowing the overwriting of an existing file. </summary> <returns> A new file, or an overwrite of an existing file if <paramref name="overwrite" /> is true. If the file exists and <paramref name="overwrite" /> is false, an <see cref="T:System.IO.IOException" /> is thrown. </returns> <param name="destFileName"> The name of the new file to copy to. </param> <param name="overwrite">true to allow an existing file to be overwritten; otherwise, false. </param> <exception cref="T:System.ArgumentException"> <paramref name="destFileName" /> is empty, contains only white spaces, or contains invalid characters. </exception> <exception cref="T:System.IO.IOException"> An error occurs, or the destination file already exists and <paramref name="overwrite" /> is false. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="destFileName" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The directory specified in <paramref name="destFileName" /> does not exist. </exception> <exception cref="T:System.UnauthorizedAccessException"> A directory path is passed in, or the file is being moved to a different drive. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="destFileName" /> contains a colon (:) in the middle of the string. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.Create"> <summary> Creates a file. </summary> <returns> A new file. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.CreateText"> <summary> Creates a <see cref="T:System.IO.StreamWriter" /> that writes a new text file. </summary> <returns> A new StreamWriter. </returns> <exception cref="T:System.UnauthorizedAccessException"> The file name is a directory. </exception> <exception cref="T:System.IO.IOException"> The disk is read-only. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.Decrypt"> <summary> Decrypts a file that was encrypted by the current account using the <see cref="M:System.IO.FileInfo.Encrypt" /> method. </summary> <exception cref="T:System.IO.DriveNotFoundException"> An invalid drive was specified. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.NotSupportedException"> The file system is not NTFS. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <exception cref="T:System.UnauthorizedAccessException"> The file described by the current <see cref="T:System.IO.FileInfo" /> object is read-only. -or- This operation is not supported on the current platform. -or- The caller does not have the required permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.Delete"> <summary> Permanently deletes a file. </summary> <exception cref="T:System.IO.IOException"> The target file is open or memory-mapped on a computer running Microsoft Windows NT. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.UnauthorizedAccessException"> The path is a directory. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileInfo.Directory"> <summary> Gets an instance of the parent directory. </summary> <returns> A <see cref="T:System.IO.DirectoryInfo" /> object representing the parent directory of this file. </returns> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileInfo.DirectoryName"> <summary> Gets a string representing the directory's full path. </summary> <returns> A string representing the directory's full path. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentNullException">null was passed in for the directory name. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.Encrypt"> <summary> Encrypts a file so that only the account used to encrypt the file can decrypt it. </summary> <exception cref="T:System.IO.DriveNotFoundException"> An invalid drive was specified. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.NotSupportedException"> The file system is not NTFS. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <exception cref="T:System.UnauthorizedAccessException"> The file described by the current <see cref="T:System.IO.FileInfo" /> object is read-only. -or- This operation is not supported on the current platform. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileInfo.Exists"> <summary> Gets a value indicating whether a file exists. </summary> <returns>true if the file exists; false if the file does not exist or if the file is a directory. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileInfo.GetAccessControl"> <summary> Gets a <see cref="T:System.Security.AccessControl.FileSecurity" /> object that encapsulates the access control list (ACL) entries for the file described by the current <see cref="T:System.IO.FileInfo" /> object. </summary> <returns> A <see cref="T:System.Security.AccessControl.FileSecurity" /> object that encapsulates the access control rules for the current file. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> <exception cref="T:System.Security.AccessControl.PrivilegeNotHeldException"> The current system account does not have administrative privileges. </exception> <exception cref="T:System.SystemException"> The file could not be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> This operation is not supported on the current platform. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.GetAccessControl(System.Security.AccessControl.AccessControlSections)"> <summary> Gets a <see cref="T:System.Security.AccessControl.FileSecurity" /> object that encapsulates the specified type of access control list (ACL) entries for the file described by the current <see cref="T:System.IO.FileInfo" /> object. </summary> <returns> A <see cref="T:System.Security.AccessControl.FileSecurity" /> object that encapsulates the access control rules for the current file. </returns> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> values that specifies which group of access control entries to retrieve. </param> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> <exception cref="T:System.Security.AccessControl.PrivilegeNotHeldException"> The current system account does not have administrative privileges. </exception> <exception cref="T:System.SystemException"> The file could not be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> This operation is not supported on the current platform. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileInfo.IsReadOnly"> <summary> Gets or sets a value that determines if the current file is read only. </summary> <returns>true if the current file is read only; otherwise, false. </returns> <exception cref="T:System.IO.FileNotFoundException"> The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.UnauthorizedAccessException"> The file described by the current <see cref="T:System.IO.FileInfo" /> object is read-only. -or- This operation is not supported on the current platform. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.FileInfo.Length"> <summary> Gets the size, in bytes, of the current file. </summary> <returns> The size of the current file in bytes. </returns> <exception cref="T:System.IO.IOException"> <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot update the state of the file or directory. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file does not exist. -or- The Length property is called for a directory. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileInfo.MoveTo(System.String)"> <summary> Moves a specified file to a new location, providing the option to specify a new file name. </summary> <param name="destFileName"> The path to move the file to, which can specify a different file name. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as the destination file already exists or the destination device is not ready. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="destFileName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="destFileName" /> is empty, contains only white spaces, or contains invalid characters. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="destFileName" /> is read-only or is a directory. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file is not found. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="destFileName" /> contains a colon (:) in the middle of the string. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileInfo.Name"> <summary> Gets the name of the file. </summary> <returns> The name of the file. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileInfo.Open(System.IO.FileMode)"> <summary> Opens a file in the specified mode. </summary> <returns> A file opened in the specified mode, with read/write access and unshared. </returns> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant specifying the mode (for example, Open or Append) in which to open the file. </param> <exception cref="T:System.IO.FileNotFoundException"> The file is not found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The file is read-only or is a directory. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> The file is already open. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.Open(System.IO.FileMode,System.IO.FileAccess)"> <summary> Opens a file in the specified mode with read, write, or read/write access. </summary> <returns> A <see cref="T:System.IO.FileStream" /> object opened in the specified mode and access, and unshared. </returns> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant specifying the mode (for example, Open or Append) in which to open the file. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant specifying whether to open the file with Read, Write, or ReadWrite file access. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is empty or contains only white spaces. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file is not found. </exception> <exception cref="T:System.ArgumentNullException"> One or more arguments is null. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> is read-only or is a directory. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> The file is already open. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.Open(System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)"> <summary> Opens a file in the specified mode with read, write, or read/write access and the specified sharing option. </summary> <returns> A <see cref="T:System.IO.FileStream" /> object opened with the specified mode, access, and sharing options. </returns> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant specifying the mode (for example, Open or Append) in which to open the file. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant specifying whether to open the file with Read, Write, or ReadWrite file access. </param> <param name="share"> A <see cref="T:System.IO.FileShare" /> constant specifying the type of access other FileStream objects have to this file. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is empty or contains only white spaces. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file is not found. </exception> <exception cref="T:System.ArgumentNullException"> One or more arguments is null. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> is read-only or is a directory. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> The file is already open. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.OpenRead"> <summary> Creates a read-only <see cref="T:System.IO.FileStream" />. </summary> <returns> A new read-only <see cref="T:System.IO.FileStream" /> object. </returns> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> is read-only or is a directory. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> The file is already open. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.OpenText"> <summary> Creates a <see cref="T:System.IO.StreamReader" /> with UTF8 encoding that reads from an existing text file. </summary> <returns> A new StreamReader with UTF8 encoding. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file is not found. </exception> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> is read-only or is a directory. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.OpenWrite"> <summary> Creates a write-only <see cref="T:System.IO.FileStream" />. </summary> <returns> A new write-only unshared <see cref="T:System.IO.FileStream" /> object. </returns> <exception cref="T:System.UnauthorizedAccessException"> <paramref name="path" /> is read-only or is a directory. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.Replace(System.String,System.String)"> <summary> Replaces the contents of a specified file with the file described by the current <see cref="T:System.IO.FileInfo" /> object, deleting the original file, and creating a backup of the replaced file. </summary> <returns> A <see cref="T:System.IO.FileInfo" /> object that encapsulates information about the file described by the <paramref name="destFileName" /> parameter. </returns> <param name="destinationFileName"> The name of a file to replace with the current file. </param> <param name="destinationBackupFileName"> The name of a file with which to create a backup of the file described by the <paramref name="destFileName" /> parameter. </param> <exception cref="T:System.ArgumentException"> The path described by the <paramref name="destFileName" /> parameter was not of a legal form. -or- The path described by the <paramref name="destBackupFileName" /> parameter was not of a legal form. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="destFileName" /> parameter is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found. -or- The file described by the <paramref name="destinationFileName" /> parameter could not be found. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.Replace(System.String,System.String,System.Boolean)"> <summary> Replaces the contents of a specified file with the file described by the current <see cref="T:System.IO.FileInfo" /> object, deleting the original file, and creating a backup of the replaced file. Also specifies whether to ignore merge errors. </summary> <returns> A <see cref="T:System.IO.FileInfo" /> object that encapsulates information about the file described by the <paramref name="destFileName" /> parameter. </returns> <param name="destinationFileName"> The name of a file to replace with the current file. </param> <param name="destinationBackupFileName"> The name of a file with which to create a backup of the file described by the <paramref name="destFileName" /> parameter. </param> <param name="ignoreMetadataErrors">true to ignore merge errors (such as attributes and ACLs) from the replaced file to the replacement file; otherwise false. </param> <exception cref="T:System.ArgumentException"> The path described by the <paramref name="destFileName" /> parameter was not of a legal form. -or- The path described by the <paramref name="destBackupFileName" /> parameter was not of a legal form. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="destFileName" /> parameter is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found. -or- The file described by the <paramref name="destinationFileName" /> parameter could not be found. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.SetAccessControl(System.Security.AccessControl.FileSecurity)"> <summary> Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.FileSecurity" /> object to the file described by the current <see cref="T:System.IO.FileInfo" /> object. </summary> <param name="fileSecurity"> A <see cref="T:System.Security.AccessControl.FileSecurity" /> object that describes an access control list (ACL) entry to apply to the current file. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="fileSecurity" /> parameter is null. </exception> <exception cref="T:System.SystemException"> The file could not be found or modified. </exception> <exception cref="T:System.UnauthorizedAccessException"> The current process does not have access to open the file. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileInfo.ToString"> <summary> Returns the path as a string. </summary> <returns> A string representing the path. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.IO.FileLoadException"> <summary> The exception that is thrown when a managed assembly is found but cannot be loaded. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.FileLoadException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileLoadException" /> class, setting the <see cref="P:System.Exception.Message" /> property of the new instance to a system-supplied message that describes the error, such as "Could not load the specified file." This message takes into account the current system culture. </summary> </member> <member name="M:System.IO.FileLoadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileLoadException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.IO.FileLoadException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileLoadException" /> class with the specified error message. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.IO.FileLoadException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileLoadException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.IO.FileLoadException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileLoadException" /> class with a specified error message and the name of the file that could not be loaded. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="fileName"> A <see cref="T:System.String" /> containing the name of the file that was not loaded. </param> </member> <member name="M:System.IO.FileLoadException.#ctor(System.String,System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileLoadException" /> class with a specified error message, the name of the file that could not be loaded, and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="fileName"> A <see cref="T:System.String" /> containing the name of the file that was not loaded. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="P:System.IO.FileLoadException.FileName"> <summary> Gets the name of the file that causes this exception. </summary> <returns> A <see cref="T:System.String" /> containing the name of the file with the invalid image, or a null reference if no file name was passed to the constructor for the current instance. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.FileLoadException.FusionLog"> <summary> Gets the log file that describes why an assembly load failed. </summary> <returns> A string containing errors reported by the assembly cache. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.IO.FileLoadException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the file name and additional exception information. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.IO.FileLoadException.Message"> <summary> Gets the error message and the name of the file that caused this exception. </summary> <returns> A string containing the error message and the name of the file that caused this exception. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.FileLoadException.ToString"> <summary> Returns the fully qualified name of the current exception, and possibly the error message, the name of the inner exception, and the stack trace. </summary> <returns> A string containing the fully qualified name of this exception, and possibly the error message, the name of the inner exception, and the stack trace, depending on which <see cref="T:System.IO.FileLoadException" /> constructor is used. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="T:System.IO.FileMode"> <summary> Specifies how the operating system should open a file. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.IO.FileMode.CreateNew"> <summary> Specifies that the operating system should create a new file. This requires <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />. If the file already exists, an <see cref="T:System.IO.IOException" /> is thrown. </summary> </member> <member name="F:System.IO.FileMode.Create"> <summary> Specifies that the operating system should create a new file. If the file already exists, it will be overwritten. This requires <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />. System.IO.FileMode.Create is equivalent to requesting that if the file does not exist, use <see cref="F:System.IO.FileMode.CreateNew" />; otherwise, use <see cref="F:System.IO.FileMode.Truncate" />. </summary> </member> <member name="F:System.IO.FileMode.Open"> <summary> Specifies that the operating system should open an existing file. The ability to open the file is dependent on the value specified by <see cref="T:System.IO.FileAccess" />. A <see cref="T:System.IO.FileNotFoundException" /> is thrown if the file does not exist. </summary> </member> <member name="F:System.IO.FileMode.OpenOrCreate"> <summary> Specifies that the operating system should open a file if it exists; otherwise, a new file should be created. If the file is opened with FileAccess.Read, <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" /> is required. If the file access is FileAccess.Write then <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" /> is required. If the file is opened with FileAccess.ReadWrite, both <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" /> and <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" /> are required. If the file access is FileAccess.Append, then <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Append" /> is required. </summary> </member> <member name="F:System.IO.FileMode.Truncate"> <summary> Specifies that the operating system should open an existing file. Once opened, the file should be truncated so that its size is zero bytes. This requires <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />. Attempts to read from a file opened with Truncate cause an exception. </summary> </member> <member name="F:System.IO.FileMode.Append"> <summary> Opens the file if it exists and seeks to the end of the file, or creates a new file. FileMode.Append can only be used in conjunction with FileAccess.Write. Attempting to seek to a position before the end of the file will throw an <see cref="T:System.IO.IOException" /> and any attempt to read fails and throws an <see cref="T:System.NotSupportedException" />. </summary> </member> <member name="T:System.IO.FileNotFoundException"> <summary> The exception that is thrown when an attempt to access a file that does not exist on disk fails. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.FileNotFoundException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException" /> class with its message string set to a system-supplied message and its HRESULT set to COR_E_FILENOTFOUND. </summary> </member> <member name="M:System.IO.FileNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException" /> class with the specified serialization and context information. </summary> <param name="info"> The data for serializing or deserializing the file. </param> <param name="context"> The source and destination for the file. </param> </member> <member name="M:System.IO.FileNotFoundException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException" /> class with its message string set to <paramref name="message" /> and its HRESULT set to COR_E_FILENOTFOUND. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.IO.FileNotFoundException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.IO.FileNotFoundException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException" /> class with its message string set to <paramref name="message" />, specifying the file name that cannot be found, and its HRESULT set to COR_E_FILENOTFOUND. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="fileName"> A <see cref="T:System.String" /> containing the full name of the file with the invalid image. </param> </member> <member name="M:System.IO.FileNotFoundException.#ctor(System.String,System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="fileName"> A <see cref="T:System.String" /> containing the full name of the file with the invalid image. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="P:System.IO.FileNotFoundException.FileName"> <summary> Gets the name of the file that cannot be found. </summary> <returns> A <see cref="T:System.String" /> containing the name of the file, or null if no file name was passed to the constructor for this instance. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.FileNotFoundException.FusionLog"> <summary> Gets the log file that describes why loading of an assembly failed. </summary> <returns> A String containing errors reported by the assembly cache. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.IO.FileNotFoundException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the file name and additional exception information. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.IO.FileNotFoundException.Message"> <summary> Gets the error message that explains the reason for the exception. </summary> <returns> A string containing the error message. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.FileNotFoundException.ToString"> <summary> Returns the fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace. </summary> <returns> A string containing the fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="T:System.IO.FileOptions"> <summary> Represents additional options for creating a <see cref="T:System.IO.FileStream" /> object. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.FileOptions.None"> <summary> Indicates no additional parameters. </summary> </member> <member name="F:System.IO.FileOptions.WriteThrough"> <summary> Indicates that the system should write through any intermediate cache and go directly to disk. </summary> </member> <member name="F:System.IO.FileOptions.Asynchronous"> <summary> Indicates that a file can be used for asynchronous reading and writing. </summary> </member> <member name="F:System.IO.FileOptions.RandomAccess"> <summary> Indicates that the file is accessed randomly. The system can use this as a hint to optimize file caching. </summary> </member> <member name="F:System.IO.FileOptions.DeleteOnClose"> <summary> Indicates that a file is automatically deleted when it is no longer in use. </summary> </member> <member name="F:System.IO.FileOptions.SequentialScan"> <summary> Indicates that the file is to be accessed sequentially from beginning to end. The system can use this as a hint to optimize file caching. If an application moves the file pointer for random access, optimum caching may not occur; however, correct operation is still guaranteed. </summary> </member> <member name="F:System.IO.FileOptions.Encrypted"> <summary> Indicates that a file is encrypted and can be decrypted only by using the same user account used for encryption. </summary> </member> <member name="T:System.IO.FileShare"> <summary> Contains constants for controlling the kind of access other <see cref="T:System.IO.FileStream" /> objects can have to the same file. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.IO.FileShare.None"> <summary> Declines sharing of the current file. Any request to open the file (by this process or another process) will fail until the file is closed. </summary> </member> <member name="F:System.IO.FileShare.Read"> <summary> Allows subsequent opening of the file for reading. If this flag is not specified, any request to open the file for reading (by this process or another process) will fail until the file is closed. However, even if this flag is specified, additional permissions might still be needed to access the file. </summary> </member> <member name="F:System.IO.FileShare.Write"> <summary> Allows subsequent opening of the file for writing. If this flag is not specified, any request to open the file for writing (by this process or another process) will fail until the file is closed. However, even if this flag is specified, additional permissions might still be needed to access the file. </summary> </member> <member name="F:System.IO.FileShare.ReadWrite"> <summary> Allows subsequent opening of the file for reading or writing. If this flag is not specified, any request to open the file for reading or writing (by this process or another process) will fail until the file is closed. However, even if this flag is specified, additional permissions might still be needed to access the file. </summary> </member> <member name="F:System.IO.FileShare.Delete"> <summary> Allows subsequent deleting of a file. </summary> </member> <member name="F:System.IO.FileShare.Inheritable"> <summary> Makes the file handle inheritable by child processes. This is not directly supported by Win32. </summary> </member> <member name="T:System.IO.FileStream"> <summary> Exposes a <see cref="T:System.IO.Stream" /> around a file, supporting both synchronous and asynchronous read and write operations. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileStream.#ctor(Microsoft.Win32.SafeHandles.SafeFileHandle,System.IO.FileAccess)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class for the specified file handle, with the specified read/write permission. </summary> <param name="handle"> A file handle for the file that the current FileStream object will encapsulate. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that sets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. </param> <exception cref="T:System.ArgumentException"> <paramref name="access" /> is not a field of <see cref="T:System.IO.FileAccess" />. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as a disk error. -or- The stream has been closed. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified file handle, such as when <paramref name="access" /> is Write or ReadWrite and the file handle is set for read-only access. </exception> </member> <member name="M:System.IO.FileStream.#ctor(Microsoft.Win32.SafeHandles.SafeFileHandle,System.IO.FileAccess,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class for the specified file handle, with the specified read/write permission, and buffer size. </summary> <param name="handle"> A file handle for the file that the current FileStream object will encapsulate. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that gets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. </param> <param name="bufferSize"> A positive <see cref="T:System.Int32" /> value greater than 0 indicating the buffer size. For <paramref name="bufferSize" /> values between one and eight, the actual buffer size is set to eight bytes. </param> <exception cref="T:System.ArgumentException"> The <paramref name="handle" /> parameter is an invalid handle. -or- The <paramref name="handle" /> parameter is a synchronous handle and it was used asynchronously. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="bufferSize" /> parameter is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as a disk error. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified file handle, such as when <paramref name="access" /> is Write or ReadWrite and the file handle is set for read-only access. </exception> </member> <member name="M:System.IO.FileStream.#ctor(Microsoft.Win32.SafeHandles.SafeFileHandle,System.IO.FileAccess,System.Int32,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class for the specified file handle, with the specified read/write permission, buffer size, and synchronous or asynchronous state. </summary> <param name="handle"> A file handle for the file that this FileStream object will encapsulate. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that gets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. </param> <param name="bufferSize"> A positive <see cref="T:System.Int32" /> value greater than 0 indicating the buffer size. For <paramref name="bufferSize" /> values between one and eight, the actual buffer size is set to eight bytes. </param> <param name="isAsync">true if the handle was opened asynchronously (that is, in overlapped I/O mode); otherwise, false. </param> <exception cref="T:System.ArgumentException"> The <paramref name="handle" /> parameter is an invalid handle. -or- The <paramref name="handle" /> parameter is a synchronous handle and it was used asynchronously. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="bufferSize" /> parameter is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as a disk error. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified file handle, such as when <paramref name="access" /> is Write or ReadWrite and the file handle is set for read-only access. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.IntPtr,System.IO.FileAccess)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class for the specified file handle, with the specified read/write permission. </summary> <param name="handle"> A file handle for the file that the current FileStream object will encapsulate. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that sets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. </param> <exception cref="T:System.ArgumentException"> <paramref name="access" /> is not a field of <see cref="T:System.IO.FileAccess" />. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as a disk error. -or- The stream has been closed. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified file handle, such as when <paramref name="access" /> is Write or ReadWrite and the file handle is set for read-only access. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.IntPtr,System.IO.FileAccess,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class for the specified file handle, with the specified read/write permission and FileStream instance ownership. </summary> <param name="handle"> A file handle for the file that the current FileStream object will encapsulate. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that gets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. </param> <param name="ownsHandle">true if the file handle will be owned by this FileStream instance; otherwise, false. </param> <exception cref="T:System.ArgumentException"> <paramref name="access" /> is not a field of <see cref="T:System.IO.FileAccess" />. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as a disk error. -or- The stream has been closed. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified file handle, such as when <paramref name="access" /> is Write or ReadWrite and the file handle is set for read-only access. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.IntPtr,System.IO.FileAccess,System.Boolean,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class for the specified file handle, with the specified read/write permission, FileStream instance ownership, and buffer size. </summary> <param name="handle"> A file handle for the file that this FileStream object will encapsulate. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that gets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. </param> <param name="ownsHandle">true if the file handle will be owned by this FileStream instance; otherwise, false. </param> <param name="bufferSize"> A positive <see cref="T:System.Int32" /> value greater than 0 indicating the buffer size. For <paramref name="bufferSize" /> values between one and eight, the actual buffer size is set to eight bytes. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as a disk error. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified file handle, such as when <paramref name="access" /> is Write or ReadWrite and the file handle is set for read-only access. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.IntPtr,System.IO.FileAccess,System.Boolean,System.Int32,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class for the specified file handle, with the specified read/write permission, FileStream instance ownership, buffer size, and synchronous or asynchronous state. </summary> <param name="handle"> A file handle for the file that this FileStream object will encapsulate. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that gets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. </param> <param name="ownsHandle">true if the file handle will be owned by this FileStream instance; otherwise, false. </param> <param name="bufferSize"> A positive <see cref="T:System.Int32" /> value greater than 0 indicating the buffer size. For <paramref name="bufferSize" /> values between one and eight, the actual buffer size is set to eight bytes. </param> <param name="isAsync">true if the handle was opened asynchronously (that is, in overlapped I/O mode); otherwise, false. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="access" /> is less than FileAccess.Read or greater than FileAccess.ReadWrite or <paramref name="bufferSize" /> is less than or equal to 0. </exception> <exception cref="T:System.ArgumentException"> The handle is invalid. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as a disk error. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified file handle, such as when <paramref name="access" /> is Write or ReadWrite and the file handle is set for read-only access. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class with the specified path and creation mode. </summary> <param name="path"> A relative or absolute path for the file that the current FileStream object will encapsulate. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant that determines how to open or create the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. -or- <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in an NTFS environment. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in a non-NTFS environment. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found, such as when <paramref name="mode" /> is FileMode.Truncate or FileMode.Open, and the file specified by <paramref name="path" /> does not exist. The file must already exist in these modes. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as specifying FileMode.CreateNew and the file specified by <paramref name="path" /> already exists. -or- The stream has been closed. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="mode" /> contains an invalid value. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class with the specified path, creation mode, and read/write permission. </summary> <param name="path"> A relative or absolute path for the file that the current FileStream object will encapsulate. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant that determines how to open or create the file. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that determines how the file can be accessed by the FileStream object. This gets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. <see cref="P:System.IO.FileStream.CanSeek" /> is true if <paramref name="path" /> specifies a disk file. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. -or- <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in an NTFS environment. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in a non-NTFS environment. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found, such as when <paramref name="mode" /> is FileMode.Truncate or FileMode.Open, and the file specified by <paramref name="path" /> does not exist. The file must already exist in these modes. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as specifying FileMode.CreateNew and the file specified by <paramref name="path" /> already exists. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified <paramref name="path" />, such as when <paramref name="access" /> is Write or ReadWrite and the file or directory is set for read-only access. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="mode" /> contains an invalid value. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class with the specified path, creation mode, read/write permission, and sharing permission. </summary> <param name="path"> A relative or absolute path for the file that the current FileStream object will encapsulate. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant that determines how to open or create the file. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that determines how the file can be accessed by the FileStream object. This gets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. <see cref="P:System.IO.FileStream.CanSeek" /> is true if <paramref name="path" /> specifies a disk file. </param> <param name="share"> A <see cref="T:System.IO.FileShare" /> constant that determines how the file will be shared by processes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. -or- <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in an NTFS environment. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in a non-NTFS environment. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found, such as when <paramref name="mode" /> is FileMode.Truncate or FileMode.Open, and the file specified by <paramref name="path" /> does not exist. The file must already exist in these modes. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as specifying FileMode.CreateNew and the file specified by <paramref name="path" /> already exists. -or- The system is running Windows 98 or Windows 98 Second Edition and <paramref name="share" /> is set to FileShare.Delete. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified <paramref name="path" />, such as when <paramref name="access" /> is Write or ReadWrite and the file or directory is set for read-only access. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="mode" /> contains an invalid value. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class with the specified path, creation mode, read/write and sharing permission, and buffer size. </summary> <param name="path"> A relative or absolute path for the file that the current FileStream object will encapsulate. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant that determines how to open or create the file. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that determines how the file can be accessed by the FileStream object. This gets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. <see cref="P:System.IO.FileStream.CanSeek" /> is true if <paramref name="path" /> specifies a disk file. </param> <param name="share"> A <see cref="T:System.IO.FileShare" /> constant that determines how the file will be shared by processes. </param> <param name="bufferSize"> A positive <see cref="T:System.Int32" /> value greater than 0 indicating the buffer size. For <paramref name="bufferSize" /> values between one and eight, the actual buffer size is set to eight bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. -or- <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in an NTFS environment. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in a non-NTFS environment. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is negative or zero. -or- <paramref name="mode" />, <paramref name="access" />, or <paramref name="share" /> contain an invalid value. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found, such as when <paramref name="mode" /> is FileMode.Truncate or FileMode.Open, and the file specified by <paramref name="path" /> does not exist. The file must already exist in these modes. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as specifying FileMode.CreateNew and the file specified by <paramref name="path" /> already exists. -or- The system is running Windows 98 or Windows 98 Second Edition and <paramref name="share" /> is set to FileShare.Delete. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified <paramref name="path" />, such as when <paramref name="access" /> is Write or ReadWrite and the file or directory is set for read-only access. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class with the specified path, creation mode, read/write and sharing permission, buffer size, and synchronous or asynchronous state. </summary> <param name="path"> A relative or absolute path for the file that the current FileStream object will encapsulate. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant that determines how to open or create the file. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that determines how the file can be accessed by the FileStream object. This gets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. <see cref="P:System.IO.FileStream.CanSeek" /> is true if <paramref name="path" /> specifies a disk file. </param> <param name="share"> A <see cref="T:System.IO.FileShare" /> constant that determines how the file will be shared by processes. </param> <param name="bufferSize"> A positive <see cref="T:System.Int32" /> value greater than 0 indicating the buffer size. For <paramref name="bufferSize" /> values between one and eight, the actual buffer size is set to eight bytes. </param> <param name="useAsync"> Specifies whether to use asynchronous I/O or synchronous I/O. However, note that the underlying operating system might not support asynchronous I/O, so when specifying true, the handle might be opened synchronously depending on the platform. When opened asynchronously, the <see cref="M:System.IO.FileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> and <see cref="M:System.IO.FileStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> methods perform better on large reads or writes, but they might be much slower for small reads or writes. If the application is designed to take advantage of asynchronous I/O, set the <paramref name="useAsync" /> parameter to true. Using asynchronous I/O correctly can speed up applications by as much as a factor of 10, but using it without redesigning the application for asynchronous I/O can decrease performance by as much as a factor of 10. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. -or- <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in an NTFS environment. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in a non-NTFS environment. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is negative or zero. -or- <paramref name="mode" />, <paramref name="access" />, or <paramref name="share" /> contain an invalid value. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found, such as when <paramref name="mode" /> is FileMode.Truncate or FileMode.Open, and the file specified by <paramref name="path" /> does not exist. The file must already exist in these modes. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as specifying FileMode.CreateNew and the file specified by <paramref name="path" /> already exists. -or- The system is running Windows 98 or Windows 98 Second Edition and <paramref name="share" /> is set to FileShare.Delete. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified <paramref name="path" />, such as when <paramref name="access" /> is Write or ReadWrite and the file or directory is set for read-only access. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.IO.FileOptions)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class with the specified path, creation mode, read/write and sharing permission, the access other FileStreams can have to the same file, the buffer size, and additional file options. </summary> <param name="path"> A relative or absolute path for the file that the current FileStream object will encapsulate. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant that determines how to open or create the file. </param> <param name="access"> A <see cref="T:System.IO.FileAccess" /> constant that determines how the file can be accessed by the FileStream object. This gets the <see cref="P:System.IO.FileStream.CanRead" /> and <see cref="P:System.IO.FileStream.CanWrite" /> properties of the FileStream object. <see cref="P:System.IO.FileStream.CanSeek" /> is true if <paramref name="path" /> specifies a disk file. </param> <param name="share"> A <see cref="T:System.IO.FileShare" /> constant that determines how the file will be shared by processes. </param> <param name="bufferSize"> A positive <see cref="T:System.Int32" /> value greater than 0 indicating the buffer size. For <paramref name="bufferSize" /> values between one and eight, the actual buffer size is set to eight bytes. </param> <param name="options"> A <see cref="T:System.IO.FileOptions" /> value that specifies additional file options. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. -or- <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in an NTFS environment. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in a non-NTFS environment. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is negative or zero. -or- <paramref name="mode" />, <paramref name="access" />, or <paramref name="share" /> contain an invalid value. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found, such as when <paramref name="mode" /> is FileMode.Truncate or FileMode.Open, and the file specified by <paramref name="path" /> does not exist. The file must already exist in these modes. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as specifying FileMode.CreateNew and the file specified by <paramref name="path" /> already exists. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified <paramref name="path" />, such as when <paramref name="access" /> is Write or ReadWrite and the file or directory is set for read-only access. -or- <see cref="F:System.IO.FileOptions.Encrypted" /> is specified for <paramref name="options" />, but file encryption is not supported on the current platform. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class with the specified path, creation mode, access rights and sharing permission, the buffer size, and additional file options. </summary> <param name="path"> A relative or absolute path for the file that the current <see cref="T:System.IO.FileStream" /> object will encapsulate. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant that determines how to open or create the file. </param> <param name="rights"> A <see cref="T:System.Security.AccessControl.FileSystemRights" /> constant that determines the access rights to use when creating access and audit rules for the file. </param> <param name="share"> A <see cref="T:System.IO.FileShare" /> constant that determines how the file will be shared by processes. </param> <param name="bufferSize"> A positive <see cref="T:System.Int32" /> value greater than 0 indicating the buffer size. For <paramref name="bufferSize" /> values between one and eight, the actual buffer size is set to eight bytes. </param> <param name="options"> A <see cref="T:System.IO.FileOptions" /> constant that specifies additional file options. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. -or- <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in an NTFS environment. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in a non-NTFS environment. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is negative or zero. -or- <paramref name="mode" />, <paramref name="access" />, or <paramref name="share" /> contain an invalid value. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found, such as when <paramref name="mode" /> is FileMode.Truncate or FileMode.Open, and the file specified by <paramref name="path" /> does not exist. The file must already exist in these modes. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Windows NT or later. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as specifying FileMode.CreateNew and the file specified by <paramref name="path" /> already exists. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified <paramref name="path" />, such as when <paramref name="access" /> is Write or ReadWrite and the file or directory is set for read-only access. -or- <see cref="F:System.IO.FileOptions.Encrypted" /> is specified for <paramref name="options" />, but file encryption is not supported on the current platform. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified <paramref name="path" />, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> </member> <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileStream" /> class with the specified path, creation mode, access rights and sharing permission, the buffer size, additional file options, access control and audit security. </summary> <param name="path"> A relative or absolute path for the file that the current <see cref="T:System.IO.FileStream" /> object will encapsulate. </param> <param name="mode"> A <see cref="T:System.IO.FileMode" /> constant that determines how to open or create the file. </param> <param name="rights"> A <see cref="T:System.Security.AccessControl.FileSystemRights" /> constant that determines the access rights to use when creating access and audit rules for the file. </param> <param name="share"> A <see cref="T:System.IO.FileShare" /> constant that determines how the file will be shared by processes. </param> <param name="bufferSize"> A positive <see cref="T:System.Int32" /> value greater than 0 indicating the buffer size. For <paramref name="bufferSize" /> values between one and eight, the actual buffer size is set to eight bytes. </param> <param name="options"> A <see cref="T:System.IO.FileOptions" /> constant that specifies additional file options. </param> <param name="fileSecurity"> A <see cref="T:System.Security.AccessControl.FileSecurity" /> constant that determines the access control and audit security for the file. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters. -or- <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in an NTFS environment. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> refers to a non-file device, such as "con:", "com1:", "lpt1:", etc. in a non-NTFS environment. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is negative or zero. -or- <paramref name="mode" />, <paramref name="access" />, or <paramref name="share" /> contain an invalid value. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found, such as when <paramref name="mode" /> is FileMode.Truncate or FileMode.Open, and the file specified by <paramref name="path" /> does not exist. The file must already exist in these modes. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as specifying FileMode.CreateNew and the file specified by <paramref name="path" /> already exists. -or- The stream has been closed. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="access" /> requested is not permitted by the operating system for the specified <paramref name="path" />, such as when <paramref name="access" /> is Write or ReadWrite and the file or directory is set for read-only access. -or- <see cref="F:System.IO.FileOptions.Encrypted" /> is specified for <paramref name="options" />, but file encryption is not supported on the current platform. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified <paramref name="path" />, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Windows NT or later. </exception> </member> <member name="M:System.IO.FileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)"> <summary> Begins an asynchronous read. </summary> <returns> An <see cref="T:System.IAsyncResult" /> that references the asynchronous read. </returns> <param name="array"> The buffer to read data into. </param> <param name="offset"> The byte offset in <paramref name="array" /> at which to begin reading. </param> <param name="numBytes"> The maximum number of bytes to read. </param> <param name="userCallback"> The method to be called when the asynchronous read operation is completed. </param> <param name="stateObject"> A user-provided object that distinguishes this particular asynchronous read request from other requests. </param> <exception cref="T:System.ArgumentException"> The array length minus <paramref name="offset" /> is less than <paramref name="numBytes" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="numBytes" /> is negative. </exception> <exception cref="T:System.IO.IOException"> An asynchronous read was attempted past the end of the file. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.FileStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)"> <summary> Begins an asynchronous write. </summary> <returns> An <see cref="T:System.IAsyncResult" /> that references the asynchronous write. </returns> <param name="array"> The buffer containing data to write to the current stream. </param> <param name="offset"> The zero-based byte offset in <paramref name="array" /> at which to begin copying bytes to the current stream. </param> <param name="numBytes"> The maximum number of bytes to write. </param> <param name="userCallback"> The method to be called when the asynchronous write operation is completed. </param> <param name="stateObject"> A user-provided object that distinguishes this particular asynchronous write request from other requests. </param> <exception cref="T:System.ArgumentException"> <paramref name="array" /> length minus <paramref name="offset" /> is less than <paramref name="numBytes" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="numBytes" /> is negative. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support writing. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.FileStream.CanRead"> <summary> Gets a value indicating whether the current stream supports reading. </summary> <returns>true if the stream supports reading; false if the stream is closed or was opened with write-only access. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.FileStream.CanSeek"> <summary> Gets a value indicating whether the current stream supports seeking. </summary> <returns>true if the stream supports seeking; false if the stream is closed or if the FileStream was constructed from an operating-system handle such as a pipe or output to the console. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.FileStream.CanWrite"> <summary> Gets a value indicating whether the current stream supports writing. </summary> <returns>true if the stream supports writing; false if the stream is closed or was opened with read-only access. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileStream.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.FileStream" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.IO.FileStream.EndRead(System.IAsyncResult)"> <summary> Waits for the pending asynchronous read to complete. </summary> <returns> The number of bytes read from the stream, between 0 and the number of bytes you requested. Streams only return 0 at the end of the stream, otherwise, they should block until at least 1 byte is available. </returns> <param name="asyncResult"> The reference to the pending asynchronous request to wait for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="asyncResult" /> is null. </exception> <exception cref="T:System.ArgumentException"> This <see cref="T:System.IAsyncResult" /> object was not created by calling <see cref="M:System.IO.FileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> on this class. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.IO.FileStream.EndRead(System.IAsyncResult)" /> is called multiple times. </exception> <exception cref="T:System.IO.IOException"> The stream is closed or an internal error has occurred. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.FileStream.EndWrite(System.IAsyncResult)"> <summary> Ends an asynchronous write, blocking until the I/O operation has completed. </summary> <param name="asyncResult"> The pending asynchronous I/O request. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="asyncResult" /> is null. </exception> <exception cref="T:System.ArgumentException"> This <see cref="T:System.IAsyncResult" /> object was not created by calling <see cref="M:System.IO.Stream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> on this class. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.IO.FileStream.EndWrite(System.IAsyncResult)" /> is called multiple times. </exception> <exception cref="T:System.IO.IOException"> The stream is closed or an internal error has occurred. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.FileStream.Finalize"> <summary> Ensures that resources are freed and other cleanup operations are performed when the garbage collector reclaims the FileStream. </summary> </member> <member name="M:System.IO.FileStream.Flush"> <summary> Clears all buffers for this stream and causes any buffered data to be written to the file system. </summary> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileStream.GetAccessControl"> <summary> Gets a <see cref="T:System.Security.AccessControl.FileSecurity" /> object that encapsulates the access control list (ACL) entries for the file described by the current <see cref="T:System.IO.FileStream" /> object. </summary> <returns> A <see cref="T:System.Security.AccessControl.FileSecurity" /> object that encapsulates the access control settings for the file described by the current <see cref="T:System.IO.FileStream" /> object. </returns> <exception cref="T:System.ObjectDisposedException"> The file is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.SystemException"> The file could not be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> This operation is not supported on the current platform. -or- The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileStream.Handle"> <summary> Gets the operating system file handle for the file that the current FileStream object encapsulates. </summary> <returns> The operating system file handle for the file encapsulated by this FileStream object, or -1 if the FileStream has been closed. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.IO.FileStream.IsAsync"> <summary> Gets a value indicating whether the FileStream was opened asynchronously or synchronously. </summary> <returns>true if the FileStream was opened asynchronously; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.FileStream.Length"> <summary> Gets the length in bytes of the stream. </summary> <returns> A long value representing the length of the stream in bytes. </returns> <exception cref="T:System.NotSupportedException"> <see cref="P:System.IO.FileStream.CanSeek" /> for this stream is false. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as the file being closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileStream.Lock(System.Int64,System.Int64)"> <summary> Prevents other processes from changing the <see cref="T:System.IO.FileStream" /> while permitting read access. </summary> <param name="position"> The beginning of the range to lock. The value of this parameter must be equal to or greater than zero (0). </param> <param name="length"> The range to be locked. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="position" /> or <paramref name="length" /> is negative. </exception> <exception cref="T:System.ObjectDisposedException"> The file is closed. </exception> <exception cref="T:System.IO.IOException"> The process cannot access the file because another process has locked a portion of the file. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.FileStream.Name"> <summary> Gets the name of the FileStream that was passed to the constructor. </summary> <returns> A string that is the name of the FileStream. </returns> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileStream.Position"> <summary> Gets or sets the current position of this stream. </summary> <returns> The current position of this stream. </returns> <exception cref="T:System.NotSupportedException"> The stream does not support seeking. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. - or - The position was set to a very large value beyond the end of the stream in Windows 98 or earlier. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Attempted to set the position to a negative value. </exception> <exception cref="T:System.IO.EndOfStreamException"> Attempted seeking past the end of a stream that does not support this. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileStream.Read(System.Byte[],System.Int32,System.Int32)"> <summary> Reads a block of bytes from the stream and writes the data in a given buffer. </summary> <returns> The total number of bytes read into the buffer. This might be less than the number of bytes requested if that number of bytes are not currently available, or zero if the end of the stream is reached. </returns> <param name="array"> When this method returns, contains the specified byte array with the values between <paramref name="offset" /> and (<paramref name="offset" /> + <paramref name="count" /> - <paramref name="1)" /> replaced by the bytes read from the current source. </param> <param name="offset"> The byte offset in <paramref name="array" /> at which the read bytes will be placed. </param> <param name="count"> The maximum number of bytes to read. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support reading. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ArgumentException"> <paramref name="offset" /> and <paramref name="count" /> describe an invalid range in <paramref name="array" />. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileStream.ReadByte"> <summary> Reads a byte from the file and advances the read position one byte. </summary> <returns> The byte, cast to an <see cref="T:System.Int32" />, or -1 if the end of the stream has been reached. </returns> <exception cref="T:System.NotSupportedException"> The current stream does not support reading. </exception> <exception cref="T:System.ObjectDisposedException"> The current stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.FileStream.SafeFileHandle"> <summary> Gets a <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle" /> object that represents the operating system file handle for the file that the current <see cref="T:System.IO.FileStream" /> object encapsulates. </summary> <returns> A <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle" /> object that represents the operating system file handle for the file that the current <see cref="T:System.IO.FileStream" /> object encapsulates. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileStream.Seek(System.Int64,System.IO.SeekOrigin)"> <summary> Sets the current position of this stream to the given value. </summary> <returns> The new position in the stream. </returns> <param name="offset"> The point relative to <paramref name="origin" /> from which to begin seeking. </param> <param name="origin"> Specifies the beginning, the end, or the current position as a reference point for <paramref name="origin" />, using a value of type <see cref="T:System.IO.SeekOrigin" />. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support seeking, such as if the FileStream is constructed from a pipe or console output. </exception> <exception cref="T:System.ArgumentException"> Attempted seeking before the beginning of the stream. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileStream.SetAccessControl(System.Security.AccessControl.FileSecurity)"> <summary> Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.FileSecurity" /> object to the file described by the current <see cref="T:System.IO.FileStream" /> object. </summary> <param name="fileSecurity"> A <see cref="T:System.Security.AccessControl.FileSecurity" /> object that describes an ACL entry to apply to the current file. </param> <exception cref="T:System.ObjectDisposedException"> The file is closed. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="fileSecurity" /> parameter is null. </exception> <exception cref="T:System.SystemException"> The file could not be found or modified. </exception> <exception cref="T:System.UnauthorizedAccessException"> The current process does not have access to open the file. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileStream.SetLength(System.Int64)"> <summary> Sets the length of this stream to the given value. </summary> <param name="value"> The new length of the stream. </param> <exception cref="T:System.IO.IOException"> An I/O error has occurred. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support both writing and seeking. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Attempted to set the <paramref name="value" /> parameter to less than 0. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.FileStream.Unlock(System.Int64,System.Int64)"> <summary> Allows access by other processes to all or part of a file that was previously locked. </summary> <param name="position"> The beginning of the range to unlock. </param> <param name="length"> The range to be unlocked. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="position" /> or <paramref name="length" /> is negative. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.FileStream.Write(System.Byte[],System.Int32,System.Int32)"> <summary> Writes a block of bytes to this stream using data from a buffer. </summary> <param name="array"> The buffer containing data to write to the stream. </param> <param name="offset"> The zero-based byte offset in <paramref name="array" /> at which to begin copying bytes to the current stream. </param> <param name="count"> The number of bytes to be written to the current stream. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="offset" /> and <paramref name="count" /> describe an invalid range in <paramref name="array" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. - or - Another thread may have caused an unexpected change in the position of the operating system's file handle. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.NotSupportedException"> The current stream instance does not support writing. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.FileStream.WriteByte(System.Byte)"> <summary> Writes a byte to the current position in the file stream. </summary> <param name="value"> A byte to write to the stream. </param> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support writing. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.IO.FileSystemInfo"> <summary> Provides the base class for both <see cref="T:System.IO.FileInfo" /> and <see cref="T:System.IO.DirectoryInfo" /> objects. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.FileSystemInfo.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileSystemInfo" /> class. </summary> </member> <member name="M:System.IO.FileSystemInfo.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.IO.FileSystemInfo" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> The specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> is null. </exception> </member> <member name="P:System.IO.FileSystemInfo.Attributes"> <summary> Gets or sets the <see cref="T:System.IO.FileAttributes" /> of the current <see cref="T:System.IO.FileSystemInfo" />. </summary> <returns> <see cref="T:System.IO.FileAttributes" /> of the current <see cref="T:System.IO.FileSystemInfo" />. </returns> <exception cref="T:System.IO.FileNotFoundException"> The specified file does not exist. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> The caller attempts to set an invalid file attribute. </exception> <exception cref="T:System.IO.IOException"> <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileSystemInfo.CreationTime"> <summary> Gets or sets the creation time of the current <see cref="T:System.IO.FileSystemInfo" /> object. </summary> <returns> The creation date and time of the current <see cref="T:System.IO.FileSystemInfo" /> object. </returns> <exception cref="T:System.IO.IOException"> <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileSystemInfo.CreationTimeUtc"> <summary> Gets or sets the creation time, in coordinated universal time (UTC), of the current <see cref="T:System.IO.FileSystemInfo" /> object. </summary> <returns> The creation date and time in UTC format of the current <see cref="T:System.IO.FileSystemInfo" /> object. </returns> <exception cref="T:System.IO.IOException"> <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.FileSystemInfo.Delete"> <summary> Deletes a file or directory. </summary> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.FileSystemInfo.Exists"> <summary> Gets a value indicating whether the file or directory exists. </summary> <returns>true if the file or directory exists; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.FileSystemInfo.Extension"> <summary> Gets the string representing the extension part of the file. </summary> <returns> A string containing the <see cref="T:System.IO.FileSystemInfo" /> extension. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.FileSystemInfo.FullName"> <summary> Gets the full path of the directory or file. </summary> <returns> A string containing the full path. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="F:System.IO.FileSystemInfo.FullPath"> <summary> Represents the fully qualified path of the directory or file. </summary> </member> <member name="M:System.IO.FileSystemInfo.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the file name and additional exception information. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="P:System.IO.FileSystemInfo.LastAccessTime"> <summary> Gets or sets the time the current file or directory was last accessed. </summary> <returns> The time that the current file or directory was last accessed. </returns> <exception cref="T:System.IO.IOException"> <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileSystemInfo.LastAccessTimeUtc"> <summary> Gets or sets the time, in coordinated universal time (UTC), that the current file or directory was last accessed. </summary> <returns> The UTC time that the current file or directory was last accessed. </returns> <exception cref="T:System.IO.IOException"> <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileSystemInfo.LastWriteTime"> <summary> Gets or sets the time when the current file or directory was last written to. </summary> <returns> The time the current file was last written. </returns> <exception cref="T:System.IO.IOException"> <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileSystemInfo.LastWriteTimeUtc"> <summary> Gets or sets the time, in coordinated universal time (UTC), when the current file or directory was last written to. </summary> <returns> The UTC time when the current file was last written to. </returns> <exception cref="T:System.IO.IOException"> <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows NT or later. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.IO.FileSystemInfo.Name"> <summary> For files, gets the name of the file. For directories, gets the name of the last directory in the hierarchy if a hierarchy exists. Otherwise, the Name property gets the name of the directory. </summary> <returns> A string that is the name of the parent directory, the name of the last directory in the hierarchy, or the name of a file, including the file name extension. </returns> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.FileSystemInfo.OriginalPath"> <summary> The path originally specified by the user, whether relative or absolute. </summary> </member> <member name="M:System.IO.FileSystemInfo.Refresh"> <summary> Refreshes the state of the object. </summary> <exception cref="T:System.IO.IOException"> A device such as a disk drive is not ready. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.IO.IOException"> <summary> The exception that is thrown when an I/O error occurs. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.IOException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.IOException" /> class with its message string set to the empty string (""), its HRESULT set to COR_E_IO, and its inner exception set to a null reference. </summary> </member> <member name="M:System.IO.IOException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IOException" /> class with the specified serialization and context information. </summary> <param name="info"> The data for serializing or deserializing the object. </param> <param name="context"> The source and destination for the object. </param> </member> <member name="M:System.IO.IOException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IOException" /> class with its message string set to <paramref name="message" />, its HRESULT set to COR_E_IO, and its inner exception set to null. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.IO.IOException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IOException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.IO.IOException.#ctor(System.String,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IOException" /> class with its message string set to <paramref name="message" /> and its HRESULT user-defined. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="hresult"> An integer identifying the error that has occurred. </param> </member> <member name="T:System.IO.MemoryStream"> <summary> Creates a stream whose backing store is memory. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.MemoryStream" /> class with an expandable capacity initialized to zero. </summary> </member> <member name="M:System.IO.MemoryStream.#ctor(System.Byte[])"> <summary> Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream" /> class based on the specified byte array. </summary> <param name="buffer"> The array of unsigned bytes from which to create the current stream. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> </member> <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Boolean)"> <summary> Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream" /> class based on the specified byte array with the <see cref="P:System.IO.MemoryStream.CanWrite" /> property set as specified. </summary> <param name="buffer"> The array of unsigned bytes from which to create this stream. </param> <param name="writable"> The setting of the <see cref="P:System.IO.MemoryStream.CanWrite" /> property, which determines whether the stream supports writing. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> </member> <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32)"> <summary> Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream" /> class based on the specified region (index) of a byte array. </summary> <param name="buffer"> The array of unsigned bytes from which to create this stream. </param> <param name="index"> The index into <paramref name="buffer" /> at which the stream begins. </param> <param name="count"> The length of the stream in bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> The sum of <paramref name="index" /> and <paramref name="count" /> is greater than the length of <paramref name="buffer" />. </exception> </member> <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32,System.Boolean)"> <summary> Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream" /> class based on the specified region of a byte array, with the <see cref="P:System.IO.MemoryStream.CanWrite" /> property set as specified. </summary> <param name="buffer"> The array of unsigned bytes from which to create this stream. </param> <param name="index"> The index in <paramref name="buffer" /> at which the stream begins. </param> <param name="count"> The length of the stream in bytes. </param> <param name="writable"> The setting of the <see cref="P:System.IO.MemoryStream.CanWrite" /> property, which determines whether the stream supports writing. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> are negative. </exception> <exception cref="T:System.ArgumentException"> The sum of <paramref name="index" /> and <paramref name="count" /> is greater than the length of <paramref name="buffer" />. </exception> </member> <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32,System.Boolean,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.IO.MemoryStream" /> class based on the specified region of a byte array, with the <see cref="P:System.IO.MemoryStream.CanWrite" /> property set as specified, and the ability to call <see cref="M:System.IO.MemoryStream.GetBuffer" /> set as specified. </summary> <param name="buffer"> The array of unsigned bytes from which to create this stream. </param> <param name="index"> The index into <paramref name="buffer" /> at which the stream begins. </param> <param name="count"> The length of the stream in bytes. </param> <param name="writable"> The setting of the <see cref="P:System.IO.MemoryStream.CanWrite" /> property, which determines whether the stream supports writing. </param> <param name="publiclyVisible">true to enable <see cref="M:System.IO.MemoryStream.GetBuffer" />, which returns the unsigned byte array from which the stream was created; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> </member> <member name="M:System.IO.MemoryStream.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.MemoryStream" /> class with an expandable capacity initialized as specified. </summary> <param name="capacity"> The initial size of the internal array in bytes. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is negative. </exception> </member> <member name="P:System.IO.MemoryStream.CanRead"> <summary> Gets a value indicating whether the current stream supports reading. </summary> <returns>true if the stream is open. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.MemoryStream.CanSeek"> <summary> Gets a value indicating whether the current stream supports seeking. </summary> <returns>true if the stream is open. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.MemoryStream.CanWrite"> <summary> Gets a value indicating whether the current stream supports writing. </summary> <returns>true if the stream supports writing; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.MemoryStream.Capacity"> <summary> Gets or sets the number of bytes allocated for this stream. </summary> <returns> The length of the usable portion of the buffer for the stream. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> A capacity is set that is negative or less than the current length of the stream. </exception> <exception cref="T:System.ObjectDisposedException"> The current stream is closed. </exception> <exception cref="T:System.NotSupportedException">set is invoked on a stream whose capacity cannot be modified. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.MemoryStream" /> class and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.IO.MemoryStream.Flush"> <summary> Overrides <see cref="M:System.IO.Stream.Flush" /> so that no action is performed. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.GetBuffer"> <summary> Returns the array of unsigned bytes from which this stream was created. </summary> <returns> The byte array from which this stream was created, or the underlying array if a byte array was not provided to the <see cref="T:System.IO.MemoryStream" /> constructor during construction of the current instance. </returns> <exception cref="T:System.UnauthorizedAccessException"> The MemoryStream instance was not created with a publicly visible buffer. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.MemoryStream.Length"> <summary> Gets the length of the stream in bytes. </summary> <returns> The length of the stream in bytes. </returns> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.MemoryStream.Position"> <summary> Gets or sets the current position within the stream. </summary> <returns> The current position within the stream. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The position is set to a negative value or a value greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.Read(System.Byte[],System.Int32,System.Int32)"> <summary> Reads a block of bytes from the current stream and writes the data to <paramref name="buffer" />. </summary> <returns> The total number of bytes written into the buffer. This can be less than the number of bytes requested if that number of bytes are not currently available, or zero if the end of the stream is reached before any bytes are read. </returns> <param name="buffer"> When this method returns, contains the specified byte array with the values between <paramref name="offset" /> and (<paramref name="offset" /> + <paramref name="count" /> - 1) replaced by the characters read from the current stream. </param> <param name="offset"> The byte offset in <paramref name="buffer" /> at which to begin reading. </param> <param name="count"> The maximum number of bytes to read. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.ArgumentException"> <paramref name="offset" /> subtracted from the buffer length is less than <paramref name="count" />. </exception> <exception cref="T:System.ObjectDisposedException"> The current stream instance is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.ReadByte"> <summary> Reads a byte from the current stream. </summary> <returns> The byte cast to a <see cref="T:System.Int32" />, or -1 if the end of the stream has been reached. </returns> <exception cref="T:System.ObjectDisposedException"> The current stream instance is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.Seek(System.Int64,System.IO.SeekOrigin)"> <summary> Sets the position within the current stream to the specified value. </summary> <returns> The new position within the stream, calculated by combining the initial reference point and the offset. </returns> <param name="offset"> The new position within the stream. This is relative to the <paramref name="loc" /> parameter, and can be positive or negative. </param> <param name="loc"> A value of type <see cref="T:System.IO.SeekOrigin" />, which acts as the seek reference point. </param> <exception cref="T:System.IO.IOException"> Seeking is attempted before the beginning of the stream. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.ArgumentException"> There is an invalid <see cref="T:System.IO.SeekOrigin" />. -or- <paramref name="offset" /> caused an arithmetic overflow. </exception> <exception cref="T:System.ObjectDisposedException"> The current stream instance is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.SetLength(System.Int64)"> <summary> Sets the length of the current stream to the specified value. </summary> <param name="value"> The value at which to set the length. </param> <exception cref="T:System.NotSupportedException"> The current stream is not resizable and <paramref name="value" /> is larger than the current capacity. -or- The current stream does not support writing. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="value" /> is negative or is greater than the maximum length of the <see cref="T:System.IO.MemoryStream" />, where the maximum length is(<see cref="F:System.Int32.MaxValue" /> - origin), and origin is the index into the underlying buffer at which the stream starts. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.ToArray"> <summary> Writes the stream contents to a byte array, regardless of the <see cref="P:System.IO.MemoryStream.Position" /> property. </summary> <returns> A new byte array. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.Write(System.Byte[],System.Int32,System.Int32)"> <summary> Writes a block of bytes to the current stream using data read from buffer. </summary> <param name="buffer"> The buffer to write data from. </param> <param name="offset"> The byte offset in <paramref name="buffer" /> at which to begin writing from. </param> <param name="count"> The maximum number of bytes to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support writing. For additional information see <see cref="P:System.IO.Stream.CanWrite" />. -or- The current position is closer than <paramref name="count" /> bytes to the end of the stream, and the capacity cannot be modified. </exception> <exception cref="T:System.ArgumentException"> <paramref name="offset" /> subtracted from the buffer length is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="count" /> are negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The current stream instance is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.WriteByte(System.Byte)"> <summary> Writes a byte to the current stream at the current position. </summary> <param name="value"> The byte to write. </param> <exception cref="T:System.NotSupportedException"> The stream does not support writing. For additional information see <see cref="P:System.IO.Stream.CanWrite" />. -or- The current position is at the end of the stream, and the capacity cannot be modified. </exception> <exception cref="T:System.ObjectDisposedException"> The current stream is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.MemoryStream.WriteTo(System.IO.Stream)"> <summary> Writes the entire contents of this memory stream to another stream. </summary> <param name="stream"> The stream to write this memory stream to. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The current or target stream is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.IO.Path"> <summary> Performs operations on <see cref="T:System.String" /> instances that contain file or directory path information. These operations are performed in a cross-platform manner. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.Path.AltDirectorySeparatorChar"> <summary> Provides a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Path.ChangeExtension(System.String,System.String)"> <summary> Changes the extension of a path string. </summary> <returns> A string containing the modified path information. On Windows-based desktop platforms, if <paramref name="path" /> is null or an empty string (""), the path information is returned unmodified. If <paramref name="extension" /> is null, the returned string contains the specified path with its extension removed. If <paramref name="path" /> has no extension, and <paramref name="extension" /> is not null, the returned path string contains <paramref name="extension" /> appended to the end of <paramref name="path" />. </returns> <param name="path"> The path information to modify. The path cannot contain any of the characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </param> <param name="extension"> The new extension (with or without a leading period). Specify null to remove an existing extension from <paramref name="path" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Path.Combine(System.String,System.String)"> <summary> Combines two path strings. </summary> <returns> A string containing the combined paths. If one of the specified paths is a zero-length string, this method returns the other path. If <paramref name="path2" /> contains an absolute path, this method returns <paramref name="path2" />. </returns> <param name="path1"> The first path. </param> <param name="path2"> The second path. </param> <exception cref="T:System.ArgumentException"> <paramref name="path1" /> or <paramref name="path2" /> contain one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path1" /> or <paramref name="path2" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.Path.DirectorySeparatorChar"> <summary> Provides a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Path.GetDirectoryName(System.String)"> <summary> Returns the directory information for the specified path string. </summary> <returns> A <see cref="T:System.String" /> containing directory information for <paramref name="path" />, or null if <paramref name="path" /> denotes a root directory, is the empty string (""), or is null. Returns <see cref="F:System.String.Empty" /> if <paramref name="path" /> does not contain directory information. </returns> <param name="path"> The path of a file or directory. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> parameter contains invalid characters, is empty, or contains only white spaces. </exception> <exception cref="T:System.IO.PathTooLongException"> The <paramref name="path" /> parameter is longer than the system-defined maximum length. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Path.GetExtension(System.String)"> <summary> Returns the extension of the specified path string. </summary> <returns> A <see cref="T:System.String" /> containing the extension of the specified path (including the "."), null, or <see cref="F:System.String.Empty" />. If <paramref name="path" /> is null, GetExtension returns null. If <paramref name="path" /> does not have extension information, GetExtension returns Empty. </returns> <param name="path"> The path string from which to get the extension. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Path.GetFileName(System.String)"> <summary> Returns the file name and extension of the specified path string. </summary> <returns> A <see cref="T:System.String" /> consisting of the characters after the last directory character in <paramref name="path" />. If the last character of <paramref name="path" /> is a directory or volume separator character, this method returns <see cref="F:System.String.Empty" />. If <paramref name="path" /> is null, this method returns null. </returns> <param name="path"> The path string from which to obtain the file name and extension. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Path.GetFileNameWithoutExtension(System.String)"> <summary> Returns the file name of the specified path string without the extension. </summary> <returns> A <see cref="T:System.String" /> containing the string returned by <see cref="M:System.IO.Path.GetFileName(System.String)" />, minus the last period (.) and all characters following it. </returns> <param name="path"> The path of the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Path.GetFullPath(System.String)"> <summary> Returns the absolute path for the specified path string. </summary> <returns> A string containing the fully qualified location of <paramref name="path" />, such as "C:\MyFile.txt". </returns> <param name="path"> The file or directory for which to obtain absolute path information. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. -or- The system could not retrieve the absolute path. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permissions. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> contains a colon (":") that is not part of a volume identifier (for example, "c:\"). </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.IO.Path.GetInvalidFileNameChars"> <summary> Gets an array containing the characters that are not allowed in file names. </summary> <returns> An array containing the characters that are not allowed in file names. </returns> </member> <member name="M:System.IO.Path.GetInvalidPathChars"> <summary> Gets an array containing the characters that are not allowed in path names. </summary> <returns> An array containing the characters that are not allowed in path names. </returns> </member> <member name="M:System.IO.Path.GetPathRoot(System.String)"> <summary> Gets the root directory information of the specified path. </summary> <returns> A string containing the root directory of <paramref name="path" />, such as "C:\", or null if <paramref name="path" /> is null, or an empty string if <paramref name="path" /> does not contain root directory information. </returns> <param name="path"> The path from which to obtain root directory information. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. -or- <see cref="F:System.String.Empty" /> was passed to <paramref name="path" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Path.GetRandomFileName"> <summary> Returns a random folder name or file name. </summary> <returns> A random folder name or file name. </returns> </member> <member name="M:System.IO.Path.GetTempFileName"> <summary> Creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file. </summary> <returns> A <see cref="T:System.String" /> containing the full path of the temporary file. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as no unique temporary file name is available. - or - This method was unable to create a temporary file. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Path.GetTempPath"> <summary> Returns the path of the current system's temporary folder. </summary> <returns> A <see cref="T:System.String" /> containing the path information of a temporary directory. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permissions. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.Path.HasExtension(System.String)"> <summary> Determines whether a path includes a file name extension. </summary> <returns>true if the characters that follow the last directory separator (\\ or /) or volume separator (:) in the path include a period (.) followed by one or more characters; otherwise, false. </returns> <param name="path"> The path to search for an extension. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.Path.InvalidPathChars"> <summary> Provides a platform-specific array of characters that cannot be specified in path string arguments passed to members of the <see cref="T:System.IO.Path" /> class. </summary> <returns> A character array of invalid path characters for the current platform. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Path.IsPathRooted(System.String)"> <summary> Gets a value indicating whether the specified path string contains absolute or relative path information. </summary> <returns>true if <paramref name="path" /> contains an absolute path; otherwise, false. </returns> <param name="path"> The path to test. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.Path.PathSeparator"> <summary> A platform-specific separator character used to separate path strings in environment variables. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.Path.VolumeSeparatorChar"> <summary> Provides a platform-specific volume separator character. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.IO.PathTooLongException"> <summary> The exception that is thrown when a pathname or filename is longer than the system-defined maximum length. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.PathTooLongException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.PathTooLongException" /> class with its HRESULT set to COR_E_PATHTOOLONG. </summary> </member> <member name="M:System.IO.PathTooLongException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.IO.PathTooLongException" /> class with the specified serialization and context information. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.IO.PathTooLongException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.PathTooLongException" /> class with its message string set to <paramref name="message" /> and its HRESULT set to COR_E_PATHTOOLONG. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> </member> <member name="M:System.IO.PathTooLongException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IO.PathTooLongException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.IO.SearchOption"> <summary> Specifies whether to search the current directory, or the current directory and all subdirectories. </summary> </member> <member name="F:System.IO.SearchOption.TopDirectoryOnly"> <summary> Includes only the current directory in a search. </summary> </member> <member name="F:System.IO.SearchOption.AllDirectories"> <summary> Includes the current directory and all the subdirectories in a search operation. This option includes reparse points like mounted drives and symbolic links in the search. </summary> </member> <member name="T:System.IO.SeekOrigin"> <summary> Provides the fields that represent reference points in streams for seeking. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.IO.SeekOrigin.Begin"> <summary> Specifies the beginning of a stream. </summary> </member> <member name="F:System.IO.SeekOrigin.Current"> <summary> Specifies the current position within a stream. </summary> </member> <member name="F:System.IO.SeekOrigin.End"> <summary> Specifies the end of a stream. </summary> </member> <member name="T:System.IO.Stream"> <summary> Provides a generic view of a sequence of bytes. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.Stream.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.Stream" /> class. </summary> </member> <member name="M:System.IO.Stream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)"> <summary> Begins an asynchronous read operation. </summary> <returns> An <see cref="T:System.IAsyncResult" /> that represents the asynchronous read, which could still be pending. </returns> <param name="buffer"> The buffer to read the data into. </param> <param name="offset"> The byte offset in <paramref name="buffer" /> at which to begin writing data read from the stream. </param> <param name="count"> The maximum number of bytes to read. </param> <param name="callback"> An optional asynchronous callback, to be called when the read is complete. </param> <param name="state"> A user-provided object that distinguishes this particular asynchronous read request from other requests. </param> <exception cref="T:System.IO.IOException"> Attempted an asynchronous read past the end of the stream, or a disk error occurs. </exception> <exception cref="T:System.ArgumentException"> One or more of the arguments is invalid. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <exception cref="T:System.NotSupportedException"> The current Stream implementation does not support the read operation. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.Stream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)"> <summary> Begins an asynchronous write operation. </summary> <returns> An IAsyncResult that represents the asynchronous write, which could still be pending. </returns> <param name="buffer"> The buffer to write data from. </param> <param name="offset"> The byte offset in <paramref name="buffer" /> from which to begin writing. </param> <param name="count"> The maximum number of bytes to write. </param> <param name="callback"> An optional asynchronous callback, to be called when the write is complete. </param> <param name="state"> A user-provided object that distinguishes this particular asynchronous write request from other requests. </param> <exception cref="T:System.IO.IOException"> Attempted an asynchronous write past the end of the stream, or a disk error occurs. </exception> <exception cref="T:System.ArgumentException"> One or more of the arguments is invalid. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <exception cref="T:System.NotSupportedException"> The current Stream implementation does not support the write operation. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.Stream.CanRead"> <summary> When overridden in a derived class, gets a value indicating whether the current stream supports reading. </summary> <returns>true if the stream supports reading; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.Stream.CanSeek"> <summary> When overridden in a derived class, gets a value indicating whether the current stream supports seeking. </summary> <returns>true if the stream supports seeking; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.Stream.CanTimeout"> <summary> Gets a value that determines whether the current stream can time out. </summary> <returns> A value that determines whether the current stream can time out. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.Stream.CanWrite"> <summary> When overridden in a derived class, gets a value indicating whether the current stream supports writing. </summary> <returns>true if the stream supports writing; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Stream.Close"> <summary> Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Stream.CreateWaitHandle"> <summary> Allocates a <see cref="T:System.Threading.WaitHandle" /> object. </summary> <returns> A reference to the allocated WaitHandle. </returns> </member> <member name="M:System.IO.Stream.Dispose"> <summary> Releases all resources used by the <see cref="T:System.IO.Stream" />. </summary> </member> <member name="M:System.IO.Stream.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.Stream" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.IO.Stream.EndRead(System.IAsyncResult)"> <summary> Waits for the pending asynchronous read to complete. </summary> <returns> The number of bytes read from the stream, between zero (0) and the number of bytes you requested. Streams return zero (0) only at the end of the stream, otherwise, they should block until at least one byte is available. </returns> <param name="asyncResult"> The reference to the pending asynchronous request to finish. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="asyncResult" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="asyncResult" /> did not originate from a <see cref="M:System.IO.Stream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> method on the current stream. </exception> <exception cref="T:System.IO.IOException"> The stream is closed or an internal error has occurred. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.Stream.EndWrite(System.IAsyncResult)"> <summary> Ends an asynchronous write operation. </summary> <param name="asyncResult"> A reference to the outstanding asynchronous I/O request. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="asyncResult" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="asyncResult" /> did not originate from a <see cref="M:System.IO.Stream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> method on the current stream. </exception> <exception cref="T:System.IO.IOException"> The stream is closed or an internal error has occurred. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.Stream.Flush"> <summary> When overridden in a derived class, clears all buffers for this stream and causes any buffered data to be written to the underlying device. </summary> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.Stream.Length"> <summary> When overridden in a derived class, gets the length in bytes of the stream. </summary> <returns> A long value representing the length of the stream in bytes. </returns> <exception cref="T:System.NotSupportedException"> A class derived from Stream does not support seeking. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.Stream.Null"> <summary> A Stream with no backing store. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.Stream.Position"> <summary> When overridden in a derived class, gets or sets the position within the current stream. </summary> <returns> The current position within the stream. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support seeking. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Stream.Read(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. </summary> <returns> The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached. </returns> <param name="buffer"> An array of bytes. When this method returns, the buffer contains the specified byte array with the values between <paramref name="offset" /> and (<paramref name="offset" /> + <paramref name="count" /> - 1) replaced by the bytes read from the current source. </param> <param name="offset"> The zero-based byte offset in <paramref name="buffer" /> at which to begin storing the data read from the current stream. </param> <param name="count"> The maximum number of bytes to be read from the current stream. </param> <exception cref="T:System.ArgumentException"> The sum of <paramref name="offset" /> and <paramref name="count" /> is larger than the buffer length. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support reading. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Stream.ReadByte"> <summary> Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream. </summary> <returns> The unsigned byte cast to an Int32, or -1 if at the end of the stream. </returns> <exception cref="T:System.NotSupportedException"> The stream does not support reading. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.Stream.ReadTimeout"> <summary> Gets or sets a value, in miliseconds, that determines how long the stream will attempt to read before timing out. </summary> <returns> A value, in miliseconds, that determines how long the stream will attempt to read before timing out. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="P:System.IO.Stream.ReadTimeout" /> method always throws an <see cref="T:System.InvalidOperationException" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.Stream.Seek(System.Int64,System.IO.SeekOrigin)"> <summary> When overridden in a derived class, sets the position within the current stream. </summary> <returns> The new position within the current stream. </returns> <param name="offset"> A byte offset relative to the <paramref name="origin" /> parameter. </param> <param name="origin"> A value of type <see cref="T:System.IO.SeekOrigin" /> indicating the reference point used to obtain the new position. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support seeking, such as if the stream is constructed from a pipe or console output. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Stream.SetLength(System.Int64)"> <summary> When overridden in a derived class, sets the length of the current stream. </summary> <param name="value"> The desired length of the current stream in bytes. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.Stream.Synchronized(System.IO.Stream)"> <summary> Creates a thread-safe (synchronized) wrapper around the specified <see cref="T:System.IO.Stream" /> object. </summary> <returns> A thread-safe <see cref="T:System.IO.Stream" /> object. </returns> <param name="stream"> The <see cref="T:System.IO.Stream" /> object to synchronize. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> is null. </exception> </member> <member name="M:System.IO.Stream.Write(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. </summary> <param name="buffer"> An array of bytes. This method copies <paramref name="count" /> bytes from <paramref name="buffer" /> to the current stream. </param> <param name="offset"> The zero-based byte offset in <paramref name="buffer" /> at which to begin copying bytes to the current stream. </param> <param name="count"> The number of bytes to be written to the current stream. </param> <exception cref="T:System.ArgumentException"> The sum of <paramref name="offset" /> and <paramref name="count" /> is greater than the buffer length. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support writing. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.Stream.WriteByte(System.Byte)"> <summary> Writes a byte to the current position in the stream and advances the position within the stream by one byte. </summary> <param name="value"> The byte to write to the stream. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.NotSupportedException"> The stream does not support writing, or the stream is already closed. </exception> <exception cref="T:System.ObjectDisposedException"> Methods were called after the stream was closed. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.Stream.WriteTimeout"> <summary> Gets or sets a value, in miliseconds, that determines how long the stream will attempt to write before timing out. </summary> <returns> A value, in miliseconds, that determines how long the stream will attempt to write before timing out. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="P:System.IO.Stream.WriteTimeout" /> method always throws an <see cref="T:System.InvalidOperationException" />. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.IO.StreamReader"> <summary> Implements a <see cref="T:System.IO.TextReader" /> that reads characters from a byte stream in a particular encoding. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream. </summary> <param name="stream"> The stream to be read. </param> <exception cref="T:System.ArgumentException"> <paramref name="stream" /> does not support reading. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> is null. </exception> </member> <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream, with the specified byte order mark detection option. </summary> <param name="stream"> The stream to be read. </param> <param name="detectEncodingFromByteOrderMarks"> Indicates whether to look for byte order marks at the beginning of the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="stream" /> does not support reading. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> is null. </exception> </member> <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream, with the specified character encoding. </summary> <param name="stream"> The stream to be read. </param> <param name="encoding"> The character encoding to use. </param> <exception cref="T:System.ArgumentException"> <paramref name="stream" /> does not support reading. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> or <paramref name="encoding" /> is null. </exception> </member> <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream, with the specified character encoding and byte order mark detection option. </summary> <param name="stream"> The stream to be read. </param> <param name="encoding"> The character encoding to use. </param> <param name="detectEncodingFromByteOrderMarks"> Indicates whether to look for byte order marks at the beginning of the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="stream" /> does not support reading. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> or <paramref name="encoding" /> is null. </exception> </member> <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream, with the specified character encoding, byte order mark detection option, and buffer size. </summary> <param name="stream"> The stream to be read. </param> <param name="encoding"> The character encoding to use. </param> <param name="detectEncodingFromByteOrderMarks"> Indicates whether to look for byte order marks at the beginning of the file. </param> <param name="bufferSize"> The minimum buffer size. </param> <exception cref="T:System.ArgumentException"> The stream does not support reading. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> or <paramref name="encoding" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is less than or equal to zero. </exception> </member> <member name="M:System.IO.StreamReader.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified file name. </summary> <param name="path"> The complete file path to be read. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label. </exception> </member> <member name="M:System.IO.StreamReader.#ctor(System.String,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified file name, with the specified byte order mark detection option. </summary> <param name="path"> The complete file path to be read. </param> <param name="detectEncodingFromByteOrderMarks"> Indicates whether to look for byte order marks at the beginning of the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label. </exception> </member> <member name="M:System.IO.StreamReader.#ctor(System.String,System.Text.Encoding)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified file name, with the specified character encoding. </summary> <param name="path"> The complete file path to be read. </param> <param name="encoding"> The character encoding to use. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> or <paramref name="encoding" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label. </exception> </member> <member name="M:System.IO.StreamReader.#ctor(System.String,System.Text.Encoding,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified file name, with the specified character encoding and byte order mark detection option. </summary> <param name="path"> The complete file path to be read. </param> <param name="encoding"> The character encoding to use. </param> <param name="detectEncodingFromByteOrderMarks"> Indicates whether to look for byte order marks at the beginning of the file. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> or <paramref name="encoding" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label. </exception> </member> <member name="M:System.IO.StreamReader.#ctor(System.String,System.Text.Encoding,System.Boolean,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified file name, with the specified character encoding, byte order mark detection option, and buffer size. </summary> <param name="path"> The complete file path to be read. </param> <param name="encoding"> The character encoding to use. </param> <param name="detectEncodingFromByteOrderMarks"> Indicates whether to look for byte order marks at the beginning of the file. </param> <param name="bufferSize"> The minimum buffer size, in number of 16-bit characters. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> or <paramref name="encoding" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="buffersize" /> is less than or equal to zero. </exception> </member> <member name="P:System.IO.StreamReader.BaseStream"> <summary> Returns the underlying stream. </summary> <returns> The underlying stream. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StreamReader.Close"> <summary> Closes the <see cref="T:System.IO.StreamReader" /> object and the underlying stream, and releases any system resources associated with the reader. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.StreamReader.CurrentEncoding"> <summary> Gets the current character encoding that the current <see cref="T:System.IO.StreamReader" /> object is using. </summary> <returns> The current character encoding used by the current reader. The value can be different after the first call to any <see cref="Overload:System.IO.StreamReader.Read" /> method of <see cref="T:System.IO.StreamReader" />, since encoding autodetection is not done until the first call to a <see cref="Overload:System.IO.StreamReader.Read" /> method. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StreamReader.DiscardBufferedData"> <summary> Allows a <see cref="T:System.IO.StreamReader" /> object to discard its current data. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StreamReader.Dispose(System.Boolean)"> <summary> Closes the underlying stream, releases the unmanaged resources used by the <see cref="T:System.IO.StreamReader" />, and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="P:System.IO.StreamReader.EndOfStream"> <summary> Gets a value that indicates whether the current stream position is at the end of the stream. </summary> <returns>true if the current stream position is at the end of the stream; otherwise false. </returns> <exception cref="T:System.ObjectDisposedException"> The underlying stream has been disposed. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.StreamReader.Null"> <summary> A <see cref="T:System.IO.StreamReader" /> object around an empty stream. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamReader.Peek"> <summary> Returns the next available character but does not consume it. </summary> <returns> An integer representing the next character to be read, or -1 if no more characters are available or the stream does not support seeking. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamReader.Read"> <summary> Reads the next character from the input stream and advances the character position by one character. </summary> <returns> The next character from the input stream represented as an <see cref="T:System.Int32" /> object, or -1 if no more characters are available. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamReader.Read(System.Char[],System.Int32,System.Int32)"> <summary> Reads a maximum of <paramref name="count" /> characters from the current stream into <paramref name="buffer" />, beginning at <paramref name="index" />. </summary> <returns> The number of characters that have been read, or 0 if at the end of the stream and no data was read. The number will be less than or equal to the <paramref name="count" /> parameter, depending on whether the data is available within the stream. </returns> <param name="buffer"> When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index + count - 1" />) replaced by the characters read from the current source. </param> <param name="index"> The index of <paramref name="buffer" /> at which to begin writing. </param> <param name="count"> The maximum number of characters to read. </param> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs, such as the stream is closed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamReader.ReadLine"> <summary> Reads a line of characters from the current stream and returns the data as a string. </summary> <returns> The next line from the input stream, or null if the end of the input stream is reached. </returns> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to allocate a buffer for the returned string. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamReader.ReadToEnd"> <summary> Reads the stream from the current position to the end of the stream. </summary> <returns> The rest of the stream as a string, from the current position to the end. If the current position is at the end of the stream, returns the empty string(""). </returns> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to allocate a buffer for the returned string. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.IO.StreamWriter"> <summary> Implements a <see cref="T:System.IO.TextWriter" /> for writing characters to a stream in a particular encoding. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified stream, using UTF-8 encoding and the default buffer size. </summary> <param name="stream"> The stream to write to. </param> <exception cref="T:System.ArgumentException"> <paramref name="stream" /> is not writable. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> is null. </exception> </member> <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified stream, using the specified encoding and the default buffer size. </summary> <param name="stream"> The stream to write to. </param> <param name="encoding"> The character encoding to use. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> or <paramref name="encoding" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="stream" /> is not writable. </exception> </member> <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified stream, using the specified encoding and buffer size. </summary> <param name="stream"> The stream to write to. </param> <param name="encoding"> The character encoding to use. </param> <param name="bufferSize"> Sets the buffer size. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="stream" /> or <paramref name="encoding" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is negative. </exception> <exception cref="T:System.ArgumentException"> <paramref name="stream" /> is not writable. </exception> </member> <member name="M:System.IO.StreamWriter.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified file on the specified path, using the default encoding and buffer size. </summary> <param name="path"> The complete file path to write to. <paramref name="path" /> can be a file name. </param> <exception cref="T:System.UnauthorizedAccessException"> Access is denied. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string(""). -or- <paramref name="path" /> contains the name of a system device (com1, com2, and so on). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label syntax. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.IO.StreamWriter.#ctor(System.String,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified file on the specified path, using the default encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file. </summary> <param name="path"> The complete file path to write to. </param> <param name="append"> Determines whether data is to be appended to the file. If the file exists and <paramref name="append" /> is false, the file is overwritten. If the file exists and <paramref name="append" /> is true, the data is appended to the file. Otherwise, a new file is created. </param> <exception cref="T:System.UnauthorizedAccessException"> Access is denied. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is empty. -or- <paramref name="path" /> contains the name of a system device (com1, com2, and so on). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label syntax. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.IO.StreamWriter.#ctor(System.String,System.Boolean,System.Text.Encoding)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified file on the specified path, using the specified encoding and default buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file. </summary> <param name="path"> The complete file path to write to. </param> <param name="append"> Determines whether data is to be appended to the file. If the file exists and <paramref name="append" /> is false, the file is overwritten. If the file exists and <paramref name="append" /> is true, the data is appended to the file. Otherwise, a new file is created. </param> <param name="encoding"> The character encoding to use. </param> <exception cref="T:System.UnauthorizedAccessException"> Access is denied. </exception> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is empty. -or- <paramref name="path" /> contains the name of a system device (com1, com2, etc). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label syntax. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.IO.StreamWriter.#ctor(System.String,System.Boolean,System.Text.Encoding,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified file on the specified path, using the specified encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file. </summary> <param name="path"> The complete file path to write to. </param> <param name="append"> Determines whether data is to be appended to the file. If the file exists and <paramref name="append" /> is false, the file is overwritten. If the file exists and <paramref name="append" /> is true, the data is appended to the file. Otherwise, a new file is created. </param> <param name="encoding"> The character encoding to use. </param> <param name="bufferSize"> Sets the buffer size. </param> <exception cref="T:System.ArgumentException"> <paramref name="path" /> is an empty string (""). -or- <paramref name="path" /> contains the name of a system device (com1, com2, etc). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="path" /> or <paramref name="encoding" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="bufferSize" /> is negative. </exception> <exception cref="T:System.IO.IOException"> <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label syntax. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.UnauthorizedAccessException"> Access is denied. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, such as being on an unmapped drive. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> </member> <member name="P:System.IO.StreamWriter.AutoFlush"> <summary> Gets or sets a value indicating whether the <see cref="T:System.IO.StreamWriter" /> will flush its buffer to the underlying stream after every call to <see cref="M:System.IO.StreamWriter.Write(System.Char)" />. </summary> <returns>true to force <see cref="T:System.IO.StreamWriter" /> to flush its buffer; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.StreamWriter.BaseStream"> <summary> Gets the underlying stream that interfaces with a backing store. </summary> <returns> The stream this StreamWriter is writing to. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StreamWriter.Close"> <summary> Closes the current StreamWriter object and the underlying stream. </summary> <exception cref="T:System.Text.EncoderFallbackException"> The current encoding does not support displaying half of a Unicode surrogate pair. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamWriter.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.StreamWriter" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> <exception cref="T:System.Text.EncoderFallbackException"> The current encoding does not support displaying half of a Unicode surrogate pair. </exception> </member> <member name="P:System.IO.StreamWriter.Encoding"> <summary> Gets the <see cref="T:System.Text.Encoding" /> in which the output is written. </summary> <returns> The <see cref="T:System.Text.Encoding" /> specified in the constructor for the current instance, or <see cref="T:System.Text.UTF8Encoding" /> if an encoding was not specified. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StreamWriter.Flush"> <summary> Clears all buffers for the current writer and causes any buffered data to be written to the underlying stream. </summary> <exception cref="T:System.ObjectDisposedException"> The current writer is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error has occurred. </exception> <exception cref="T:System.Text.EncoderFallbackException"> The current encoding does not support displaying half of a Unicode surrogate pair. </exception> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.StreamWriter.Null"> <summary> Provides a StreamWriter with no backing store that can be written to, but not read from. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamWriter.Write(System.Char)"> <summary> Writes a character to the stream. </summary> <param name="value"> The character to write to the text stream. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and current writer is closed. </exception> <exception cref="T:System.NotSupportedException"> <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter" /> is at the end the stream. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamWriter.Write(System.Char[])"> <summary> Writes a character array to the stream. </summary> <param name="buffer"> A character array containing the data to write. If <paramref name="buffer" /> is null, nothing is written. </param> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and current writer is closed. </exception> <exception cref="T:System.NotSupportedException"> <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter" /> is at the end the stream. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamWriter.Write(System.Char[],System.Int32,System.Int32)"> <summary> Writes a subarray of characters to the stream. </summary> <param name="buffer"> A character array containing the data to write. </param> <param name="index"> The index into <paramref name="buffer" /> at which to begin writing. </param> <param name="count"> The number of characters to read from <paramref name="buffer" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and current writer is closed. </exception> <exception cref="T:System.NotSupportedException"> <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter" /> is at the end the stream. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StreamWriter.Write(System.String)"> <summary> Writes a string to the stream. </summary> <param name="value"> The string to write to the stream. If <paramref name="value" /> is null, nothing is written. </param> <exception cref="T:System.ObjectDisposedException"> <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and current writer is closed. </exception> <exception cref="T:System.NotSupportedException"> <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter" /> is at the end the stream. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.IO.StringReader"> <summary> Implements a <see cref="T:System.IO.TextReader" /> that reads from a string. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringReader.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StringReader" /> class that reads from the specified string. </summary> <param name="s"> The string to which the <see cref="T:System.IO.StringReader" /> should be initialized. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> </member> <member name="M:System.IO.StringReader.Close"> <summary> Closes the <see cref="T:System.IO.StringReader" />. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringReader.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.StringReader" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.IO.StringReader.Peek"> <summary> Returns the next available character but does not consume it. </summary> <returns> An integer representing the next character to be read, or -1 if no more characters are available or the stream does not support seeking. </returns> <exception cref="T:System.ObjectDisposedException"> The current reader is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringReader.Read"> <summary> Reads the next character from the input string and advances the character position by one character. </summary> <returns> The next character from the underlying string, or -1 if no more characters are available. </returns> <exception cref="T:System.ObjectDisposedException"> The current reader is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringReader.Read(System.Char[],System.Int32,System.Int32)"> <summary> Reads a block of characters from the input string and advances the character position by <paramref name="count" />. </summary> <returns> The total number of characters read into the buffer. This can be less than the number of characters requested if that many characters are not currently available, or zero if the end of the underlying string has been reached. </returns> <param name="buffer"> When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> - 1) replaced by the characters read from the current source. </param> <param name="index"> The starting index in the buffer. </param> <param name="count"> The number of characters to read. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.ObjectDisposedException"> The current reader is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringReader.ReadLine"> <summary> Reads a line from the underlying string. </summary> <returns> The next line from the underlying string, or null if the end of the underlying string is reached. </returns> <exception cref="T:System.ObjectDisposedException"> The current reader is closed. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to allocate a buffer for the returned string. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringReader.ReadToEnd"> <summary> Reads the stream as a string, either in its entirety or from the current position to the end of the stream. </summary> <returns> The content from the current position to the end of the underlying string. </returns> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to allocate a buffer for the returned string. </exception> <exception cref="T:System.ObjectDisposedException"> The current reader is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.IO.StringWriter"> <summary> Implements a <see cref="T:System.IO.TextWriter" /> for writing information to a string. The information is stored in an underlying <see cref="T:System.Text.StringBuilder" />. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringWriter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.StringWriter" /> class. </summary> </member> <member name="M:System.IO.StringWriter.#ctor(System.IFormatProvider)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StringWriter" /> class with the specified format control. </summary> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that controls formatting. </param> </member> <member name="M:System.IO.StringWriter.#ctor(System.Text.StringBuilder)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StringWriter" /> class that writes to the specified <see cref="T:System.Text.StringBuilder" />. </summary> <param name="sb"> The StringBuilder to write to. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sb" /> is null. </exception> </member> <member name="M:System.IO.StringWriter.#ctor(System.Text.StringBuilder,System.IFormatProvider)"> <summary> Initializes a new instance of the <see cref="T:System.IO.StringWriter" /> class that writes to the specified <see cref="T:System.Text.StringBuilder" /> and has the specified format provider. </summary> <param name="sb"> The StringBuilder to write to. </param> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that controls formatting. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sb" /> is null. </exception> </member> <member name="M:System.IO.StringWriter.Close"> <summary> Closes the current <see cref="T:System.IO.StringWriter" /> and the underlying stream. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StringWriter.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.StringWriter" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="P:System.IO.StringWriter.Encoding"> <summary> Gets the <see cref="T:System.Text.Encoding" /> in which the output is written. </summary> <returns> The Encoding in which the output is written. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.StringWriter.GetStringBuilder"> <summary> Returns the underlying <see cref="T:System.Text.StringBuilder" />. </summary> <returns> The underlying StringBuilder. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringWriter.ToString"> <summary> Returns a string containing the characters written to the current StringWriter so far. </summary> <returns> The string containing the characters written to the current StringWriter. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringWriter.Write(System.Char)"> <summary> Writes a character to this instance of the StringWriter. </summary> <param name="value"> The character to write. </param> <exception cref="T:System.ObjectDisposedException"> The writer is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringWriter.Write(System.Char[],System.Int32,System.Int32)"> <summary> Writes the specified region of a character array to this instance of the StringWriter. </summary> <param name="buffer"> The character array to read data from. </param> <param name="index"> The index at which to begin reading from <paramref name="buffer" />. </param> <param name="count"> The maximum number of characters to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.ArgumentException"> (<paramref name="index" /> + <paramref name="count" />)> <paramref name="buffer" />. Length. </exception> <exception cref="T:System.ObjectDisposedException"> The writer is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.StringWriter.Write(System.String)"> <summary> Writes a string to this instance of the StringWriter. </summary> <param name="value"> The string to write. </param> <exception cref="T:System.ObjectDisposedException"> The writer is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.IO.TextReader"> <summary> Represents a reader that can read a sequential series of characters. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.TextReader.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.TextReader" /> class. </summary> </member> <member name="M:System.IO.TextReader.Close"> <summary> Closes the <see cref="T:System.IO.TextReader" /> and releases any system resources associated with the TextReader. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextReader.Dispose"> <summary> Releases all resources used by the <see cref="T:System.IO.TextReader" /> object. </summary> </member> <member name="M:System.IO.TextReader.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.TextReader" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="F:System.IO.TextReader.Null"> <summary> Provides a TextReader with no data to read from. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextReader.Peek"> <summary> Reads the next character without changing the state of the reader or the character source. Returns the next available character without actually reading it from the input stream. </summary> <returns> An integer representing the next character to be read, or -1 if no more characters are available or the stream does not support seeking. </returns> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextReader" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextReader.Read"> <summary> Reads the next character from the input stream and advances the character position by one character. </summary> <returns> The next character from the input stream, or -1 if no more characters are available. The default implementation returns -1. </returns> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextReader" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextReader.Read(System.Char[],System.Int32,System.Int32)"> <summary> Reads a maximum of <paramref name="count" /> characters from the current stream and writes the data to <paramref name="buffer" />, beginning at <paramref name="index" />. </summary> <returns> The number of characters that have been read. The number will be less than or equal to <paramref name="count" />, depending on whether the data is available within the stream. This method returns zero if called when no more characters are left to read. </returns> <param name="buffer"> When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> - 1) replaced by the characters read from the current source. </param> <param name="index"> The place in <paramref name="buffer" /> at which to begin writing. </param> <param name="count"> The maximum number of characters to read. If the end of the stream is reached before <paramref name="count" /> of characters is read into <paramref name="buffer" />, the current method returns. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextReader" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextReader.ReadBlock(System.Char[],System.Int32,System.Int32)"> <summary> Reads a maximum of <paramref name="count" /> characters from the current stream, and writes the data to <paramref name="buffer" />, beginning at <paramref name="index" />. </summary> <returns> The position of the underlying stream is advanced by the number of characters that were read into <paramref name="buffer" />. The number of characters that have been read. The number will be less than or equal to <paramref name="count" />, depending on whether all input characters have been read. </returns> <param name="buffer"> When this method returns, this parameter contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> -1) replaced by the characters read from the current source. </param> <param name="index"> The place in <paramref name="buffer" /> at which to begin writing. </param> <param name="count"> The maximum number of characters to read. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextReader" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.TextReader.ReadLine"> <summary> Reads a line of characters from the current stream and returns the data as a string. </summary> <returns> The next line from the input stream, or null if all characters have been read. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to allocate a buffer for the returned string. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextReader" /> is closed. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue" /></exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextReader.ReadToEnd"> <summary> Reads all characters from the current position to the end of the TextReader and returns them as one string. </summary> <returns> A string containing all characters from the current position to the end of the TextReader. </returns> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextReader" /> is closed. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to allocate a buffer for the returned string. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue" /></exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextReader.Synchronized(System.IO.TextReader)"> <summary> Creates a thread-safe wrapper around the specified TextReader. </summary> <returns> A thread-safe <see cref="T:System.IO.TextReader" />. </returns> <param name="reader"> The TextReader to synchronize. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="reader" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.IO.TextWriter"> <summary> Represents a writer that can write a sequential series of characters. This class is abstract. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.TextWriter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.TextWriter" /> class. </summary> </member> <member name="M:System.IO.TextWriter.#ctor(System.IFormatProvider)"> <summary> Initializes a new instance of the <see cref="T:System.IO.TextWriter" /> class with the specified format provider. </summary> <param name="formatProvider"> An <see cref="T:System.IFormatProvider" /> object that controls formatting. </param> </member> <member name="M:System.IO.TextWriter.Close"> <summary> Closes the current writer and releases any system resources associated with the writer. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.IO.TextWriter.CoreNewLine"> <summary> Stores the new line characters used for this TextWriter. </summary> </member> <member name="M:System.IO.TextWriter.Dispose"> <summary> Releases all resources used by the <see cref="T:System.IO.TextWriter" /> object. </summary> </member> <member name="M:System.IO.TextWriter.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.TextWriter" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="P:System.IO.TextWriter.Encoding"> <summary> When overridden in a derived class, returns the <see cref="T:System.Text.Encoding" /> in which the output is written. </summary> <returns> The Encoding in which the output is written. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Flush"> <summary> Clears all buffers for the current writer and causes any buffered data to be written to the underlying device. </summary> <filterpriority>1</filterpriority> </member> <member name="P:System.IO.TextWriter.FormatProvider"> <summary> Gets an object that controls formatting. </summary> <returns> An <see cref="T:System.IFormatProvider" /> object for a specific culture, or the formatting of the current culture if no other culture is specified. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.TextWriter.NewLine"> <summary> Gets or sets the line terminator string used by the current TextWriter. </summary> <returns> The line terminator string for the current TextWriter. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.IO.TextWriter.Null"> <summary> Provides a TextWriter with no backing store that can be written to, but not read from. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Synchronized(System.IO.TextWriter)"> <summary> Creates a thread-safe wrapper around the specified TextWriter. </summary> <returns> A thread-safe wrapper. </returns> <param name="writer"> The TextWriter to synchronize. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="writer" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.Boolean)"> <summary> Writes the text representation of a Boolean value to the text stream. </summary> <param name="value"> The Boolean to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.Char)"> <summary> Writes a character to the text stream. </summary> <param name="value"> The character to write to the text stream. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.Char[])"> <summary> Writes a character array to the text stream. </summary> <param name="buffer"> The character array to write to the text stream. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.Char[],System.Int32,System.Int32)"> <summary> Writes a subarray of characters to the text stream. </summary> <param name="buffer"> The character array to write data from. </param> <param name="index"> Starting index in the buffer. </param> <param name="count"> The number of characters to write. </param> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="buffer" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.Decimal)"> <summary> Writes the text representation of a decimal value to the text stream. </summary> <param name="value"> The decimal value to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.Double)"> <summary> Writes the text representation of an 8-byte floating-point value to the text stream. </summary> <param name="value"> The 8-byte floating-point value to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.Int32)"> <summary> Writes the text representation of a 4-byte signed integer to the text stream. </summary> <param name="value"> The 4-byte signed integer to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.Int64)"> <summary> Writes the text representation of an 8-byte signed integer to the text stream. </summary> <param name="value"> The 8-byte signed integer to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.Object)"> <summary> Writes the text representation of an object to the text stream by calling ToString on that object. </summary> <param name="value"> The object to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.Single)"> <summary> Writes the text representation of a 4-byte floating-point value to the text stream. </summary> <param name="value"> The 4-byte floating-point value to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.String)"> <summary> Writes a string to the text stream. </summary> <param name="value"> The string to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.String,System.Object)"> <summary> Writes out a formatted string, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />. </summary> <param name="format"> The formatting string. </param> <param name="arg0"> An object to write into the formatted string. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.FormatException"> The format specification in format is invalid. -or- The number indicating an argument to be formatted is less than zero, or larger than or equal to the number of provided objects to be formatted. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.String,System.Object,System.Object)"> <summary> Writes out a formatted string, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />. </summary> <param name="format"> The formatting string. </param> <param name="arg0"> An object to write into the formatted string. </param> <param name="arg1"> An object to write into the formatted string. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.FormatException"> The format specification in format is invalid. -or- The number indicating an argument to be formatted is less than zero, or larger than or equal to the number of provided objects to be formatted. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.String,System.Object,System.Object,System.Object)"> <summary> Writes out a formatted string, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />. </summary> <param name="format"> The formatting string. </param> <param name="arg0"> An object to write into the formatted string. </param> <param name="arg1"> An object to write into the formatted string. </param> <param name="arg2"> An object to write into the formatted string. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.FormatException"> The format specification in format is invalid. -or- The number indicating an argument to be formatted is less than zero, or larger than or equal to the number of provided objects to be formatted. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.String,System.Object[])"> <summary> Writes out a formatted string, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />. </summary> <param name="format"> The formatting string. </param> <param name="arg"> The object array to write into the formatted string. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> or <paramref name="arg" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.FormatException"> The format specification in format is invalid. -or- The number indicating an argument to be formatted is less than zero, or larger than or equal to <paramref name="arg" />. Length. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.UInt32)"> <summary> Writes the text representation of a 4-byte unsigned integer to the text stream. </summary> <param name="value"> The 4-byte unsigned integer to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.Write(System.UInt64)"> <summary> Writes the text representation of an 8-byte unsigned integer to the text stream. </summary> <param name="value"> The 8-byte unsigned integer to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine"> <summary> Writes a line terminator to the text stream. </summary> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.Boolean)"> <summary> Writes the text representation of a Boolean followed by a line terminator to the text stream. </summary> <param name="value"> The Boolean to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.Char)"> <summary> Writes a character followed by a line terminator to the text stream. </summary> <param name="value"> The character to write to the text stream. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.Char[])"> <summary> Writes an array of characters followed by a line terminator to the text stream. </summary> <param name="buffer"> The character array from which data is read. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.Char[],System.Int32,System.Int32)"> <summary> Writes a subarray of characters followed by a line terminator to the text stream. </summary> <param name="buffer"> The character array from which data is read. </param> <param name="index"> The index into <paramref name="buffer" /> at which to begin reading. </param> <param name="count"> The maximum number of characters to write. </param> <exception cref="T:System.ArgumentException"> The buffer length minus <paramref name="index" /> is less than <paramref name="count" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="buffer" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is negative. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.Decimal)"> <summary> Writes the text representation of a decimal value followed by a line terminator to the text stream. </summary> <param name="value"> The decimal value to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.Double)"> <summary> Writes the text representation of a 8-byte floating-point value followed by a line terminator to the text stream. </summary> <param name="value"> The 8-byte floating-point value to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.Int32)"> <summary> Writes the text representation of a 4-byte signed integer followed by a line terminator to the text stream. </summary> <param name="value"> The 4-byte signed integer to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.Int64)"> <summary> Writes the text representation of an 8-byte signed integer followed by a line terminator to the text stream. </summary> <param name="value"> The 8-byte signed integer to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.Object)"> <summary> Writes the text representation of an object by calling ToString on this object, followed by a line terminator to the text stream. </summary> <param name="value"> The object to write. If <paramref name="value" /> is null, only the line termination characters are written. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.Single)"> <summary> Writes the text representation of a 4-byte floating-point value followed by a line terminator to the text stream. </summary> <param name="value"> The 4-byte floating-point value to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.String)"> <summary> Writes a string followed by a line terminator to the text stream. </summary> <param name="value"> The string to write. If <paramref name="value" /> is null, only the line termination characters are written. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object)"> <summary> Writes out a formatted string and a new line, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />. </summary> <param name="format"> The formatted string. </param> <param name="arg0"> The object to write into the formatted string. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.FormatException"> The format specification in format is invalid. -or- The number indicating an argument to be formatted is less than zero, or larger than or equal to the number of provided objects to be formatted. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object,System.Object)"> <summary> Writes out a formatted string and a new line, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />. </summary> <param name="format"> The formatting string. </param> <param name="arg0"> The object to write into the format string. </param> <param name="arg1"> The object to write into the format string. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.FormatException"> The format specification in format is invalid. -or- The number indicating an argument to be formatted is less than zero, or larger than or equal to the number of provided objects to be formatted. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object,System.Object,System.Object)"> <summary> Writes out a formatted string and a new line, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />. </summary> <param name="format"> The formatting string. </param> <param name="arg0"> The object to write into the format string. </param> <param name="arg1"> The object to write into the format string. </param> <param name="arg2"> The object to write into the format string. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.FormatException"> The format specification in format is invalid. -or- The number indicating an argument to be formatted is less than zero, or larger than or equal to the number of provided objects to be formatted. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object[])"> <summary> Writes out a formatted string and a new line, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />. </summary> <param name="format"> The formatting string. </param> <param name="arg"> The object array to write into format string. </param> <exception cref="T:System.ArgumentNullException"> A string or object is passed in as null. </exception> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.FormatException"> The format specification in format is invalid. -or- The number indicating an argument to be formatted is less than zero, or larger than or equal to arg.Length. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.UInt32)"> <summary> Writes the text representation of a 4-byte unsigned integer followed by a line terminator to the text stream. </summary> <param name="value"> The 4-byte unsigned integer to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.IO.TextWriter.WriteLine(System.UInt64)"> <summary> Writes the text representation of an 8-byte unsigned integer followed by a line terminator to the text stream. </summary> <param name="value"> The 8-byte unsigned integer to write. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.IO.TextWriter" /> is closed. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.IO.UnmanagedMemoryStream"> <summary> Provides access to unmanaged blocks of memory from managed code. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.UnmanagedMemoryStream.#ctor"> <summary> Initializes a new, empty instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class. </summary> <exception cref="T:System.Security.SecurityException"> The user does not have the required permission. </exception> </member> <member name="M:System.IO.UnmanagedMemoryStream.#ctor(System.Byte*,System.Int64)"> <summary> Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class using the specified location and memory length. </summary> <param name="pointer"> A pointer to an unmanaged memory location. </param> <param name="length"> The length of the memory to use. </param> <exception cref="T:System.Security.SecurityException"> The user does not have the required permission. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="pointer" /> value is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="length" /> value is less than zero. - or - The <paramref name="length" /> is large enough to cause an overflow. </exception> </member> <member name="M:System.IO.UnmanagedMemoryStream.#ctor(System.Byte*,System.Int64,System.Int64,System.IO.FileAccess)"> <summary> Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class using the specified location, memory length, total amount of memory, and file access values. </summary> <param name="pointer"> A pointer to an unmanaged memory location. </param> <param name="length"> The length of the memory to use. </param> <param name="capacity"> The total amount of memory assigned to the stream. </param> <param name="access"> One of the <see cref="T:System.IO.FileAccess" /> values. </param> <exception cref="T:System.Security.SecurityException"> The user does not have the required permission. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="pointer" /> value is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="length" /> value is less than zero. - or - The <paramref name="capacity" /> value is less than zero. - or - The <paramref name="length" /> value is greater than the <paramref name="capacity" /> value. </exception> </member> <member name="P:System.IO.UnmanagedMemoryStream.CanRead"> <summary> Gets a value indicating whether a stream supports reading. </summary> <returns>false if the object was created by a constructor with an <paramref name="access" /> parameter that did not include reading the stream and if the stream is closed; otherwise, true. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.UnmanagedMemoryStream.CanSeek"> <summary> Gets a value indicating whether a stream supports seeking. </summary> <returns>false if the stream is closed; otherwise, true. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.UnmanagedMemoryStream.CanWrite"> <summary> Gets a value indicating whether a stream supports writing. </summary> <returns>false if the object was created by a constructor with an <paramref name="access" /> parameter value that supports writing or was created by a constructor that had no parameters, or if the stream is closed; otherwise, true. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.UnmanagedMemoryStream.Capacity"> <summary> Gets the stream length (size) or the total amount of memory assigned to a stream (capacity). </summary> <returns> The size or capacity of the stream. </returns> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.UnmanagedMemoryStream.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.UnmanagedMemoryStream" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.IO.UnmanagedMemoryStream.Flush"> <summary> Overrides the <see cref="M:System.IO.Stream.Flush" /> method so that no action is performed. </summary> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.UnmanagedMemoryStream.Initialize(System.Byte*,System.Int64,System.Int64,System.IO.FileAccess)"> <summary> Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class. </summary> <param name="pointer"> A pointer to an unmanaged memory location. </param> <param name="length"> The length of the memory to use. </param> <param name="capacity"> The total amount of memory assigned to the stream. </param> <param name="access"> One of the <see cref="T:System.IO.FileAccess" /> values. </param> <exception cref="T:System.Security.SecurityException"> The user does not have the required permission. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="pointer" /> value is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="length" /> value is less than zero. - or - The <paramref name="capacity" /> value is less than zero. - or - The <paramref name="length" /> value is large enough to cause an overflow. </exception> </member> <member name="P:System.IO.UnmanagedMemoryStream.Length"> <summary> Gets the length of the data in a stream. </summary> <returns> The length of the data in the stream. </returns> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.UnmanagedMemoryStream.Position"> <summary> Gets or sets the current position in a stream. </summary> <returns> The current position in the stream. </returns> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The position is set to a value that is less than zero, or the position is larger than <see cref="F:System.Int32.MaxValue" /> or results in overflow when added to the current pointer. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.IO.UnmanagedMemoryStream.PositionPointer"> <summary> Gets or sets a byte pointer to a stream based on the current position in the stream. </summary> <returns> A byte pointer. </returns> <exception cref="T:System.IndexOutOfRangeException"> The current position is larger than the capacity of the stream. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The position is being set is not a valid position in the current stream. </exception> <exception cref="T:System.IO.IOException"> The pointer is being set to a lower value than the starting position of the stream. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.UnmanagedMemoryStream.Read(System.Byte[],System.Int32,System.Int32)"> <summary> Reads the specified number of bytes into the specified array. </summary> <returns> The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached. </returns> <param name="buffer"> When this method returns, contains the specified byte array with the values between <paramref name="offset" /> and (<paramref name="offset" /> + <paramref name="count" /> - 1) replaced by the bytes read from the current source. This parameter is passed uninitialized. </param> <param name="offset"> The zero-based byte offset in <paramref name="buffer" /> at which to begin storing the data read from the current stream. </param> <param name="count"> The maximum number of bytes to read from the current stream. </param> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.NotSupportedException"> The underlying memory does not support reading. - or - The <see cref="P:System.IO.UnmanagedMemoryStream.CanRead" /> property is set to false. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="buffer" /> parameter is set to null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="offset" /> parameter is less than zero. - or - The <paramref name="count" /> parameter is less than zero. </exception> <exception cref="T:System.ArgumentException"> The length of the buffer array minus the <paramref name="offset" /> parameter is less than the <paramref name="count" /> parameter. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.UnmanagedMemoryStream.ReadByte"> <summary> Reads a byte from a stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream. </summary> <returns> The unsigned byte cast to an <see cref="T:System.Int32" /> object, or -1 if at the end of the stream. </returns> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.NotSupportedException"> The underlying memory does not support reading. - or - The current position is at the end of the stream. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.UnmanagedMemoryStream.Seek(System.Int64,System.IO.SeekOrigin)"> <summary> Sets the current position of the current stream to the given value. </summary> <returns> The new position in the stream. </returns> <param name="offset"> The point relative to <paramref name="origin" /> to begin seeking from. </param> <param name="loc"> Specifies the beginning, the end, or the current position as a reference point for <paramref name="origin" />, using a value of type <see cref="T:System.IO.SeekOrigin" />. </param> <exception cref="T:System.IO.IOException"> An attempt was made to seek before the beginning of the stream. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="offset" /> value is larger than the maximum size of the stream. </exception> <exception cref="T:System.ArgumentException"> <paramref name="loc" /> is invalid. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.UnmanagedMemoryStream.SetLength(System.Int64)"> <summary> Sets the length of a stream to a specified value. </summary> <param name="value"> The length of the stream. </param> <exception cref="T:System.IO.IOException"> An I/O error has occurred. </exception> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.NotSupportedException"> The underlying memory does not support writing. - or - An attempt is made to write to the stream and the <see cref="P:System.IO.UnmanagedMemoryStream.CanWrite" /> property is false. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The specified <paramref name="value" /> exceeds the capacity of the stream. - or - The specified <paramref name="value" /> is negative. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.UnmanagedMemoryStream.Write(System.Byte[],System.Int32,System.Int32)"> <summary> Writes a block of bytes to the current stream using data from a buffer. </summary> <param name="buffer"> The byte array from which to copy bytes to the current stream. </param> <param name="offset"> The offset in the buffer at which to begin copying bytes to the current stream. </param> <param name="count"> The number of bytes to write to the current stream. </param> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.NotSupportedException"> The underlying memory does not support writing. - or - An attempt is made to write to the stream and the <see cref="P:System.IO.UnmanagedMemoryStream.CanWrite" /> property is false. - or - The <paramref name="count" /> value is greater than the capacity of the stream. - or - The position is at the end of the stream capacity. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurs. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> One of the specified parameters is less than zero. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="offset" /> parameter minus the length of the <paramref name="buffer" /> parameter is less than the <paramref name="count" /> parameter. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="buffer" /> parameter is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.UnmanagedMemoryStream.WriteByte(System.Byte)"> <summary> Writes a byte to the current position in the file stream. </summary> <param name="value"> A byte value written to the stream. </param> <exception cref="T:System.ObjectDisposedException"> The stream is closed. </exception> <exception cref="T:System.NotSupportedException"> The underlying memory does not support writing. - or - An attempt is made to write to the stream and the <see cref="P:System.IO.UnmanagedMemoryStream.CanWrite" /> property is false. - or - The current position is at the end of the capacity of the stream. </exception> <exception cref="T:System.IO.IOException"> The supplied <paramref name="value" /> causes the stream exceed its maximum capacity. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.IO.BufferedStream.Close"> <summary> Closes the stream and releases any resources (especially system resources such as sockets and file handles) associated with the current buffered stream. </summary> <exception cref="T:System.IO.IOException"> An error occurred while trying to close the stream. </exception> </member> <member name="M:System.IO.FileStream.Close"></member> <member name="M:System.IO.MemoryStream.Close"> <summary> Closes the stream for reading and writing. </summary> </member> <member name="M:System.IO.Stream.System#IDisposable#Dispose"> <summary> For a description of this member, see <see cref="M:System.IDisposable.Dispose" />. </summary> </member> <member name="M:System.IO.StreamWriter.Finalize"> <summary> Frees the resources of the current <see cref="T:System.IO.StreamWriter" /> before it is reclaimed by the garbage collector. </summary> </member> <member name="M:System.IO.TextReader.System#IDisposable#Dispose"> <summary> For a description of this member, see <see cref="M:System.IDisposable.Dispose" />. </summary> </member> <member name="M:System.IO.TextWriter.System#IDisposable#Dispose"> <summary> For a description of this member, see <see cref="M:System.IDisposable.Dispose" />. </summary> </member> <member name="T:System.IO.IsolatedStorage.INormalizeForIsolatedStorage"> <summary> Enables comparisons between an isolated store and an application domain and assembly's evidence. </summary> </member> <member name="M:System.IO.IsolatedStorage.INormalizeForIsolatedStorage.Normalize"> <summary> When overridden in a derived class, returns a normalized copy of the object on which it is called. </summary> <returns> A normalized object that represents the instance on which this method was called. This instance can be a string, stream, or any serializable object. </returns> </member> <member name="T:System.IO.IsolatedStorage.IsolatedStorage"> <summary> Represents the abstract base class from which all isolated storage implementations must derive. </summary> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorage.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> class. </summary> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorage.ApplicationIdentity"> <summary> Gets an application identity that scopes isolated storage. </summary> <returns> An <see cref="T:System.Object" /> that represents the <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Application" /> identity. </returns> <exception cref="T:System.Security.SecurityException"> The code lacks the required <see cref="T:System.Security.Permissions.SecurityPermission" /> to access this object. These permissions are granted by the runtime based on security policy. </exception> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object is not isolated by the application <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPolicy" /> </PermissionSet> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorage.AssemblyIdentity"> <summary> Gets an assembly identity used to scope isolated storage. </summary> <returns> An <see cref="T:System.Object" /> that represents the <see cref="T:System.Reflection.Assembly" /> identity. </returns> <exception cref="T:System.Security.SecurityException"> The code lacks the required <see cref="T:System.Security.Permissions.SecurityPermission" /> to access this object. </exception> <exception cref="T:System.InvalidOperationException"> The assembly is not defined. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPolicy" /> </PermissionSet> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorage.CurrentSize"> <summary> Gets a value representing the current size of isolated storage. </summary> <returns> The number of storage units currently used within the isolated storage scope. </returns> <exception cref="T:System.InvalidOperationException"> The current size of the isolated store is undefined. </exception> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorage.DomainIdentity"> <summary> Gets a domain identity that scopes isolated storage. </summary> <returns> An <see cref="T:System.Object" /> that represents the <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Domain" /> identity. </returns> <exception cref="T:System.Security.SecurityException"> The code lacks the required <see cref="T:System.Security.Permissions.SecurityPermission" /> to access this object. These permissions are granted by the runtime based on security policy. </exception> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object is not isolated by the domain <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPolicy" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorage.GetPermission(System.Security.PermissionSet)"> <summary> When implemented by a derived class, returns a permission that represents access to isolated storage from within a permission set. </summary> <returns> An <see cref="T:System.Security.Permissions.IsolatedStoragePermission" /> object. </returns> <param name="ps"> The <see cref="T:System.Security.PermissionSet" /> object that contains the set of permissions granted to code attempting to use isolated storage. </param> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorage.InitStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Type)"> <summary> Initializes a new <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object. </summary> <param name="scope"> A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values. </param> <param name="appEvidenceType"> The type of <see cref="T:System.Security.Policy.Evidence" /> that you can choose from the list of <see cref="T:System.Security.Policy.Evidence" /> for the calling application. null lets the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object choose the evidence. </param> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The assembly specified has insufficient permissions to create isolated stores. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorage.InitStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Type,System.Type)"> <summary> Initializes a new <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object. </summary> <param name="scope"> A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values. </param> <param name="domainEvidenceType"> The type of <see cref="T:System.Security.Policy.Evidence" /> that you can choose from the list of <see cref="T:System.Security.Policy.Evidence" /> present in the domain of the calling application. null lets the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object choose the evidence. </param> <param name="assemblyEvidenceType"> The type of <see cref="T:System.Security.Policy.Evidence" /> that you can choose from the list of <see cref="T:System.Security.Policy.Evidence" /> present in the assembly of the calling application. null lets the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object choose the evidence. </param> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The assembly specified has insufficient permissions to create isolated stores. </exception> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorage.MaximumSize"> <summary> Gets a value representing the maximum amount of space available for isolated storage. When overridden in a derived class, this value can take different units of measure. </summary> <returns> The maximum amount of isolated storage space in bytes. Derived classes can return different units of value. </returns> <exception cref="T:System.InvalidOperationException"> The quota has not been defined. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorage.Remove"> <summary> When overridden in a derived class, removes the individual isolated store and all contained data. </summary> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorage.Scope"> <summary> Gets an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> enumeration value specifying the scope used to isolate the store. </summary> <returns> A bitwise combination of <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values specifying the scope used to isolate the store. </returns> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorage.SeparatorExternal"> <summary> Gets a backslash character that can be used in a directory string. When overridden in a derived class, another character might be returned. </summary> <returns> The default implementation returns the '\' (backslash) character. </returns> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorage.SeparatorInternal"> <summary> Gets a period character that can be used in a directory string. When overridden in a derived class, another character might be returned. </summary> <returns> The default implementation returns the '.' (period) character. </returns> </member> <member name="T:System.IO.IsolatedStorage.IsolatedStorageException"> <summary> The exception that is thrown when an operation in isolated storage fails. </summary> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageException" /> class with default properties. </summary> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.IO.IsolatedStorage.IsolatedStorageFile"> <summary> Represents an isolated storage area containing files and directories. </summary> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.Close"> <summary> Closes a store previously opened with <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Type,System.Type)" />, <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForAssembly" />, or <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForDomain" />. </summary> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.CreateDirectory(System.String)"> <summary> Creates a directory in the isolated storage scope. </summary> <param name="dir"> The relative path of the directory to create within the isolated storage scope. </param> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The current code has insufficient permissions to create isolated storage directory. </exception> <exception cref="T:System.ArgumentNullException"> The directory path is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorageFile.CurrentSize"> <summary> Gets the current size of the isolated storage. </summary> <returns> The total number of bytes of storage currently in use within the isolated storage scope. </returns> <exception cref="T:System.InvalidOperationException"> The property is unavailable. The current store has a roaming scope or is not open. </exception> <exception cref="T:System.ObjectDisposedException"> The current object size is undefined. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.DeleteDirectory(System.String)"> <summary> Deletes a directory in the isolated storage scope. </summary> <param name="dir"> The relative path of the directory to delete within the isolated storage scope. </param> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The directory could not be deleted. </exception> <exception cref="T:System.ArgumentNullException"> The directory path was null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.DeleteFile(System.String)"> <summary> Deletes a file in the isolated storage scope. </summary> <param name="file"> The relative path of the file to delete within the isolated storage scope. </param> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The target file is open or the path is incorrect. </exception> <exception cref="T:System.ArgumentNullException"> The file path is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.Dispose"> <summary> Releases all resources used by the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" />. </summary> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetDirectoryNames(System.String)"> <summary> Enumerates directories in an isolated storage scope that match a given pattern. </summary> <returns> An <see cref="T:System.Array" /> of the relative paths of directories in the isolated storage scope that match <paramref name="searchPattern" />. A zero-length array specifies that there are no directories that match. </returns> <param name="searchPattern"> A search pattern. Both single-character ("?") and multi-character ("*") wildcards are supported. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="searchPattern" /> was null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetEnumerator(System.IO.IsolatedStorage.IsolatedStorageScope)"> <summary> Gets the enumerator for the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> stores within an isolated storage scope. </summary> <returns> Enumerator for the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> stores within the specified isolated storage scope. </returns> <param name="scope"> Represents the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> for which to return isolated stores. User and User|Roaming are the only IsolatedStorageScope combinations supported. </param> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetFileNames(System.String)"> <summary> Enumerates files in isolated storage scope that match a given pattern. </summary> <returns> An <see cref="T:System.Array" /> of relative paths of files in the isolated storage scope that match <paramref name="searchPattern" />. A zero-length array specifies that there are no files that match. </returns> <param name="searchPattern"> A search pattern. Both single-character ("?") and multi-character ("*") wildcards are supported. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="searchPattern" /> was null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetMachineStoreForApplication"> <summary> Obtains machine-scoped isolated storage corresponding to the calling code's application identity. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> object corresponding to the isolated storage scope based on the calling code's application identity. </returns> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetMachineStoreForAssembly"> <summary> Obtains machine-scoped isolated storage corresponding to the calling code's assembly identity. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> object corresponding to the isolated storage scope based on the calling code's assembly identity. </returns> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetMachineStoreForDomain"> <summary> Obtains machine-scoped isolated storage corresponding to the application domain identity and the assembly identity. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> object corresponding to the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" />, based on a combination of the application domain identity and the assembly identity. </returns> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The store failed to open. -or- The assembly specified has insufficient permissions to create isolated stores. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Object)"> <summary> Obtains isolated storage corresponding to the given application identity. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> object representing the parameters. </returns> <param name="scope"> A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values. </param> <param name="applicationIdentity"> An <see cref="T:System.Object" /> that contains evidence for the application identity. </param> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="applicationEvidence" /> identity has not been passed in. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="scope" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Object,System.Object)"> <summary> Obtains the isolated storage corresponding to the given application domain and assembly evidence objects. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> representing the parameters. </returns> <param name="scope"> A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values. </param> <param name="domainIdentity"> An <see cref="T:System.Object" /> that contains evidence for the application domain identity. </param> <param name="assemblyIdentity"> An <see cref="T:System.Object" /> that contains evidence for the code assembly identity. </param> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <exception cref="T:System.ArgumentNullException"> Neither the <paramref name="domainIdentity" /> nor <paramref name="assemblyIdentity" /> have been passed in. This verifies that the correct constructor is being used. -or- Either <paramref name="domainIdentity" /> or <paramref name="assemblyIdentity" /> are null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="scope" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Security.Policy.Evidence,System.Type,System.Security.Policy.Evidence,System.Type)"> <summary> Obtains isolated storage corresponding to the given application domain and the assembly evidence objects and types. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> object representing the parameters. </returns> <param name="scope"> A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values. </param> <param name="domainEvidence"> An <see cref="T:System.Security.Policy.Evidence" /> object containing the application domain identity. </param> <param name="domainEvidenceType"> The identity <see cref="T:System.Type" /> to choose from the application domain evidence. </param> <param name="assemblyEvidence"> An <see cref="T:System.Security.Policy.Evidence" /> object containing the code assembly identity. </param> <param name="assemblyEvidenceType"> The identity <see cref="T:System.Type" /> to choose from the application code assembly evidence. </param> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="domainEvidence" /> or <paramref name="assemblyEvidence" /> identity has not been passed in. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="scope" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Type)"> <summary> Obtains isolated storage corresponding to the isolation scope and the application identity object. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> object representing the parameters. </returns> <param name="scope"> A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values. </param> <param name="applicationEvidenceType"> An <see cref="T:System.Security.Policy.Evidence" /> object containing the application identity. </param> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="domainEvidence" /> or <paramref name="assemblyEvidence" /> identity has not been passed in. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="scope" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Type,System.Type)"> <summary> Obtains isolated storage corresponding to the isolated storage scope given the application domain and assembly evidence types. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> object representing the parameters. </returns> <param name="scope"> A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values. </param> <param name="domainEvidenceType"> The type of the <see cref="T:System.Security.Policy.Evidence" /> that you can chose from the list of <see cref="T:System.Security.Policy.Evidence" /> present in the domain of the calling application. null lets the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object choose the evidence. </param> <param name="assemblyEvidenceType"> The type of the <see cref="T:System.Security.Policy.Evidence" /> that you can chose from the list of <see cref="T:System.Security.Policy.Evidence" /> present in the domain of the calling application. null lets the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object choose the evidence. </param> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="scope" /> is invalid. </exception> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The evidence type provided is missing in the assembly Evidence list. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForApplication"> <summary> Obtains user-scoped isolated storage corresponding to the calling code's application identity. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> object corresponding to the isolated storage scope based on the calling code's assembly identity. </returns> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForAssembly"> <summary> Obtains user-scoped isolated storage corresponding to the calling code's assembly identity. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> object corresponding to the isolated storage scope based on the calling code's assembly identity. </returns> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForDomain"> <summary> Obtains user-scoped isolated storage corresponding to the application domain identity and assembly identity. </summary> <returns> An <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> object corresponding to the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" />, based on a combination of the application domain identity and the assembly identity. </returns> <exception cref="T:System.Security.SecurityException"> Sufficient isolated storage permissions have not been granted. </exception> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The store failed to open. -or- The assembly specified has insufficient permissions to create isolated stores. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorageFile.MaximumSize"> <summary> Gets a value representing the maximum amount of space available for isolated storage within the limits established by the quota. </summary> <returns> The limit of isolated storage space in bytes. </returns> <exception cref="T:System.InvalidOperationException"> The property is unavailable. <see cref="P:System.IO.IsolatedStorage.IsolatedStorageFile.MaximumSize" /> cannot be determined without evidence from the assembly's creation. The evidence could not be determined when the object was created. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.Remove"> <summary> Removes the isolated storage scope and all its contents. </summary> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The isolated store cannot be deleted. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.Remove(System.IO.IsolatedStorage.IsolatedStorageScope)"> <summary> Removes the specified isolated storage scope for all identities. </summary> <param name="scope"> A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values. </param> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The isolated store cannot be removed. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.IsolatedStorageFilePermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.IO.IsolatedStorage.IsolatedStorageFileStream"> <summary> Exposes a file within isolated storage. </summary> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode)"> <summary> Initializes a new instance of an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object giving access to the file designated by <paramref name="path" /> in the specified <paramref name="mode" />. </summary> <param name="path"> The relative path of the file within isolated storage. </param> <param name="mode"> One of the <see cref="T:System.IO.FileMode" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> is badly formed. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The directory in <paramref name="path" /> does not exist. </exception> <exception cref="T:System.IO.FileNotFoundException"> No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" /></exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, with the kind of <paramref name="access" /> requested. </summary> <param name="path"> The relative path of the file within isolated storage. </param> <param name="mode"> One of the <see cref="T:System.IO.FileMode" /> values. </param> <param name="access"> A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> is badly formed. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, with the specified file <paramref name="access" />, using the file sharing mode specified by <paramref name="share" />. </summary> <param name="path"> The relative path of the file within isolated storage. </param> <param name="mode"> One of the <see cref="T:System.IO.FileMode" /> values. </param> <param name="access"> A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values. </param> <param name="share"> A bitwise combination of the <see cref="T:System.IO.FileShare" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> is badly formed. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, with the specified file <paramref name="access" />, using the file sharing mode specified by <paramref name="share" />, with the <paramref name="buffersize" /> specified. </summary> <param name="path"> The relative path of the file within isolated storage. </param> <param name="mode"> One of the <see cref="T:System.IO.FileMode" /> values. </param> <param name="access"> A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values. </param> <param name="share"> A bitwise combination of the <see cref="T:System.IO.FileShare" /> values. </param> <param name="bufferSize"> The <see cref="T:System.IO.FileStream" /> buffer size. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> is badly formed. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.IO.IsolatedStorage.IsolatedStorageFile)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, with the specified file <paramref name="access" />, using the file sharing mode specified by <paramref name="share" />, with the <paramref name="buffersize" /> specified, and in the context of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> specified by <paramref name="isf" />. </summary> <param name="path"> The relative path of the file within isolated storage. </param> <param name="mode"> One of the <see cref="T:System.IO.FileMode" /> values. </param> <param name="access"> A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values. </param> <param name="share"> A bitwise combination of the <see cref="T:System.IO.FileShare" /> values </param> <param name="bufferSize"> The <see cref="T:System.IO.FileStream" /> buffer size. </param> <param name="isf"> The <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> in which to open the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" />. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> is badly formed. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />. </exception> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> <paramref name="isf" /> does not have a quota. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.IO.IsolatedStorage.IsolatedStorageFile)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, with the specified file <paramref name="access" />, using the file sharing mode specified by <paramref name="share" />, and in the context of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> specified by <paramref name="isf" />. </summary> <param name="path"> The relative path of the file within isolated storage. </param> <param name="mode"> One of the <see cref="T:System.IO.FileMode" /> values. </param> <param name="access"> A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values. </param> <param name="share"> A bitwise combination of the <see cref="T:System.IO.FileShare" /> values. </param> <param name="isf"> The <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> in which to open the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" />. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> is badly formed. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />. </exception> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> <paramref name="isf" /> does not have a quota. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.IsolatedStorage.IsolatedStorageFile)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" /> in the specified <paramref name="mode" />, with the specified file <paramref name="access" />, and in the context of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> specified by <paramref name="isf" />. </summary> <param name="path"> The relative path of the file within isolated storage. </param> <param name="mode"> One of the <see cref="T:System.IO.FileMode" /> values. </param> <param name="access"> A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values. </param> <param name="isf"> The <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> in which to open the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" />. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> is badly formed. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />. </exception> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> <paramref name="isf" /> does not have a quota. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.IsolatedStorage.IsolatedStorageFile)"> <summary> Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, and in the context of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> specified by <paramref name="isf" />. </summary> <param name="path"> The relative path of the file within isolated storage. </param> <param name="mode"> One of the <see cref="T:System.IO.FileMode" /> values. </param> <param name="isf"> The <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> in which to open the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" />. </param> <exception cref="T:System.ArgumentException"> The <paramref name="path" /> is badly formed. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />. </exception> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> <paramref name="isf" /> does not have a quota. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)"> <summary> Begins an asynchronous read. </summary> <returns> An <see cref="T:System.IAsyncResult" /> object that represents the asynchronous read, which is possibly still pending. This <see cref="T:System.IAsyncResult" /> must be passed to this stream's <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.EndRead(System.IAsyncResult)" /> method to determine how many bytes were read. This can be done either by the same code that called <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> or in a callback passed to <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" />. </returns> <param name="buffer"> The buffer to read data into. </param> <param name="offset"> The byte offset in <paramref name="buffer" /> at which to begin reading. </param> <param name="numBytes"> The maximum number of bytes to read. </param> <param name="userCallback"> The method to call when the asynchronous read operation is completed. This parameter is optional. </param> <param name="stateObject"> The status of the asynchronous read. </param> <exception cref="T:System.IO.IOException"> An asynchronous read was attempted past the end of the file. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)"> <summary> Begins an asynchronous write. </summary> <returns> An <see cref="T:System.IAsyncResult" /> that represents the asynchronous write, which is possibly still pending. This <see cref="T:System.IAsyncResult" /> must be passed to this stream's <see cref="M:System.IO.Stream.EndWrite(System.IAsyncResult)" /> method to ensure that the write is complete, then frees resources appropriately. This can be done either by the same code that called <see cref="M:System.IO.Stream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> or in a callback passed to <see cref="M:System.IO.Stream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" />. </returns> <param name="buffer"> The buffer to write data to. </param> <param name="offset"> The byte offset in <paramref name="buffer" /> at which to begin writing. </param> <param name="numBytes"> The maximum number of bytes to write. </param> <param name="userCallback"> The method to call when the asynchronous write operation is completed. This parameter is optional. </param> <param name="stateObject"> The status of the asynchronous write. </param> <exception cref="T:System.IO.IOException"> An asynchronous write was attempted past the end of the file. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.CanRead"> <summary> Gets a Boolean value indicating whether the file can be read. </summary> <returns>true if an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object can be read; otherwise, false. </returns> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.CanSeek"> <summary> Gets a Boolean value indicating whether seek operations are supported. </summary> <returns>true if an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object supports seek operations; otherwise, false. </returns> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.CanWrite"> <summary> Gets a Boolean value indicating whether you can write to the file. </summary> <returns>true if an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object can be written; otherwise, false. </returns> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources </param> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.EndRead(System.IAsyncResult)"> <summary> Ends a pending asynchronous read request. </summary> <returns> The number of bytes read from the stream, between zero and the number of requested bytes. Streams will only return zero at the end of the stream. Otherwise, they will block until at least one byte is available. </returns> <param name="asyncResult"> The pending asynchronous request. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="asyncResult" /> is null. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.EndWrite(System.IAsyncResult)"> <summary> Ends an asynchronous write. </summary> <param name="asyncResult"> The pending asynchronous I/O request to end. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="asyncResult" /> parameter is null. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Flush"> <summary> Updates the file with the current state of the buffer then clears the buffer. </summary> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.Handle"> <summary> Gets the file handle for the file that the current <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object encapsulates. Accessing this property is not permitted on an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object, and throws an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageException" />. </summary> <returns> The file handle for the file that the current <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object encapsulates. </returns> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The <see cref="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.Handle" /> property always generates this exception. </exception> <exception cref="F:System.Security.Permissions.SecurityAction.LinkDemand"> for full trust for the immediate caller. This member cannot be used by partially trusted code. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.IsAsync"> <summary> Gets a Boolean value indicating whether the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object was opened asynchronously or synchronously. </summary> <returns>true if the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object supports asynchronous access; otherwise, false. </returns> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.Length"> <summary> Gets the length of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object. </summary> <returns> The length of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object in bytes. </returns> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.Position"> <summary> Gets or sets the current position of the current <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object. </summary> <returns> The current position of this <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The position cannot be set to a negative number. </exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Read(System.Byte[],System.Int32,System.Int32)"> <summary> Copies bytes from the current buffered <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object to an array. </summary> <returns> The total number of bytes read into the <paramref name="buffer" />. This can be less than the number of bytes requested if that many bytes are not currently available, or zero if the end of the stream is reached. </returns> <param name="buffer"> The buffer to read. </param> <param name="offset"> The offset in the buffer at which to begin writing. </param> <param name="count"> The maximum number of bytes to read. </param> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.ReadByte"> <summary> Reads a single byte from the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object in isolated storage. </summary> <returns> The 8-bit unsigned integer value read from the isolated storage file. </returns> </member> <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.SafeFileHandle"> <summary> Gets a <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle" /> object that represents the operating system file handle for the file that the current <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object encapsulates. </summary> <returns> A <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle" /> object that represents the operating system file handle for the file that the current <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object encapsulates. </returns> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The <see cref="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.SafeFileHandle" /> property always generates this exception. </exception> <exception cref="F:System.Security.Permissions.SecurityAction.LinkDemand"> for full trust for the immediate caller. This member cannot be used by partially trusted code. </exception> <exception cref="F:System.Security.Permissions.SecurityAction.InheritanceDemand"> for full trust for inheritors. This class cannot be inherited by partially trusted code. Associated enumeration: <see cref="F:System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode" /></exception> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Seek(System.Int64,System.IO.SeekOrigin)"> <summary> Sets the current position of this <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object to the specified value. </summary> <returns> The new position in the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object. </returns> <param name="offset"> The new position of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object. </param> <param name="origin"> One of the <see cref="T:System.IO.SeekOrigin" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="origin" /> must be one of the <see cref="T:System.IO.SeekOrigin" /> values. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.SetLength(System.Int64)"> <summary> Sets the length of this <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object to the specified <paramref name="value" />. </summary> <param name="value"> The new length of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Write(System.Byte[],System.Int32,System.Int32)"> <summary> Writes a block of bytes to the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object using data read from a byte array. </summary> <param name="buffer"> The buffer to write. </param> <param name="offset"> The byte offset in buffer from which to begin. </param> <param name="count"> The maximum number of bytes to write. </param> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The write attempt exceeds the quota for the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.WriteByte(System.Byte)"> <summary> Writes a single byte to the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object. </summary> <param name="value"> The byte value to write to the isolated storage file. </param> <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException"> The write attempt exceeds the quota for the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.IO.IsolatedStorage.IsolatedStorageScope"> <summary> Enumerates the levels of isolated storage scope that are supported by <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" />. </summary> </member> <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.None"> <summary> No isolated storage usage. </summary> </member> <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.User"> <summary> Isolated storage scoped by user identity. </summary> </member> <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.Domain"> <summary> Isolated storage scoped to the application domain identity. </summary> </member> <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.Assembly"> <summary> Isolated storage scoped to the identity of the assembly. </summary> </member> <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.Roaming"> <summary> The isolated store can be placed in a location on the file system that might roam (if roaming user data is enabled on the underlying operating system). </summary> </member> <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.Machine"> <summary> Isolated storage scoped to the machine. </summary> </member> <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.Application"> <summary> Isolated storage scoped to the application. </summary> </member> <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Close"> <summary> Releases resources associated with the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object. </summary> </member> <member name="T:System.Reflection.AmbiguousMatchException"> <summary> The exception that is thrown when binding to a member results in more than one member matching the binding criteria. This class cannot be inherited. </summary> </member> <member name="M:System.Reflection.AmbiguousMatchException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AmbiguousMatchException" /> class with an empty message string and the root cause exception set to null. </summary> </member> <member name="M:System.Reflection.AmbiguousMatchException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AmbiguousMatchException" /> class with its message string set to the given message and the root cause exception set to null. </summary> <param name="message"> A string indicating the reason this exception was thrown. </param> </member> <member name="M:System.Reflection.AmbiguousMatchException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AmbiguousMatchException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Reflection.Assembly"> <summary> Represents an assembly, which is a reusable, versionable, and self-describing building block of a common language runtime application. </summary> </member> <member name="P:System.Reflection.Assembly.CodeBase"> <summary> Gets the location of the assembly as specified originally, for example, in an <see cref="T:System.Reflection.AssemblyName" /> object. </summary> <returns> The location of the assembly as specified originally. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.CreateInstance(System.String)"> <summary> Locates the specified type from this assembly and creates an instance of it using the system activator, using case-sensitive search. </summary> <returns> An instance of <see cref="T:System.Object" /> representing the type, with culture, arguments, binder, and activation attributes set to null, and <see cref="T:System.Reflection.BindingFlags" /> set to Public or Instance, or null if <paramref name="typeName" /> is not found. </returns> <param name="typeName"> The <see cref="P:System.Type.FullName" /> of the type to locate. </param> <exception cref="T:System.ArgumentException"> <paramref name="typeName" /> is an empty string ("") or a string beginning with a null character. -or- The current assembly was loaded into the reflection-only context. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="typeName" /> requires a dependent assembly that could not be found. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="typeName" /> requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and <paramref name="typeName" /> requires a dependent assembly that was not preloaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="typeName" /> requires a dependent assembly, but the file is not a valid assembly. -or- <paramref name="typeName" /> requires a dependent assembly which was compiled for a version of the runtime later than the currently loaded version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.CreateInstance(System.String,System.Boolean)"> <summary> Locates the specified type from this assembly and creates an instance of it using the system activator, with optional case-sensitive search. </summary> <returns> An instance of <see cref="T:System.Object" /> representing the type, with culture, arguments, binder, and activation attributes set to null, and <see cref="T:System.Reflection.BindingFlags" /> set to Public or Instance, or null if <paramref name="typeName" /> is not found. </returns> <param name="typeName"> The <see cref="P:System.Type.FullName" /> of the type to locate. </param> <param name="ignoreCase">true to ignore the case of the type name; otherwise, false. </param> <exception cref="T:System.ArgumentException"> <paramref name="typeName" /> is an empty string ("") or a string beginning with a null character. -or- The current assembly was loaded into the reflection-only context. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="typeName" /> requires a dependent assembly that could not be found. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="typeName" /> requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and <paramref name="typeName" /> requires a dependent assembly that was not preloaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="typeName" /> requires a dependent assembly, but the file is not a valid assembly. -or- <paramref name="typeName" /> requires a dependent assembly which was compiled for a version of the runtime later than the currently loaded version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.CreateInstance(System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])"> <summary> Locates the specified type from this assembly and creates an instance of it using the system activator, with optional case-sensitive search and having the specified culture, arguments, and binding and activation attributes. </summary> <returns> An instance of Object representing the type and matching the specified criteria, or null if <paramref name="typeName" /> is not found. </returns> <param name="typeName"> The <see cref="P:System.Type.FullName" /> of the type to locate. </param> <param name="ignoreCase">true to ignore the case of the type name; otherwise, false. </param> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> An array of type Object containing the arguments to be passed to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to be invoked. If the default constructor is desired, <paramref name="args" /> must be an empty array or null. </param> <param name="culture"> An instance of CultureInfo used to govern the coercion of types. If this is null, the CultureInfo for the current thread is used. (This is necessary to convert a String that represents 1000 to a Double value, for example, since 1000 is represented differently by different cultures.) </param> <param name="activationAttributes"> An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. The <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> specifies the URL that is required to activate a remote object. For a detailed description of client-activated objects, see Client Activation. </param> <exception cref="T:System.ArgumentException"> <paramref name="typeName" /> is an empty string ("") or a string beginning with a null character. -or- The current assembly was loaded into the reflection-only context. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="typeName" /> is null. </exception> <exception cref="T:System.MissingMethodException"> No matching constructor was found. </exception> <exception cref="T:System.NotSupportedException"> A non-empty activation attributes array is passed to a type that does not inherit from <see cref="T:System.MarshalByRefObject" />. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="typeName" /> requires a dependent assembly that could not be found. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="typeName" /> requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and <paramref name="typeName" /> requires a dependent assembly that was not preloaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="typeName" /> requires a dependent assembly, but the file is not a valid assembly. -or- <paramref name="typeName" /> requires a dependent assembly which was compiled for a version of the runtime later than the currently loaded version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.CreateQualifiedName(System.String,System.String)"> <summary> Creates the name of a type qualified by the display name of its assembly. </summary> <returns> A String that is the full name of the type qualified by the display name of the assembly. </returns> <param name="assemblyName"> The display name of an assembly. </param> <param name="typeName"> The full name of a type. </param> </member> <member name="P:System.Reflection.Assembly.EntryPoint"> <summary> Gets the entry point of this assembly. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object that represents the entry point of this assembly. If no entry point is found (for example, the assembly is a DLL), null is returned. </returns> </member> <member name="P:System.Reflection.Assembly.EscapedCodeBase"> <summary> Gets the URI, including escape characters, that represents the codebase. </summary> <returns> A URI with escape characters. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Reflection.Assembly.Evidence"> <summary> Gets the evidence for this assembly. </summary> <returns> An Evidence object for this assembly. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="P:System.Reflection.Assembly.FullName"> <summary> Gets the display name of the assembly. </summary> <returns> The display name of the assembly. </returns> </member> <member name="M:System.Reflection.Assembly.GetAssembly(System.Type)"> <summary> Gets the currently loaded assembly in which the specified class is defined. </summary> <returns> The assembly in which the specified class is defined. </returns> <param name="type"> A <see cref="T:System.Type" /> object representing a class in the assembly that will be returned. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> </member> <member name="M:System.Reflection.Assembly.GetCallingAssembly"> <summary> Returns the <see cref="T:System.Reflection.Assembly" /> of the method that invoked the currently executing method. </summary> <returns> The Assembly object of the method that invoked the currently executing method. </returns> </member> <member name="M:System.Reflection.Assembly.GetCustomAttributes(System.Boolean)"> <summary> Gets all the custom attributes for this assembly. </summary> <returns> An array of type Object containing the custom attributes for this assembly. </returns> <param name="inherit"> This argument is ignored for objects of type <see cref="T:System.Reflection.Assembly" />. </param> </member> <member name="M:System.Reflection.Assembly.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Gets the custom attributes for this assembly as specified by type. </summary> <returns> An array of type Object containing the custom attributes for this assembly as specified by <paramref name="attributeType" />. </returns> <param name="attributeType"> The <see cref="T:System.Type" /> for which the custom attributes are to be returned. </param> <param name="inherit"> This argument is ignored for objects of type <see cref="T:System.Reflection.Assembly" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not a runtime type. </exception> </member> <member name="M:System.Reflection.Assembly.GetEntryAssembly"> <summary> Gets the process executable in the default application domain. In other application domains, this is the first executable that was executed by <see cref="M:System.AppDomain.ExecuteAssembly(System.String)" />. </summary> <returns> The Assembly that is the process executable in the default application domain, or the first executable that was executed by <see cref="M:System.AppDomain.ExecuteAssembly(System.String)" />. Can return null when called from unmanaged code. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.GetExecutingAssembly"> <summary> Gets the assembly that contains the code that is currently executing. </summary> <returns> A <see cref="T:System.Reflection.Assembly" /> representing the assembly that contains the code that is currently executing. </returns> </member> <member name="M:System.Reflection.Assembly.GetExportedTypes"> <summary> Gets the public types defined in this assembly that are visible outside the assembly. </summary> <returns> An array of Type objects that represent the types defined in this assembly that are visible outside the assembly. </returns> </member> <member name="M:System.Reflection.Assembly.GetFile(System.String)"> <summary> Gets a <see cref="T:System.IO.FileStream" /> for the specified file in the file table of the manifest of this assembly. </summary> <returns> A <see cref="T:System.IO.FileStream" /> for the specified file, or null if the file is not found. </returns> <param name="name"> The name of the specified file. Do not include the path to the file. </param> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is an empty string (""). </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="name" /> was not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="name" /> is not a valid assembly. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.GetFiles"> <summary> Gets the files in the file table of an assembly manifest. </summary> <returns> An array of <see cref="T:System.IO.FileStream" /> objects. </returns> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.IO.FileNotFoundException"> A file was not found. </exception> <exception cref="T:System.BadImageFormatException"> A file was not a valid assembly. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.GetFiles(System.Boolean)"> <summary> Gets the files in the file table of an assembly manifest, specifying whether to include resource modules. </summary> <returns> An array of <see cref="T:System.IO.FileStream" /> objects. </returns> <param name="getResourceModules">true to include resource modules; otherwise, false. </param> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.IO.FileNotFoundException"> A file was not found. </exception> <exception cref="T:System.BadImageFormatException"> A file was not a valid assembly. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.GetLoadedModules"> <summary> Gets all the loaded modules that are part of this assembly. </summary> <returns> An array of modules. </returns> </member> <member name="M:System.Reflection.Assembly.GetLoadedModules(System.Boolean)"> <summary> Gets all the loaded modules that are part of this assembly, specifying whether to include resource modules. </summary> <returns> An array of modules. </returns> <param name="getResourceModules">true to include resource modules; otherwise, false. </param> </member> <member name="M:System.Reflection.Assembly.GetManifestResourceInfo(System.String)"> <summary> Returns information about how the given resource has been persisted. </summary> <returns> <see cref="T:System.Reflection.ManifestResourceInfo" /> populated with information about the resource's topology, or null if the resource is not found. </returns> <param name="resourceName"> The case-sensitive name of the resource. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="resourceName" /> is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="resourceName" /> parameter is an empty string (""). </exception> </member> <member name="M:System.Reflection.Assembly.GetManifestResourceNames"> <summary> Returns the names of all the resources in this assembly. </summary> <returns> An array of type String containing the names of all the resources. </returns> </member> <member name="M:System.Reflection.Assembly.GetManifestResourceStream(System.String)"> <summary> Loads the specified manifest resource from this assembly. </summary> <returns> A <see cref="T:System.IO.Stream" /> representing the manifest resource; null if no resources were specified during compilation, or if the resource is not visible to the caller. </returns> <param name="name"> The case-sensitive name of the manifest resource being requested. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is an empty string (""). </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="name" /> was not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="name" /> is not a valid assembly. </exception> </member> <member name="M:System.Reflection.Assembly.GetManifestResourceStream(System.Type,System.String)"> <summary> Loads the specified manifest resource, scoped by the namespace of the specified type, from this assembly. </summary> <returns> A <see cref="T:System.IO.Stream" /> representing the manifest resource; null if no resources were specified during compilation or if the resource is not visible to the caller. </returns> <param name="type"> The type whose namespace is used to scope the manifest resource name. </param> <param name="name"> The case-sensitive name of the manifest resource being requested. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is an empty string (""). </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="name" /> was not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="name" /> is not a valid assembly. </exception> </member> <member name="M:System.Reflection.Assembly.GetModule(System.String)"> <summary> Gets the specified module in this assembly. </summary> <returns> The module being requested, or null if the module is not found. </returns> <param name="name"> The name of the module being requested. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is an empty string (""). </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="name" /> was not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="name" /> is not a valid assembly. </exception> </member> <member name="M:System.Reflection.Assembly.GetModules"> <summary> Gets all the modules that are part of this assembly. </summary> <returns> An array of modules. </returns> <exception cref="T:System.IO.FileNotFoundException"> The module to be loaded does not specify a file name extension. </exception> </member> <member name="M:System.Reflection.Assembly.GetModules(System.Boolean)"> <summary> Gets all the modules that are part of this assembly, specifying whether to include resource modules. </summary> <returns> An array of modules. </returns> <param name="getResourceModules">true to include resource modules; otherwise, false. </param> </member> <member name="M:System.Reflection.Assembly.GetName"> <summary> Gets an <see cref="T:System.Reflection.AssemblyName" /> for this assembly. </summary> <returns> An <see cref="T:System.Reflection.AssemblyName" /> for this assembly. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.GetName(System.Boolean)"> <summary> Gets an <see cref="T:System.Reflection.AssemblyName" /> for this assembly, setting the codebase as specified by <paramref name="copiedName" />. </summary> <returns> An <see cref="T:System.Reflection.AssemblyName" /> for this assembly. </returns> <param name="copiedName">true to set the <see cref="P:System.Reflection.Assembly.CodeBase" /> to the location of the assembly after it was shadow copied; false to set <see cref="P:System.Reflection.Assembly.CodeBase" /> to the original location. </param> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Gets serialization information with all of the data needed to reinstantiate this assembly. </summary> <param name="info"> The object to be populated with serialization information. </param> <param name="context"> The destination context of the serialization. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.GetReferencedAssemblies"> <summary> Gets the <see cref="T:System.Reflection.AssemblyName" /> objects for all the assemblies referenced by this assembly. </summary> <returns> An array of type <see cref="T:System.Reflection.AssemblyName" /> containing all the assemblies referenced by this assembly. </returns> </member> <member name="M:System.Reflection.Assembly.GetSatelliteAssembly(System.Globalization.CultureInfo)"> <summary> Gets the satellite assembly for the specified culture. </summary> <returns> The specified satellite assembly. </returns> <param name="culture"> The specified culture. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The assembly cannot be found. </exception> <exception cref="T:System.IO.FileLoadException"> The satellite assembly with a matching file name was found, but the CultureInfo did not match the one specified. </exception> <exception cref="T:System.BadImageFormatException"> The satellite assembly is not a valid assembly. </exception> </member> <member name="M:System.Reflection.Assembly.GetSatelliteAssembly(System.Globalization.CultureInfo,System.Version)"> <summary> Gets the specified version of the satellite assembly for the specified culture. </summary> <returns> The specified satellite assembly. </returns> <param name="culture"> The specified culture. </param> <param name="version"> The version of the satellite assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="culture" /> is null. </exception> <exception cref="T:System.IO.FileLoadException"> The satellite assembly with a matching file name was found, but the CultureInfo or the version did not match the one specified. </exception> <exception cref="T:System.IO.FileNotFoundException"> The assembly cannot be found. </exception> <exception cref="T:System.BadImageFormatException"> The satellite assembly is not a valid assembly. </exception> </member> <member name="M:System.Reflection.Assembly.GetType(System.String)"> <summary> Gets the <see cref="T:System.Type" /> object with the specified name in the assembly instance. </summary> <returns> A <see cref="T:System.Type" /> object that represents the specified class, or null if the class is not found. </returns> <param name="name"> The full name of the type. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is invalid. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="name" /> requires a dependent assembly that could not be found. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="name" /> requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and <paramref name="name" /> requires a dependent assembly that was not preloaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="name" /> requires a dependent assembly, but the file is not a valid assembly. -or- <paramref name="name" /> requires a dependent assembly which was compiled for a version of the runtime later than the currently loaded version. </exception> </member> <member name="M:System.Reflection.Assembly.GetType(System.String,System.Boolean)"> <summary> Gets the <see cref="T:System.Type" /> object with the specified name in the assembly instance and optionally throws an exception if the type is not found. </summary> <returns> A <see cref="T:System.Type" /> object that represents the specified class. </returns> <param name="name"> The full name of the type. </param> <param name="throwOnError">true to throw an exception if the type is not found; false to return null. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is invalid. -or- The length of <paramref name="name" /> exceeds 1024 characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="throwOnError" /> is true, and the type cannot be found. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="name" /> requires a dependent assembly that could not be found. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="name" /> requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and <paramref name="name" /> requires a dependent assembly that was not preloaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="name" /> requires a dependent assembly, but the file is not a valid assembly. -or- <paramref name="name" /> requires a dependent assembly which was compiled for a version of the runtime later than the currently loaded version. </exception> </member> <member name="M:System.Reflection.Assembly.GetType(System.String,System.Boolean,System.Boolean)"> <summary> Gets the <see cref="T:System.Type" /> object with the specified name in the assembly instance, with the options of ignoring the case, and of throwing an exception if the type is not found. </summary> <returns> A <see cref="T:System.Type" /> object that represents the specified class. </returns> <param name="name"> The full name of the type. </param> <param name="throwOnError">true to throw an exception if the type is not found; false to return null. </param> <param name="ignoreCase">true to ignore the case of the type name; otherwise, false. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is invalid. -or- The length of <paramref name="name" /> exceeds 1024 characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="throwOnError" /> is true, and the type cannot be found. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="name" /> requires a dependent assembly that could not be found. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="name" /> requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and <paramref name="name" /> requires a dependent assembly that was not preloaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="name" /> requires a dependent assembly, but the file is not a valid assembly. -or- <paramref name="name" /> requires a dependent assembly which was compiled for a version of the runtime later than the currently loaded version. </exception> </member> <member name="M:System.Reflection.Assembly.GetTypes"> <summary> Gets the types defined in this assembly. </summary> <returns> An array of type <see cref="T:System.Type" /> containing objects for all the types defined in this assembly. </returns> <exception cref="T:System.Reflection.ReflectionTypeLoadException"> The assembly contains one or more types that cannot be loaded. The array returned by the <see cref="P:System.Reflection.ReflectionTypeLoadException.Types" /> property of this exception contains a <see cref="T:System.Type" /> object for each type that was loaded and null for each type that could not be loaded, while the <see cref="P:System.Reflection.ReflectionTypeLoadException.LoaderExceptions" /> property contains an exception for each type that could not be loaded. </exception> </member> <member name="P:System.Reflection.Assembly.GlobalAssemblyCache"> <summary> Gets a value indicating whether the assembly was loaded from the global assembly cache. </summary> <returns>true if the assembly was loaded from the global assembly cache; otherwise, false. </returns> </member> <member name="P:System.Reflection.Assembly.HostContext"> <summary> Gets the host context with which the assembly was loaded. </summary> <returns> An <see cref="T:System.Int64" /> value that indicates the host context with which the assembly was loaded, if any. </returns> </member> <member name="P:System.Reflection.Assembly.ImageRuntimeVersion"> <summary> Gets a string representing the version of the common language runtime (CLR) saved in the file containing the manifest. </summary> <returns> A string representing the CLR version folder name. This is not a full path. </returns> </member> <member name="M:System.Reflection.Assembly.IsDefined(System.Type,System.Boolean)"> <summary> Indicates whether or not a specified attribute has been applied to the assembly. </summary> <returns>true if the attribute has been applied to the assembly; otherwise, false. </returns> <param name="attributeType"> The <see cref="T:System.Type" /> of the attribute to be checked for this assembly. </param> <param name="inherit"> This argument is ignored for objects of this type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> uses an invalid type. </exception> </member> <member name="M:System.Reflection.Assembly.Load(System.Byte[])"> <summary> Loads the assembly with a common object file format (COFF)-based image containing an emitted assembly. The assembly is loaded into the domain of the caller. </summary> <returns> The loaded assembly. </returns> <param name="rawAssembly"> An array of type byte that is a COFF-based image containing an emitted assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rawAssembly" /> is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="rawAssembly" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="rawAssembly" /> was compiled with a later version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.Load(System.Byte[],System.Byte[])"> <summary> Loads the assembly with a common object file format (COFF)-based image containing an emitted assembly. </summary> <returns> The loaded assembly. </returns> <param name="rawAssembly"> An array of type byte that is a COFF-based image containing an emitted assembly. </param> <param name="rawSymbolStore"> An array of type byte containing the raw bytes representing the symbols for the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rawAssembly" /> is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="rawAssembly" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="rawAssembly" /> was compiled with a later version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.Load(System.Byte[],System.Byte[],System.Security.Policy.Evidence)"> <summary> Loads the assembly with a common object file format (COFF)-based image containing an emitted assembly. </summary> <returns> The loaded assembly. </returns> <param name="rawAssembly"> An array of type byte that is a COFF-based image containing an emitted assembly. </param> <param name="rawSymbolStore"> An array of type byte containing the raw bytes representing the symbols for the assembly. </param> <param name="securityEvidence"> Evidence for loading the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rawAssembly" /> is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="rawAssembly" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="rawAssembly" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.Load(System.Reflection.AssemblyName)"> <summary> Loads an assembly given its <see cref="T:System.Reflection.AssemblyName" />. </summary> <returns> The loaded assembly. </returns> <param name="assemblyRef"> The <see cref="T:System.Reflection.AssemblyName" /> object that describes the assembly to be loaded. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyRef" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyRef" /> is not found. </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyRef" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyRef" /> was compiled with a later version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence)"> <summary> Loads an assembly given its <see cref="T:System.Reflection.AssemblyName" />. The assembly is loaded into the domain of the caller using the supplied evidence. </summary> <returns> The loaded assembly. </returns> <param name="assemblyRef"> The <see cref="T:System.Reflection.AssemblyName" /> object that describes the assembly to be loaded. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyRef" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyRef" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyRef" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyRef" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different evidences. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.Load(System.String)"> <summary> Loads an assembly given the long form of its name. </summary> <returns> The loaded assembly. </returns> <param name="assemblyString"> The long form of the assembly name. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyString" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assemblyString" /> is a zero-length string. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyString" /> is not found. </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyString" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyString" /> was compiled with a later version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.Load(System.String,System.Security.Policy.Evidence)"> <summary> Loads an assembly given its display name, loading the assembly into the domain of the caller using the supplied evidence. </summary> <returns> The loaded assembly. </returns> <param name="assemblyString"> The display name of the assembly. </param> <param name="assemblySecurity"> Evidence for loading the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyString" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyString" /> is not found. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyString" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyString" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. -or- An assembly or module was loaded twice with two different evidences. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.LoadFile(System.String)"> <summary> Loads the contents of an assembly file on the specified path. </summary> <returns> The loaded assembly. </returns> <param name="path"> The path of the file to load. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> parameter is null. </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.IO.FileNotFoundException"> The <paramref name="path" /> parameter is an empty string ("") or does not exist. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="path" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="path" /> was compiled with a later version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.LoadFile(System.String,System.Security.Policy.Evidence)"> <summary> Loads an assembly given its path, loading the assembly into the domain of the caller using the supplied evidence. </summary> <returns> The loaded assembly. </returns> <param name="path"> The path of the assembly file. </param> <param name="securityEvidence"> Evidence for loading the assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> parameter is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The <paramref name="path" /> parameter is an empty string ("") or does not exist. </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="path" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="path" /> was compiled with a later version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.LoadFrom(System.String)"> <summary> Loads an assembly given its file name or path. </summary> <returns> The loaded assembly. </returns> <param name="assemblyFile"> The name or path of the file that contains the manifest of the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found, or the module you are trying to load does not specify a filename extension. </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.Security.SecurityException"> A codebase that does not start with "file://" was specified without the required <see cref="T:System.Net.WebPermission" />. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="assemblyFile" /> parameter is an empty string (""). </exception> <exception cref="T:System.IO.PathTooLongException"> The assembly name is longer than MAX_PATH characters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.LoadFrom(System.String,System.Security.Policy.Evidence)"> <summary> Loads an assembly given its file name or path and supplying security evidence. </summary> <returns> The loaded assembly. </returns> <param name="assemblyFile"> The name or path of the file that contains the manifest of the assembly. </param> <param name="securityEvidence"> Evidence for loading the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found, or the module you are trying to load does not specify a filename extension. </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. -or- The <paramref name="securityEvidence" /> is not ambiguous and is determined to be invalid. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.Security.SecurityException"> A codebase that does not start with "file://" was specified without the required <see cref="T:System.Net.WebPermission" />. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="assemblyFile" /> parameter is an empty string (""). </exception> <exception cref="T:System.IO.PathTooLongException"> The assembly name is longer than MAX_PATH characters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.LoadFrom(System.String,System.Security.Policy.Evidence,System.Byte[],System.Configuration.Assemblies.AssemblyHashAlgorithm)"> <summary> Loads an assembly given its file name or path, security evidence hash value, and hash algorithm. </summary> <returns> The loaded assembly. </returns> <param name="assemblyFile"> The name or path of the file that contains the manifest of the assembly. </param> <param name="securityEvidence"> Evidence for loading the assembly. </param> <param name="hashValue"> The value of the computed hash code. </param> <param name="hashAlgorithm"> The hash algorithm used for hashing files and for generating the strong name. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found, or the module you are trying to load does not specify a filename extension. </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. -or- The <paramref name="securityEvidence" /> is not ambiguous and is determined to be invalid. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.Security.SecurityException"> A codebase that does not start with "file://" was specified without the required <see cref="T:System.Net.WebPermission" />. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="assemblyFile" /> parameter is an empty string (""). </exception> <exception cref="T:System.IO.PathTooLongException"> The assembly name is longer than MAX_PATH characters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.LoadModule(System.String,System.Byte[])"> <summary> Loads the module, internal to this assembly, with a common object file format (COFF)-based image containing an emitted module, or a resource file. </summary> <returns> The loaded Module. </returns> <param name="moduleName"> Name of the module. Must correspond to a file name in this assembly's manifest. </param> <param name="rawModule"> A byte array that is a COFF-based image containing an emitted module, or a resource. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="moduleName" /> or <paramref name="rawModule" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="moduleName" /> does not match a file entry in this assembly's manifest. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="rawModule" /> is not a valid module. </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.LoadModule(System.String,System.Byte[],System.Byte[])"> <summary> Loads the module, internal to this assembly, with a common object file format (COFF)-based image containing an emitted module, or a resource file. The raw bytes representing the symbols for the module are also loaded. </summary> <returns> The loaded module. </returns> <param name="moduleName"> Name of the module. Must correspond to a file name in this assembly's manifest. </param> <param name="rawModule"> A byte array that is a COFF-based image containing an emitted module, or a resource. </param> <param name="rawSymbolStore"> A byte array containing the raw bytes representing the symbols for the module. Must be null if this is a resource file. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="moduleName" /> or <paramref name="rawModule" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="moduleName" /> does not match a file entry in this assembly's manifest. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="rawModule" /> is not a valid module. </exception> <exception cref="T:System.IO.FileLoadException"> A file that was found could not be loaded. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.LoadWithPartialName(System.String)"> <summary> Loads an assembly from the application directory or from the global assembly cache using a partial name. </summary> <returns> The loaded assembly. If <paramref name="partialName" /> is not found, this method returns null. </returns> <param name="partialName"> The display name of the assembly. </param> <exception cref="T:System.NullReferenceException"> The <paramref name="partialName" /> parameter is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="partialName" /> was compiled with a later version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.LoadWithPartialName(System.String,System.Security.Policy.Evidence)"> <summary> Loads an assembly from the application directory or from the global assembly cache using a partial name. The assembly is loaded into the domain of the caller using the supplied evidence. </summary> <returns> The loaded assembly. If <paramref name="partialName" /> is not found, this method returns null. </returns> <param name="partialName"> The display name of the assembly. </param> <param name="securityEvidence"> <see cref="T:System.Security.Policy.Evidence" /> for loading the assembly. </param> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different sets of evidence. </exception> <exception cref="T:System.NullReferenceException"> The <paramref name="partialName" /> parameter is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="partialName" /> was compiled with a later version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="P:System.Reflection.Assembly.Location"> <summary> Gets the path or UNC location of the loaded file that contains the manifest. </summary> <returns> The location of the loaded file that contains the manifest. If the loaded file was shadow-copied, the location is that of the file after being shadow-copied. If the assembly is loaded from a byte array, such as when using the <see cref="M:System.Reflection.Assembly.Load(System.Byte[])" /> method overload, the value returned is an empty string (""). </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Reflection.Assembly.ManifestModule"> <summary> Gets the module that contains the manifest for the current assembly. </summary> <returns> A <see cref="T:System.Reflection.Module" /> object representing the module that contains the manifest for the assembly. </returns> </member> <member name="E:System.Reflection.Assembly.ModuleResolve"> <summary> Occurs when the common language runtime class loader cannot resolve a reference to an internal module of an assembly through normal means. </summary> </member> <member name="P:System.Reflection.Assembly.ReflectionOnly"> <summary> Gets a <see cref="T:System.Boolean" /> value indicating whether this assembly was loaded into the reflection-only context. </summary> <returns>true if the assembly was loaded into the reflection-only context, rather than the execution context; otherwise, false. </returns> </member> <member name="M:System.Reflection.Assembly.ReflectionOnlyLoad(System.Byte[])"> <summary> Loads the assembly from a common object file format (COFF)-based image containing an emitted assembly. The assembly is loaded into the reflection-only context of the caller's application domain. </summary> <returns> An <see cref="T:System.Reflection.Assembly" /> object that represents the loaded assembly. </returns> <param name="rawAssembly"> An array of type byte that is a COFF-based image containing an emitted assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rawAssembly" /> is null. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="rawAssembly" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="rawAssembly" /> was compiled with a later version. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="rawAssembly" /> cannot be loaded. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.ReflectionOnlyLoad(System.String)"> <summary> Loads an assembly into the reflection-only context, given its display name. </summary> <returns> An <see cref="T:System.Reflection.Assembly" /> object that represents the loaded assembly. </returns> <param name="assemblyString"> The display name of the assembly, as returned by the <see cref="P:System.Reflection.AssemblyName.FullName" /> property. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyString" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assemblyString" /> is an empty string (""). </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyString" /> is not found. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="assemblyString" /> is found, but cannot be loaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyString" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyString" /> was compiled with a later version. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.ReflectionOnlyLoadFrom(System.String)"> <summary> Loads an assembly into the reflection-only context, given its path. </summary> <returns> An <see cref="T:System.Reflection.Assembly" /> object that represents the loaded assembly. </returns> <param name="assemblyFile"> The path of the file that contains the manifest of the assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found, or the module you are trying to load does not specify a file name extension. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="assemblyFile" /> is found, but could not be loaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version. </exception> <exception cref="T:System.Security.SecurityException"> A codebase that does not start with "file://" was specified without the required <see cref="T:System.Net.WebPermission" />. </exception> <exception cref="T:System.IO.PathTooLongException"> The assembly name is longer than MAX_PATH characters. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assemblyFile" /> is an empty string (""). </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Reflection.Assembly.System#Runtime#InteropServices#_Assembly#GetType"> <summary> Returns the type of the current instance. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Reflection.Assembly" /> type. </returns> </member> <member name="M:System.Reflection.Assembly.ToString"> <summary> Returns the full name of the assembly, also known as the display name. </summary> <returns> The full name of the assembly, or the class name if the full name of the assembly cannot be determined. </returns> </member> <member name="T:System.Reflection.AssemblyAlgorithmIdAttribute"> <summary> Specifies an algorithm to hash all files in an assembly. This class cannot be inherited. </summary> </member> <member name="M:System.Reflection.AssemblyAlgorithmIdAttribute.#ctor(System.Configuration.Assemblies.AssemblyHashAlgorithm)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyAlgorithmIdAttribute" /> class with the specified hash algorithm, using one of the members of <see cref="T:System.Configuration.Assemblies.AssemblyHashAlgorithm" /> to represent the hash algorithm. </summary> <param name="algorithmId"> A member of AssemblyHashAlgorithm that represents the hash algorithm. </param> </member> <member name="M:System.Reflection.AssemblyAlgorithmIdAttribute.#ctor(System.UInt32)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyAlgorithmIdAttribute" /> class with the specified hash algorithm, using an unsigned integer to represent the hash algorithm. </summary> <param name="algorithmId"> An unsigned integer representing the hash algorithm. </param> </member> <member name="P:System.Reflection.AssemblyAlgorithmIdAttribute.AlgorithmId"> <summary> Gets the hash algorithm of an assembly manifest's contents. </summary> <returns> An unsigned integer representing the assembly hash algorithm. </returns> </member> <member name="T:System.Reflection.AssemblyCompanyAttribute"> <summary> Defines a company name custom attribute for an assembly manifest. </summary> </member> <member name="M:System.Reflection.AssemblyCompanyAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyCompanyAttribute" /> class. </summary> <param name="company"> The company name information. </param> </member> <member name="P:System.Reflection.AssemblyCompanyAttribute.Company"> <summary> Gets company name information. </summary> <returns> A string containing the company name. </returns> </member> <member name="T:System.Reflection.AssemblyConfigurationAttribute"> <summary> Specifies the build configuration, such as retail or debug, for an assembly. </summary> </member> <member name="M:System.Reflection.AssemblyConfigurationAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyConfigurationAttribute" /> class. </summary> <param name="configuration"> The assembly configuration. </param> </member> <member name="P:System.Reflection.AssemblyConfigurationAttribute.Configuration"> <summary> Gets assembly configuration information. </summary> <returns> A string containing the assembly configuration information. </returns> </member> <member name="T:System.Reflection.AssemblyCopyrightAttribute"> <summary> Defines a copyright custom attribute for an assembly manifest. </summary> </member> <member name="M:System.Reflection.AssemblyCopyrightAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyCopyrightAttribute" /> class. </summary> <param name="copyright"> The copyright information. </param> </member> <member name="P:System.Reflection.AssemblyCopyrightAttribute.Copyright"> <summary> Gets copyright information. </summary> <returns> A string containing the copyright information. </returns> </member> <member name="T:System.Reflection.AssemblyCultureAttribute"> <summary> Specifies which culture the assembly supports. </summary> </member> <member name="M:System.Reflection.AssemblyCultureAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyCultureAttribute" /> class with the culture supported by the assembly being attributed. </summary> <param name="culture"> The culture supported by the attributed assembly. </param> </member> <member name="P:System.Reflection.AssemblyCultureAttribute.Culture"> <summary> Gets the supported culture of the attributed assembly. </summary> <returns> A string containing the name of the supported culture. </returns> </member> <member name="T:System.Reflection.AssemblyDefaultAliasAttribute"> <summary> Defines a friendly default alias for an assembly manifest. </summary> </member> <member name="M:System.Reflection.AssemblyDefaultAliasAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyDefaultAliasAttribute" /> class. </summary> <param name="defaultAlias"> The assembly default alias information. </param> </member> <member name="P:System.Reflection.AssemblyDefaultAliasAttribute.DefaultAlias"> <summary> Gets default alias information. </summary> <returns> A string containing the default alias information. </returns> </member> <member name="T:System.Reflection.AssemblyDelaySignAttribute"> <summary> Specifies that the assembly is not fully signed when created. </summary> </member> <member name="M:System.Reflection.AssemblyDelaySignAttribute.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyDelaySignAttribute" /> class. </summary> <param name="delaySign">true if the feature this attribute represents is activated; otherwise, false. </param> </member> <member name="P:System.Reflection.AssemblyDelaySignAttribute.DelaySign"> <summary> Gets a value indicating the state of the attribute. </summary> <returns>true if this assembly has been built as delay-signed; otherwise, false. </returns> </member> <member name="T:System.Reflection.AssemblyDescriptionAttribute"> <summary> Provides a text description for an assembly. </summary> </member> <member name="M:System.Reflection.AssemblyDescriptionAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyDescriptionAttribute" /> class. </summary> <param name="description"> The assembly description. </param> </member> <member name="P:System.Reflection.AssemblyDescriptionAttribute.Description"> <summary> Gets assembly description information. </summary> <returns> A string containing the assembly description. </returns> </member> <member name="T:System.Reflection.AssemblyFileVersionAttribute"> <summary> Instructs a compiler to use a specific version number for the Win32 file version resource. The Win32 file version is not required to be the same as the assembly's version number. </summary> </member> <member name="M:System.Reflection.AssemblyFileVersionAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyFileVersionAttribute" /> class, specifying the file version. </summary> <param name="version"> The file version. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="version" /> is null. </exception> </member> <member name="P:System.Reflection.AssemblyFileVersionAttribute.Version"> <summary> Gets the Win32 file version resource name. </summary> <returns> A string containing the file version resource name. </returns> </member> <member name="T:System.Reflection.AssemblyFlagsAttribute"> <summary> Specifies a bitwise combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags for an assembly, describing just-in-time (JIT) compiler options, whether the assembly is retargetable, and whether it has a full or tokenized public key. This class cannot be inherited. </summary> </member> <member name="M:System.Reflection.AssemblyFlagsAttribute.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyFlagsAttribute" /> class with the specified combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags, cast as an integer value. </summary> <param name="assemblyFlags"> A bitwise combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags, cast as an integer value, representing just-in-time (JIT) compiler options, longevity, whether an assembly is retargetable, and whether it has a full or tokenized public key. </param> </member> <member name="M:System.Reflection.AssemblyFlagsAttribute.#ctor(System.Reflection.AssemblyNameFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyFlagsAttribute" /> class with the specified combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags. </summary> <param name="assemblyFlags"> A bitwise combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags representing just-in-time (JIT) compiler options, longevity, whether an assembly is retargetable, and whether it has a full or tokenized public key. </param> </member> <member name="M:System.Reflection.AssemblyFlagsAttribute.#ctor(System.UInt32)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyFlagsAttribute" /> class with the specified combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags, cast as an unsigned integer value. </summary> <param name="flags"> A bitwise combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags, cast as an unsigned integer value, representing just-in-time (JIT) compiler options, longevity, whether an assembly is retargetable, and whether it has a full or tokenized public key. </param> </member> <member name="P:System.Reflection.AssemblyFlagsAttribute.AssemblyFlags"> <summary> Gets an integer value representing the combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags specified when this attribute instance was created. </summary> <returns> An integer value representing a bitwise combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags. </returns> </member> <member name="P:System.Reflection.AssemblyFlagsAttribute.Flags"> <summary> Gets an unsigned integer value representing the combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags specified when this attribute instance was created. </summary> <returns> An unsigned integer value representing a bitwise combination of <see cref="T:System.Reflection.AssemblyNameFlags" /> flags. </returns> </member> <member name="T:System.Reflection.AssemblyInformationalVersionAttribute"> <summary> Defines additional version information for an assembly manifest. </summary> </member> <member name="M:System.Reflection.AssemblyInformationalVersionAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyInformationalVersionAttribute" /> class. </summary> <param name="informationalVersion"> The assembly version information. </param> </member> <member name="P:System.Reflection.AssemblyInformationalVersionAttribute.InformationalVersion"> <summary> Gets version information. </summary> <returns> A string containing the version information. </returns> </member> <member name="T:System.Reflection.AssemblyKeyFileAttribute"> <summary> Specifies the name of a file containing the key pair used to generate a strong name. </summary> </member> <member name="M:System.Reflection.AssemblyKeyFileAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the AssemblyKeyFileAttribute class with the name of the file containing the key pair to generate a strong name for the assembly being attributed. </summary> <param name="keyFile"> The name of the file containing the key pair. </param> </member> <member name="P:System.Reflection.AssemblyKeyFileAttribute.KeyFile"> <summary> Gets the name of the file containing the key pair used to generate a strong name for the attributed assembly. </summary> <returns> A string containing the name of the file that contains the key pair. </returns> </member> <member name="T:System.Reflection.AssemblyKeyNameAttribute"> <summary> Specifies the name of a key container within the CSP containing the key pair used to generate a strong name. </summary> </member> <member name="M:System.Reflection.AssemblyKeyNameAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyKeyNameAttribute" /> class with the name of the container holding the key pair used to generate a strong name for the assembly being attributed. </summary> <param name="keyName"> The name of the container containing the key pair. </param> </member> <member name="P:System.Reflection.AssemblyKeyNameAttribute.KeyName"> <summary> Gets the name of the container having the key pair that is used to generate a strong name for the attributed assembly. </summary> <returns> A string containing the name of the container that has the relevant key pair. </returns> </member> <member name="T:System.Reflection.AssemblyName"> <summary> Describes an assembly's unique identity in full. </summary> </member> <member name="M:System.Reflection.AssemblyName.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyName" /> class. </summary> </member> <member name="M:System.Reflection.AssemblyName.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyName" /> class with the specified display name. </summary> <param name="assemblyName"> The display name of the assembly, as returned by the <see cref="P:System.Reflection.AssemblyName.FullName" /> property. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assemblyName" /> is a zero length string. </exception> </member> <member name="M:System.Reflection.AssemblyName.Clone"> <summary> Makes a copy of this AssemblyName object. </summary> <returns> An object that is a copy of this AssemblyName object. </returns> </member> <member name="P:System.Reflection.AssemblyName.CodeBase"> <summary> Gets or sets the location of the assembly as a URL. </summary> <returns> A string that is the URL location of the assembly. </returns> </member> <member name="P:System.Reflection.AssemblyName.CultureInfo"> <summary> Gets or sets the culture supported by the assembly. </summary> <returns> A <see cref="T:System.Globalization.CultureInfo" /> object representing the culture supported by the assembly. </returns> </member> <member name="P:System.Reflection.AssemblyName.EscapedCodeBase"> <summary> Gets the URI, including escape characters, that represents the codebase. </summary> <returns> A URI with escape characters. </returns> </member> <member name="P:System.Reflection.AssemblyName.Flags"> <summary> Gets or sets the attributes of the assembly. </summary> <returns> An <see cref="T:System.Reflection.AssemblyNameFlags" /> object representing the attributes of the assembly. </returns> </member> <member name="P:System.Reflection.AssemblyName.FullName"> <summary> Gets the full name of the assembly, also known as the display name. </summary> <returns> A string that is the full name of the assembly, also known as the display name. </returns> </member> <member name="M:System.Reflection.AssemblyName.GetAssemblyName(System.String)"> <summary> Gets the AssemblyName for a given file. </summary> <returns> An AssemblyName object representing the given file. </returns> <param name="assemblyFile"> The path for the assembly whose AssemblyName is to be returned. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assemblyFile" /> is invalid, such as an assembly with an invalid culture. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have path discovery permission. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. </exception> <exception cref="T:System.IO.FileLoadException"> An assembly or module was loaded twice with two different sets of evidence. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.AssemblyName.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Gets serialization information with all of the data needed to recreate an instance of this AssemblyName. </summary> <param name="info"> The object to be populated with serialization information. </param> <param name="context"> The destination context of the serialization. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Reflection.AssemblyName.GetPublicKey"> <summary> Gets the public key of the assembly. </summary> <returns> An array of type byte containing the public key of the assembly. </returns> </member> <member name="M:System.Reflection.AssemblyName.GetPublicKeyToken"> <summary> Gets the public key token, which is the last 8 bytes of the SHA-1 hash of the public key under which the application or assembly is signed. </summary> <returns> An array of type byte containing the public key token. </returns> </member> <member name="P:System.Reflection.AssemblyName.HashAlgorithm"> <summary> Gets or sets the hash algorithm used by the assembly manifest. </summary> <returns> An AssemblyHashAlgorithm object representing the hash algorithm used by the assembly manifest. </returns> </member> <member name="P:System.Reflection.AssemblyName.KeyPair"> <summary> Gets or sets the public and private cryptographic key pair that is used to create a strong name signature for the assembly. </summary> <returns> A <see cref="T:System.Reflection.StrongNameKeyPair" /> object containing the public and private cryptographic key pair to be used to create a strong name for the assembly. </returns> </member> <member name="P:System.Reflection.AssemblyName.Name"> <summary> Gets or sets the simple name of the assembly. This is usually, but not necessarily, the file name of the manifest file of the assembly, minus its extension. </summary> <returns> A String that is the simple name of the assembly. </returns> </member> <member name="M:System.Reflection.AssemblyName.OnDeserialization(System.Object)"> <summary> Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and is called back by the deserialization event when deserialization is complete. </summary> <param name="sender"> The source of the deserialization event. </param> </member> <member name="P:System.Reflection.AssemblyName.ProcessorArchitecture"> <summary> Gets or sets a value that identifies the processor and bits-per-word of the platform targeted by an executable. </summary> <returns> One of the <see cref="T:System.Reflection.ProcessorArchitecture" /> values that identifies the processor and bits-per-word of the platform targeted by an executable. </returns> </member> <member name="M:System.Reflection.AssemblyName.ReferenceMatchesDefinition(System.Reflection.AssemblyName,System.Reflection.AssemblyName)"> <summary> Returns a value indicating whether the loader resolves two assembly names to the same assembly. </summary> <returns>true if the loader resolves <paramref name="definition" /> to the same assembly as <paramref name="reference" />; otherwise, false. </returns> <param name="reference"> The reference assembly name. </param> <param name="definition"> The assembly name that is compared to the reference assembly. </param> </member> <member name="M:System.Reflection.AssemblyName.SetPublicKey(System.Byte[])"> <summary> Sets the public key identifying the assembly. </summary> <param name="publicKey"> A byte array containing the public key of the assembly. </param> </member> <member name="M:System.Reflection.AssemblyName.SetPublicKeyToken(System.Byte[])"> <summary> Sets the public key token, which is the last 8 bytes of the SHA-1 hash of the public key under which the application or assembly is signed. </summary> <param name="publicKeyToken"> A byte array containing the public key token of the assembly. </param> </member> <member name="M:System.Reflection.AssemblyName.System#Runtime#InteropServices#_AssemblyName#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array that receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.AssemblyName.System#Runtime#InteropServices#_AssemblyName#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.AssemblyName.System#Runtime#InteropServices#_AssemblyName#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.AssemblyName.System#Runtime#InteropServices#_AssemblyName#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DispIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.AssemblyName.ToString"> <summary> Returns the full name of the assembly, also known as the display name. </summary> <returns> A String that is the full name of the assembly, or the class name if the full name of the assembly cannot be determined. </returns> </member> <member name="P:System.Reflection.AssemblyName.Version"> <summary> Gets or sets the major, minor, build, and revision numbers of the assembly. </summary> <returns> A <see cref="T:System.Version" /> object representing the major, minor, build, and revision numbers of the assembly. </returns> </member> <member name="P:System.Reflection.AssemblyName.VersionCompatibility"> <summary> Gets or sets the information related to the assembly's compatibility with other assemblies. </summary> <returns> An AssemblyVersionCompatibility object representing information about the assembly's compatibility with other assemblies. </returns> </member> <member name="T:System.Reflection.AssemblyNameFlags"> <summary> Provides information about an <see cref="T:System.Reflection.Assembly" /> reference. </summary> </member> <member name="F:System.Reflection.AssemblyNameFlags.None"> <summary> Specifies that no flags are in effect. </summary> </member> <member name="F:System.Reflection.AssemblyNameFlags.PublicKey"> <summary> Specifies that a public key is formed from the full public key rather than the public key token. </summary> </member> <member name="F:System.Reflection.AssemblyNameFlags.EnableJITcompileOptimizer"> <summary> Specifies that just-in-time (JIT) compiler optimization is enabled for the assembly. </summary> </member> <member name="F:System.Reflection.AssemblyNameFlags.EnableJITcompileTracking"> <summary> Specifies that just-in-time (JIT) compiler tracking is enabled for the assembly. </summary> </member> <member name="F:System.Reflection.AssemblyNameFlags.Retargetable"> <summary> Specifies that the assembly can be retargeted at runtime to an assembly from a different publisher. </summary> </member> <member name="T:System.Reflection.AssemblyNameProxy"> <summary> Provides a remotable version of the AssemblyName. </summary> </member> <member name="M:System.Reflection.AssemblyNameProxy.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyNameProxy" /> class. </summary> </member> <member name="M:System.Reflection.AssemblyNameProxy.GetAssemblyName(System.String)"> <summary> Gets the AssemblyName for a given file. </summary> <returns> An AssemblyName object representing the given file. </returns> <param name="assemblyFile"> The assembly file for which to get the AssemblyName. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFile" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="assemblyFile" /> is empty. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="assemblyFile" /> is not found. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="assemblyFile" /> is not a valid assembly. </exception> </member> <member name="T:System.Reflection.AssemblyProductAttribute"> <summary> Defines a product name custom attribute for an assembly manifest. </summary> </member> <member name="M:System.Reflection.AssemblyProductAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyProductAttribute" /> class. </summary> <param name="product"> The product name information. </param> </member> <member name="P:System.Reflection.AssemblyProductAttribute.Product"> <summary> Gets product name information. </summary> <returns> A string containing the product name. </returns> </member> <member name="T:System.Reflection.AssemblyTitleAttribute"> <summary> Defines an assembly title custom attribute for an assembly manifest. </summary> </member> <member name="M:System.Reflection.AssemblyTitleAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyTitleAttribute" /> class. </summary> <param name="title"> The assembly title. </param> </member> <member name="P:System.Reflection.AssemblyTitleAttribute.Title"> <summary> Gets assembly title information. </summary> <returns> A string containing the assembly title. </returns> </member> <member name="T:System.Reflection.AssemblyTrademarkAttribute"> <summary> Defines a trademark custom attribute for an assembly manifest. </summary> </member> <member name="M:System.Reflection.AssemblyTrademarkAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.AssemblyTrademarkAttribute" /> class. </summary> <param name="trademark"> The trademark information. </param> </member> <member name="P:System.Reflection.AssemblyTrademarkAttribute.Trademark"> <summary> Gets trademark information. </summary> <returns> A String containing trademark information. </returns> </member> <member name="T:System.Reflection.AssemblyVersionAttribute"> <summary> Specifies the version of the assembly being attributed. </summary> </member> <member name="M:System.Reflection.AssemblyVersionAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the AssemblyVersionAttribute class with the version number of the assembly being attributed. </summary> <param name="version"> The version number of the attributed assembly. </param> </member> <member name="P:System.Reflection.AssemblyVersionAttribute.Version"> <summary> Gets the version number of the attributed assembly. </summary> <returns> A string containing the assembly version number. </returns> </member> <member name="T:System.Reflection.Binder"> <summary> Selects a member from a list of candidates, and performs type conversion from actual argument type to formal argument type. </summary> </member> <member name="M:System.Reflection.Binder.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.Binder" /> class. </summary> </member> <member name="M:System.Reflection.Binder.BindToField(System.Reflection.BindingFlags,System.Reflection.FieldInfo[],System.Object,System.Globalization.CultureInfo)"> <summary> Selects a field from the given set of fields, based on the specified criteria. </summary> <returns> The matching field. </returns> <param name="bindingAttr"> A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values. </param> <param name="match"> The set of fields that are candidates for matching. For example, when a <see cref="T:System.Reflection.Binder" /> object is used by <see cref="Overload:System.Type.InvokeMember" />, this parameter specifies the set of fields that reflection has determined to be possible matches, typically because they have the correct member name. The default implementation provided by <see cref="P:System.Type.DefaultBinder" /> changes the order of this array. </param> <param name="value"> The field value used to locate a matching field. </param> <param name="culture"> An instance of <see cref="T:System.Globalization.CultureInfo" /> that is used to control the coercion of data types, in binder implementations that coerce types. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. Note: For example, if a binder implementation allows coercion of string values to numeric types, this parameter is necessary to convert a String that represents 1000 to a Double value, because 1000 is represented differently by different cultures. The default binder does not do such string coercions. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> For the default binder, <paramref name="bindingAttr" /> includes <see cref="F:System.Reflection.BindingFlags.SetField" />, and <paramref name="match" /> contains multiple fields that are equally good matches for <paramref name="value" />. For example, <paramref name="value" /> contains a MyClass object that implements the IMyClass interface, and <paramref name="match" /> contains a field of type MyClass and a field of type IMyClass. </exception> <exception cref="T:System.MissingFieldException"> For the default binder, <paramref name="bindingAttr" /> includes <see cref="F:System.Reflection.BindingFlags.SetField" />, and <paramref name="match" /> contains no fields that can accept <paramref name="value" />. </exception> <exception cref="T:System.NullReferenceException"> For the default binder, <paramref name="bindingAttr" /> includes <see cref="F:System.Reflection.BindingFlags.SetField" />, and <paramref name="match" /> is null or an empty array. -or- <paramref name="bindingAttr" /> includes <see cref="F:System.Reflection.BindingFlags.SetField" />, and <paramref name="value" /> is null. </exception> </member> <member name="M:System.Reflection.Binder.BindToMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Object[]@,System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[],System.Object@)"> <summary> Selects a method to invoke from the given set of methods, based on the supplied arguments. </summary> <returns> The matching method. </returns> <param name="bindingAttr"> A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values. </param> <param name="match"> The set of methods that are candidates for matching. For example, when a <see cref="T:System.Reflection.Binder" /> object is used by <see cref="Overload:System.Type.InvokeMember" />, this parameter specifies the set of methods that reflection has determined to be possible matches, typically because they have the correct member name. The default implementation provided by <see cref="P:System.Type.DefaultBinder" /> changes the order of this array. </param> <param name="args"> The arguments that are passed in. The binder can change the order of the arguments in this array; for example, the default binder changes the order of arguments if the <paramref name="names" /> parameter is used to specify an order other than positional order. If a binder implementation coerces argument types, the types and values of the arguments can be changed as well. </param> <param name="modifiers"> An array of parameter modifiers that enable binding to work with parameter signatures in which the types have been modified. The default binder implementation does not use this parameter. </param> <param name="culture"> An instance of <see cref="T:System.Globalization.CultureInfo" /> that is used to control the coercion of data types, in binder implementations that coerce types. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. Note: For example, if a binder implementation allows coercion of string values to numeric types, this parameter is necessary to convert a String that represents 1000 to a Double value, because 1000 is represented differently by different cultures. The default binder does not do such string coercions. </param> <param name="names"> The parameter names, if parameter names are to be considered when matching, or null if arguments are to be treated as purely positional. For example, parameter names must be used if arguments are not supplied in positional order. </param> <param name="state"> After the method returns, <paramref name="state" /> contains a binder-provided object that keeps track of argument reordering. The binder creates this object, and the binder is the sole consumer of this object. If <paramref name="state" /> is not null when BindToMethod returns, you must pass <paramref name="state" /> to the <see cref="M:System.Reflection.Binder.ReorderArgumentArray(System.Object[]@,System.Object)" /> method if you want to restore <paramref name="args" /> to its original order, for example, so that you can retrieve the values of ref parameters (ByRef parameters in Visual Basic). </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> For the default binder, <paramref name="match" /> contains multiple methods that are equally good matches for <paramref name="args" />. For example, <paramref name="args" /> contains a MyClass object that implements the IMyClass interface, and <paramref name="match" /> contains a method that takes MyClass and a method that takes IMyClass. </exception> <exception cref="T:System.MissingMethodException"> For the default binder, <paramref name="match" /> contains no methods that can accept the arguments supplied in <paramref name="args" />. </exception> <exception cref="T:System.ArgumentException"> For the default binder, <paramref name="match" /> is null or an empty array. </exception> </member> <member name="M:System.Reflection.Binder.ChangeType(System.Object,System.Type,System.Globalization.CultureInfo)"> <summary> Changes the type of the given Object to the given Type. </summary> <returns> An object that contains the given value as the new type. </returns> <param name="value"> The object to change into a new Type. </param> <param name="type"> The new Type that <paramref name="value" /> will become. </param> <param name="culture"> An instance of <see cref="T:System.Globalization.CultureInfo" /> that is used to control the coercion of data types. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. Note: For example, this parameter is necessary to convert a String that represents 1000 to a Double value, because 1000 is represented differently by different cultures. </param> </member> <member name="M:System.Reflection.Binder.ReorderArgumentArray(System.Object[]@,System.Object)"> <summary> Upon returning from <see cref="M:System.Reflection.Binder.BindToMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Object[]@,System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[],System.Object@)" />, restores the <paramref name="args" /> argument to what it was when it came from BindToMethod. </summary> <param name="args"> The actual arguments that are passed in. Both the types and values of the arguments can be changed. </param> <param name="state"> A binder-provided object that keeps track of argument reordering. </param> </member> <member name="M:System.Reflection.Binder.SelectMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[])"> <summary> Selects a method from the given set of methods, based on the argument type. </summary> <returns> The matching method, if found; otherwise, null. </returns> <param name="bindingAttr"> A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values. </param> <param name="match"> The set of methods that are candidates for matching. For example, when a <see cref="T:System.Reflection.Binder" /> object is used by <see cref="Overload:System.Type.InvokeMember" />, this parameter specifies the set of methods that reflection has determined to be possible matches, typically because they have the correct member name. The default implementation provided by <see cref="P:System.Type.DefaultBinder" /> changes the order of this array. </param> <param name="types"> The parameter types used to locate a matching method. </param> <param name="modifiers"> An array of parameter modifiers that enable binding to work with parameter signatures in which the types have been modified. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> For the default binder, <paramref name="match" /> contains multiple methods that are equally good matches for the parameter types described by <paramref name="types" />. For example, the array in <paramref name="types" /> contains a <see cref="T:System.Type" /> object for MyClass and the array in <paramref name="match" /> contains a method that takes a base class of MyClass and a method that takes an interface that MyClass implements. </exception> <exception cref="T:System.ArgumentException"> For the default binder, <paramref name="match" /> is null or an empty array. -or- An element of <paramref name="types" /> derives from <see cref="T:System.Type" />, but is not of type RuntimeType. </exception> </member> <member name="M:System.Reflection.Binder.SelectProperty(System.Reflection.BindingFlags,System.Reflection.PropertyInfo[],System.Type,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Selects a property from the given set of properties, based on the specified criteria. </summary> <returns> The matching property. </returns> <param name="bindingAttr"> A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values. </param> <param name="match"> The set of properties that are candidates for matching. For example, when a <see cref="T:System.Reflection.Binder" /> object is used by <see cref="Overload:System.Type.InvokeMember" />, this parameter specifies the set of properties that reflection has determined to be possible matches, typically because they have the correct member name. The default implementation provided by <see cref="P:System.Type.DefaultBinder" /> changes the order of this array. </param> <param name="returnType"> The return value the matching property must have. </param> <param name="indexes"> The index types of the property being searched for. Used for index properties such as the indexer for a class. </param> <param name="modifiers"> An array of parameter modifiers that enable binding to work with parameter signatures in which the types have been modified. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> For the default binder, <paramref name="match" /> contains multiple properties that are equally good matches for <paramref name="returnType" /> and <paramref name="indexes" />. </exception> <exception cref="T:System.ArgumentException"> For the default binder, <paramref name="match" /> is null or an empty array. </exception> </member> <member name="T:System.Reflection.BindingFlags"> <summary> Specifies flags that control binding and the way in which the search for members and types is conducted by reflection. </summary> </member> <member name="F:System.Reflection.BindingFlags.Default"> <summary> Specifies no binding flag. </summary> </member> <member name="F:System.Reflection.BindingFlags.IgnoreCase"> <summary> Specifies that the case of the member name should not be considered when binding. </summary> </member> <member name="F:System.Reflection.BindingFlags.DeclaredOnly"> <summary> Specifies that only members declared at the level of the supplied type's hierarchy should be considered. Inherited members are not considered. </summary> </member> <member name="F:System.Reflection.BindingFlags.Instance"> <summary> Specifies that instance members are to be included in the search. </summary> </member> <member name="F:System.Reflection.BindingFlags.Static"> <summary> Specifies that static members are to be included in the search. </summary> </member> <member name="F:System.Reflection.BindingFlags.Public"> <summary> Specifies that public members are to be included in the search. </summary> </member> <member name="F:System.Reflection.BindingFlags.NonPublic"> <summary> Specifies that non-public members are to be included in the search. </summary> </member> <member name="F:System.Reflection.BindingFlags.FlattenHierarchy"> <summary> Specifies that public and protected static members up the hierarchy should be returned. Private static members in inherited classes are not returned. Static members include fields, methods, events, and properties. Nested types are not returned. </summary> </member> <member name="F:System.Reflection.BindingFlags.InvokeMethod"> <summary> Specifies that a method is to be invoked. This must not be a constructor or a type initializer. </summary> </member> <member name="F:System.Reflection.BindingFlags.CreateInstance"> <summary> Specifies that Reflection should create an instance of the specified type. Calls the constructor that matches the given arguments. The supplied member name is ignored. If the type of lookup is not specified, (Instance | Public) will apply. It is not possible to call a type initializer. </summary> </member> <member name="F:System.Reflection.BindingFlags.GetField"> <summary> Specifies that the value of the specified field should be returned. </summary> </member> <member name="F:System.Reflection.BindingFlags.SetField"> <summary> Specifies that the value of the specified field should be set. </summary> </member> <member name="F:System.Reflection.BindingFlags.GetProperty"> <summary> Specifies that the value of the specified property should be returned. </summary> </member> <member name="F:System.Reflection.BindingFlags.SetProperty"> <summary> Specifies that the value of the specified property should be set. For COM properties, specifying this binding flag is equivalent to specifying PutDispProperty and PutRefDispProperty. </summary> </member> <member name="F:System.Reflection.BindingFlags.PutDispProperty"> <summary> Specifies that the PROPPUT member on a COM object should be invoked. PROPPUT specifies a property-setting function that uses a value. Use PutDispProperty if a property has both PROPPUT and PROPPUTREF and you need to distinguish which one is called. </summary> </member> <member name="F:System.Reflection.BindingFlags.PutRefDispProperty"> <summary> Specifies that the PROPPUTREF member on a COM object should be invoked. PROPPUTREF specifies a property-setting function that uses a reference instead of a value. Use PutRefDispProperty if a property has both PROPPUT and PROPPUTREF and you need to distinguish which one is called. </summary> </member> <member name="F:System.Reflection.BindingFlags.ExactBinding"> <summary> Specifies that types of the supplied arguments must exactly match the types of the corresponding formal parameters. Reflection throws an exception if the caller supplies a non-null Binder object, since that implies that the caller is supplying BindToXXX implementations that will pick the appropriate method. </summary> </member> <member name="F:System.Reflection.BindingFlags.SuppressChangeType"> <summary> Not implemented. </summary> </member> <member name="F:System.Reflection.BindingFlags.OptionalParamBinding"> <summary> Returns the set of members whose parameter count matches the number of supplied arguments. This binding flag is used for methods with parameters that have default values and methods with variable arguments (varargs). This flag should only be used with <see cref="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])" />. </summary> </member> <member name="F:System.Reflection.BindingFlags.IgnoreReturn"> <summary> Used in COM interop to specify that the return value of the member can be ignored. </summary> </member> <member name="T:System.Reflection.CallingConventions"> <summary> Defines the valid calling conventions for a method. </summary> </member> <member name="F:System.Reflection.CallingConventions.Standard"> <summary> Specifies the default calling convention as determined by the common language runtime. Use this calling convention for static methods. For instance or virtual methods use HasThis. </summary> </member> <member name="F:System.Reflection.CallingConventions.VarArgs"> <summary> Specifies the calling convention for methods with variable arguments. </summary> </member> <member name="F:System.Reflection.CallingConventions.Any"> <summary> Specifies that either the Standard or the VarArgs calling convention may be used. </summary> </member> <member name="F:System.Reflection.CallingConventions.HasThis"> <summary> Specifies an instance or virtual method (not a static method). At run-time, the called method is passed a pointer to the target object as its first argument (the this pointer). The signature stored in metadata does not include the type of this first argument, because the method is known and its owner class can be discovered from metadata. </summary> </member> <member name="F:System.Reflection.CallingConventions.ExplicitThis"> <summary> Specifies that the signature is a function-pointer signature, representing a call to an instance or virtual method (not a static method). If ExplicitThis is set, HasThis must also be set. The first argument passed to the called method is still a this pointer, but the type of the first argument is now unknown. Therefore, a token that describes the type (or class) of the this pointer is explicitly stored into its metadata signature. </summary> </member> <member name="T:System.Reflection.ConstructorInfo"> <summary> Discovers the attributes of a class constructor and provides access to constructor metadata. </summary> </member> <member name="M:System.Reflection.ConstructorInfo.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.ConstructorInfo" /> class. </summary> </member> <member name="F:System.Reflection.ConstructorInfo.ConstructorName"> <summary> Represents the name of the class constructor method as it is stored in metadata. This name is always ".ctor". This field is read-only. </summary> </member> <member name="M:System.Reflection.ConstructorInfo.Invoke(System.Object[])"> <summary> Invokes the constructor reflected by the instance that has the specified parameters, providing default values for the parameters not commonly used. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="parameters"> An array of values that matches the number, order and type (under the constraints of the default binder) of the parameters for this constructor. If this constructor takes no parameters, then use either an array with zero elements or null, as in Object[] parameters = new Object[0]. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> <exception cref="T:System.MemberAccessException"> The class is abstract. -or- The constructor is a class initializer. </exception> <exception cref="T:System.MethodAccessException"> The constructor is private or protected, and the caller lacks <see cref="F:System.Security.Permissions.ReflectionPermissionFlag.MemberAccess" />. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="parameters" /> array does not contain values that match the types accepted by this constructor. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The invoked constructor throws an exception. </exception> <exception cref="T:System.Reflection.TargetParameterCountException"> An incorrect number of parameters was passed. </exception> <exception cref="T:System.NotSupportedException"> Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, and <see cref="T:System.RuntimeArgumentHandle" /> types is not supported. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the necessary code access permission. </exception> </member> <member name="M:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> When implemented in a derived class, invokes the constructor reflected by this ConstructorInfo with the specified arguments, under the constraints of the specified Binder. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="invokeAttr"> One of the BindingFlags values that specifies the type of binding. </param> <param name="binder"> A Binder that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If <paramref name="binder" /> is null, then Binder.DefaultBinding is used. </param> <param name="parameters"> An array of type Object used to match the number, order and type of the parameters for this constructor, under the constraints of <paramref name="binder" />. If this constructor does not require parameters, pass an array with zero elements, as in Object[] parameters = new Object[0]. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <exception cref="T:System.ArgumentException"> The <paramref name="parameters" /> array does not contain values that match the types accepted by this constructor, under the constraints of the <paramref name="binder" />. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The invoked constructor throws an exception. </exception> <exception cref="T:System.Reflection.TargetParameterCountException"> An incorrect number of parameters was passed. </exception> <exception cref="T:System.NotSupportedException"> Creation of <see cref="T:System.TypedReference" />, <see cref="T:System.ArgIterator" />, and <see cref="T:System.RuntimeArgumentHandle" /> types is not supported. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the necessary code access permissions. </exception> <exception cref="T:System.MemberAccessException"> The class is abstract. -or- The constructor is a class initializer. </exception> <exception cref="T:System.MethodAccessException"> The constructor is private or protected, and the caller lacks <see cref="F:System.Security.Permissions.ReflectionPermissionFlag.MemberAccess" />. </exception> </member> <member name="P:System.Reflection.ConstructorInfo.MemberType"> <summary> Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a constructor. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a constructor. </returns> </member> <member name="M:System.Reflection.ConstructorInfo.System#Runtime#InteropServices#_ConstructorInfo#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.ConstructorInfo.System#Runtime#InteropServices#_ConstructorInfo#GetType"> <summary> Gets a <see cref="T:System.Type" /> object representing the <see cref="T:System.Reflection.ConstructorInfo" /> type. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Reflection.ConstructorInfo" /> type. </returns> </member> <member name="M:System.Reflection.ConstructorInfo.System#Runtime#InteropServices#_ConstructorInfo#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.ConstructorInfo.System#Runtime#InteropServices#_ConstructorInfo#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.ConstructorInfo.System#Runtime#InteropServices#_ConstructorInfo#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.ConstructorInfo.System#Runtime#InteropServices#_ConstructorInfo#Invoke_2(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> For a description of this member, see <see cref="M:System.Runtime.InteropServices._ConstructorInfo.Invoke_2(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" />. </summary> <returns> An instance of the type. </returns> <param name="obj"> The instance that created this method. </param> <param name="invokeAttr"> One of the <see cref="T:System.Reflection.BindingFlags" /> values that specifies the type of binding. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If <paramref name="binder" /> is null, then <see cref="P:System.Type.DefaultBinder" /> is used. </param> <param name="parameters"> An array of objects used to match the number, order, and type of the parameters for this constructor, under the constraints of <paramref name="binder" />. If this constructor does not require parameters, pass an array with zero elements. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> </member> <member name="M:System.Reflection.ConstructorInfo.System#Runtime#InteropServices#_ConstructorInfo#Invoke_3(System.Object,System.Object[])"> <summary> For a description of this member, see <see cref="M:System.Runtime.InteropServices._ConstructorInfo.Invoke_3(System.Object,System.Object[])" />. </summary> <returns> An instance of the type. </returns> <param name="obj"> The instance that created this method. </param> <param name="parameters"> An array of objects used to match the number, order, and type of the parameters for this constructor, under the constraints of <paramref name="binder" />. If this constructor does not require parameters, pass an array with zero elements. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> </member> <member name="M:System.Reflection.ConstructorInfo.System#Runtime#InteropServices#_ConstructorInfo#Invoke_4(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> For a description of this member, see <see cref="M:System.Runtime.InteropServices._ConstructorInfo.Invoke_4(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" />. </summary> <returns> An instance of the type. </returns> <param name="invokeAttr"> One of the <see cref="T:System.Reflection.BindingFlags" /> values that specifies the type of binding. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If <paramref name="binder" /> is null, then <see cref="P:System.Type.DefaultBinder" /> is used. </param> <param name="parameters"> An array of objects used to match the number, order, and type of the parameters for this constructor, under the constraints of <paramref name="binder" />. If this constructor does not require parameters, pass an array with zero elements. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> </member> <member name="M:System.Reflection.ConstructorInfo.System#Runtime#InteropServices#_ConstructorInfo#Invoke_5(System.Object[])"> <summary> For a description of this member, see <see cref="M:System.Runtime.InteropServices._ConstructorInfo.Invoke_5(System.Object[])" />. </summary> <returns> An instance of the type. </returns> <param name="parameters"> An array of objects used to match the number, order, and type of the parameters for this constructor, under the constraints of <paramref name="binder" />. If this constructor does not require parameters, pass an array with zero elements. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> </member> <member name="F:System.Reflection.ConstructorInfo.TypeConstructorName"> <summary> Represents the name of the type constructor method as it is stored in metadata. This name is always ".cctor". This property is read-only. </summary> </member> <member name="T:System.Reflection.CustomAttributeData"> <summary> Provides access to custom attribute data for assemblies, modules, types, members and parameters that are loaded into the reflection-only context. </summary> </member> <member name="P:System.Reflection.CustomAttributeData.Constructor"> <summary> Returns a <see cref="T:System.Reflection.ConstructorInfo" /> object representing the constructor that would have initialized the custom attribute. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> object representing the constructor that would have initialized the custom attribute represented by the current instance of the <see cref="T:System.Reflection.CustomAttributeData" /> class. </returns> </member> <member name="P:System.Reflection.CustomAttributeData.ConstructorArguments"> <summary> Gets the list of positional arguments specified for the attribute instance represented by the <see cref="T:System.Reflection.CustomAttributeData" /> object. </summary> <returns> An <see cref="T:System.Collections.Generic.IList`1" /> of <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structures representing the positional arguments specified for the custom attribute instance. </returns> </member> <member name="M:System.Reflection.CustomAttributeData.Equals(System.Object)"> <param name="obj"></param> </member> <member name="M:System.Reflection.CustomAttributeData.GetCustomAttributes(System.Reflection.Assembly)"> <summary> Returns a list of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the target assembly. </summary> <returns> An <see cref="T:System.Collections.Generic.IList`1" /> of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the target assembly. </returns> <param name="target"> The assembly whose custom attribute data is to be retrieved. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="target" /> is null. </exception> </member> <member name="M:System.Reflection.CustomAttributeData.GetCustomAttributes(System.Reflection.MemberInfo)"> <summary> Returns a list of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the target member. </summary> <returns> An <see cref="T:System.Collections.Generic.IList`1" /> of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the target member. </returns> <param name="target"> A <see cref="T:System.Reflection.MemberInfo" /> object representing the member whose attribute data is to be retrieved. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="target" /> is null. </exception> </member> <member name="M:System.Reflection.CustomAttributeData.GetCustomAttributes(System.Reflection.Module)"> <summary> Returns a list of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the target module. </summary> <returns> An <see cref="T:System.Collections.Generic.IList`1" /> of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the target module. </returns> <param name="target"> The module whose custom attribute data is to be retrieved. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="target" /> is null. </exception> </member> <member name="M:System.Reflection.CustomAttributeData.GetCustomAttributes(System.Reflection.ParameterInfo)"> <summary> Returns a list of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the target parameter. </summary> <returns> An <see cref="T:System.Collections.Generic.IList`1" /> of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the target parameter. </returns> <param name="target"> A <see cref="T:System.Reflection.ParameterInfo" /> object representing the parameter whose attribute data is to be retrieved. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="target" /> is null. </exception> </member> <member name="M:System.Reflection.CustomAttributeData.GetHashCode"></member> <member name="P:System.Reflection.CustomAttributeData.NamedArguments"> <summary> Gets the list of named arguments specified for the attribute instance represented by the <see cref="T:System.Reflection.CustomAttributeData" /> object. </summary> <returns> An <see cref="T:System.Collections.Generic.IList`1" /> of <see cref="T:System.Reflection.CustomAttributeNamedArgument" /> structures representing the named arguments specified for the custom attribute instance. </returns> </member> <member name="M:System.Reflection.CustomAttributeData.ToString"> <summary> Returns a string representation of the custom attribute. </summary> <returns> A string value that represents the custom attribute. </returns> </member> <member name="T:System.Reflection.CustomAttributeFormatException"> <summary> The exception that is thrown when the binary format of a custom attribute is invalid. </summary> </member> <member name="M:System.Reflection.CustomAttributeFormatException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.CustomAttributeFormatException" /> class with the default properties. </summary> </member> <member name="M:System.Reflection.CustomAttributeFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.CustomAttributeFormatException" /> class with the specified serialization and context information. </summary> <param name="info"> The data for serializing or deserializing the custom attribute. </param> <param name="context"> The source and destination for the custom attribute. </param> </member> <member name="M:System.Reflection.CustomAttributeFormatException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.CustomAttributeFormatException" /> class with the specified message. </summary> <param name="message"> The message that indicates the reason this exception was thrown. </param> </member> <member name="M:System.Reflection.CustomAttributeFormatException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.CustomAttributeFormatException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Reflection.CustomAttributeNamedArgument"> <summary> Represents a named argument of a custom attribute in the reflection-only context. </summary> </member> <member name="M:System.Reflection.CustomAttributeNamedArgument.Equals(System.Object)"> <returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false. </returns> <param name="obj"> Another object to compare to. </param> </member> <member name="M:System.Reflection.CustomAttributeNamedArgument.GetHashCode"> <returns> A 32-bit signed integer that is the hash code for this instance. </returns> </member> <member name="P:System.Reflection.CustomAttributeNamedArgument.MemberInfo"> <summary> Gets the attribute member that would be used to set the named argument. </summary> <returns> A <see cref="T:System.Reflection.MemberInfo" /> representing the attribute member that would be used to set the named argument. </returns> </member> <member name="M:System.Reflection.CustomAttributeNamedArgument.op_Equality(System.Reflection.CustomAttributeNamedArgument,System.Reflection.CustomAttributeNamedArgument)"> <summary> Tests whether two <see cref="T:System.Reflection.CustomAttributeNamedArgument" /> structures are equivalent. </summary> <returns>true if the two <see cref="T:System.Reflection.CustomAttributeNamedArgument" /> structures are equal; otherwise, false. </returns> <param name="left"> The <see cref="T:System.Reflection.CustomAttributeNamedArgument" /> structure to the left of the equality operator. </param> <param name="right"> The <see cref="T:System.Reflection.CustomAttributeNamedArgument" /> structure to the right of the equality operator. </param> </member> <member name="M:System.Reflection.CustomAttributeNamedArgument.op_Inequality(System.Reflection.CustomAttributeNamedArgument,System.Reflection.CustomAttributeNamedArgument)"> <summary> Tests whether two <see cref="T:System.Reflection.CustomAttributeNamedArgument" /> structures are different. </summary> <returns>true if the two <see cref="T:System.Reflection.CustomAttributeNamedArgument" /> structures are different; otherwise, false. </returns> <param name="left"> The <see cref="T:System.Reflection.CustomAttributeNamedArgument" /> structure to the left of the inequality operator. </param> <param name="right"> The <see cref="T:System.Reflection.CustomAttributeNamedArgument" /> structure to the right of the inequality operator. </param> </member> <member name="M:System.Reflection.CustomAttributeNamedArgument.ToString"> <summary> Returns a string consisting of the argument name, the equal sign, and a string representation of the argument value. </summary> <returns> A string consisting of the argument name, the equal sign, and a string representation of the argument value. </returns> </member> <member name="P:System.Reflection.CustomAttributeNamedArgument.TypedValue"> <summary> Gets a <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structure that can be used to obtain the type and value of the current named argument. </summary> <returns> A <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structure that can be used to obtain the type and value of the current named argument. </returns> </member> <member name="T:System.Reflection.CustomAttributeTypedArgument"> <summary> Represents an argument of a custom attribute in the reflection-only context, or an element of an array argument. </summary> </member> <member name="P:System.Reflection.CustomAttributeTypedArgument.ArgumentType"> <summary> Gets the type of the argument or of the array argument element. </summary> <returns> A <see cref="T:System.Type" /> object representing the type of the argument or of the array element. </returns> </member> <member name="M:System.Reflection.CustomAttributeTypedArgument.Equals(System.Object)"> <returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false. </returns> <param name="obj"> Another object to compare to. </param> </member> <member name="M:System.Reflection.CustomAttributeTypedArgument.GetHashCode"> <returns> A 32-bit signed integer that is the hash code for this instance. </returns> </member> <member name="M:System.Reflection.CustomAttributeTypedArgument.op_Equality(System.Reflection.CustomAttributeTypedArgument,System.Reflection.CustomAttributeTypedArgument)"> <summary> Tests whether two <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structures are equivalent. </summary> <returns>true if the two <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structures are equal; otherwise, false. </returns> <param name="left"> The <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structure to the left of the equality operator. </param> <param name="right"> The <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structure to the right of the equality operator. </param> </member> <member name="M:System.Reflection.CustomAttributeTypedArgument.op_Inequality(System.Reflection.CustomAttributeTypedArgument,System.Reflection.CustomAttributeTypedArgument)"> <summary> Tests whether two <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structures are different. </summary> <returns>true if the two <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structures are different; otherwise, false. </returns> <param name="left"> The <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structure to the left of the inequality operator. </param> <param name="right"> The <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> structure to the right of the inequality operator. </param> </member> <member name="M:System.Reflection.CustomAttributeTypedArgument.ToString"> <summary> Returns a string consisting of the argument name, the equal sign, and a string representation of the argument value. </summary> <returns> A string consisting of the argument name, the equal sign, and a string representation of the argument value. </returns> </member> <member name="P:System.Reflection.CustomAttributeTypedArgument.Value"> <summary> Gets the value of the argument for a simple argument or for an element of an array argument; gets a collection of values for an array argument. </summary> <returns> An object that represents the value of the argument or element, or a generic <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Reflection.CustomAttributeTypedArgument" /> objects that represent the values of an array-type argument. </returns> </member> <member name="T:System.Reflection.DefaultMemberAttribute"> <summary> Defines the member of a type that is the default member used by <see cref="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])" />. </summary> </member> <member name="M:System.Reflection.DefaultMemberAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.DefaultMemberAttribute" /> class. </summary> <param name="memberName"> A String containing the name of the member to invoke. This may be a constructor, method, property, or field. A suitable invocation attribute must be specified when the member is invoked. The default member of a class can be specified by passing an empty String as the name of the member. The default member of a type is marked with the DefaultMemberAttribute custom attribute or marked in COM in the usual way. </param> </member> <member name="P:System.Reflection.DefaultMemberAttribute.MemberName"> <summary> Gets the name from the attribute. </summary> <returns> A string representing the member name. </returns> </member> <member name="T:System.Reflection.EventAttributes"> <summary> Specifies the attributes of an event. </summary> </member> <member name="F:System.Reflection.EventAttributes.None"> <summary> Specifies that the event has no attributes. </summary> </member> <member name="F:System.Reflection.EventAttributes.SpecialName"> <summary> Specifies that the event is special in a way described by the name. </summary> </member> <member name="F:System.Reflection.EventAttributes.ReservedMask"> <summary> Specifies a reserved flag for common language runtime use only. </summary> </member> <member name="F:System.Reflection.EventAttributes.RTSpecialName"> <summary> Specifies that the common language runtime should check name encoding. </summary> </member> <member name="T:System.Reflection.EventInfo"> <summary> Discovers the attributes of an event and provides access to event metadata. </summary> </member> <member name="M:System.Reflection.EventInfo.#ctor"> <summary> Initializes a new instance of the EventInfo class. </summary> </member> <member name="M:System.Reflection.EventInfo.AddEventHandler(System.Object,System.Delegate)"> <summary> Adds an event handler to an event source. </summary> <param name="target"> The event source. </param> <param name="handler"> Encapsulates a method or methods to be invoked when the event is raised by the target. </param> <exception cref="T:System.InvalidOperationException"> The event does not have a public add accessor. </exception> <exception cref="T:System.ArgumentException"> The handler that was passed in cannot be used. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have access permission to the member. </exception> <exception cref="T:System.Reflection.TargetException"> The <paramref name="target" /> parameter is null and the event is not static. -or- The <see cref="T:System.Reflection.EventInfo" /> is not declared on the target. </exception> </member> <member name="P:System.Reflection.EventInfo.Attributes"> <summary> Gets the attributes for this event. </summary> <returns> The read-only attributes for this event. </returns> </member> <member name="P:System.Reflection.EventInfo.EventHandlerType"> <summary> Gets the Type object of the underlying event-handler delegate associated with this event. </summary> <returns> A read-only Type object representing the delegate event handler. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.EventInfo.GetAddMethod"> <summary> Returns the method used to add an event handler delegate to the event source. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method used to add an event handler delegate to the event source. </returns> </member> <member name="M:System.Reflection.EventInfo.GetAddMethod(System.Boolean)"> <summary> When overridden in a derived class, retrieves the MethodInfo object for the <see cref="M:System.Reflection.EventInfo.AddEventHandler(System.Object,System.Delegate)" /> method of the event, specifying whether to return non-public methods. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method used to add an event handler delegate to the event source. </returns> <param name="nonPublic">true if non-public methods can be returned; otherwise, false. </param> <exception cref="T:System.MethodAccessException"> <paramref name="nonPublic" /> is true, the method used to add an event handler delegate is non-public, and the caller does not have permission to reflect on non-public methods. </exception> </member> <member name="M:System.Reflection.EventInfo.GetOtherMethods"> <summary> Returns the public methods that have been associated with an event in metadata using the .other directive. </summary> <returns> An array of <see cref="T:System.Reflection.EventInfo" /> objects representing the public methods that have been associated with the event in metadata by using the .other directive. If there are no such public methods, an empty array is returned. </returns> </member> <member name="M:System.Reflection.EventInfo.GetOtherMethods(System.Boolean)"> <summary> Returns the methods that have been associated with the event in metadata using the .other directive, specifying whether to include non-public methods. </summary> <returns> An array of <see cref="T:System.Reflection.EventInfo" /> objects representing methods that have been associated with an event in metadata by using the .other directive. If there are no methods matching the specification, an empty array is returned. </returns> <param name="nonPublic">true to include non-public methods; otherwise, false. </param> <exception cref="T:System.NotImplementedException"> This method is not implemented. </exception> </member> <member name="M:System.Reflection.EventInfo.GetRaiseMethod"> <summary> Returns the method that is called when the event is raised. </summary> <returns> The method that is called when the event is raised. </returns> </member> <member name="M:System.Reflection.EventInfo.GetRaiseMethod(System.Boolean)"> <summary> When overridden in a derived class, returns the method that is called when the event is raised, specifying whether to return non-public methods. </summary> <returns> A MethodInfo object that was called when the event was raised. </returns> <param name="nonPublic">true if non-public methods can be returned; otherwise, false. </param> <exception cref="T:System.MethodAccessException"> <paramref name="nonPublic" /> is true, the method used to add an event handler delegate is non-public, and the caller does not have permission to reflect on non-public methods. </exception> </member> <member name="M:System.Reflection.EventInfo.GetRemoveMethod"> <summary> Returns the method used to remove an event handler delegate from the event source. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method used to remove an event handler delegate from the event source. </returns> </member> <member name="M:System.Reflection.EventInfo.GetRemoveMethod(System.Boolean)"> <summary> When overridden in a derived class, retrieves the MethodInfo object for removing a method of the event, specifying whether to return non-public methods. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method used to remove an event handler delegate from the event source. </returns> <param name="nonPublic">true if non-public methods can be returned; otherwise, false. </param> <exception cref="T:System.MethodAccessException"> <paramref name="nonPublic" /> is true, the method used to add an event handler delegate is non-public, and the caller does not have permission to reflect on non-public methods. </exception> </member> <member name="P:System.Reflection.EventInfo.IsMulticast"> <summary> Gets a value indicating whether the event is multicast. </summary> <returns>true if the delegate is an instance of a multicast delegate; otherwise, false. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="P:System.Reflection.EventInfo.IsSpecialName"> <summary> Gets a value indicating whether the EventInfo has a name with a special meaning. </summary> <returns>true if this event has a special name; otherwise, false. </returns> </member> <member name="P:System.Reflection.EventInfo.MemberType"> <summary> Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is an event. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is an event. </returns> </member> <member name="M:System.Reflection.EventInfo.RemoveEventHandler(System.Object,System.Delegate)"> <summary> Removes an event handler from an event source. </summary> <param name="target"> The event source. </param> <param name="handler"> The delegate to be disassociated from the events raised by target. </param> <exception cref="T:System.InvalidOperationException"> The event does not have a public remove accessor. </exception> <exception cref="T:System.ArgumentException"> The handler that was passed in cannot be used. </exception> <exception cref="T:System.Reflection.TargetException"> The <paramref name="target" /> parameter is null and the event is not static. -or- The <see cref="T:System.Reflection.EventInfo" /> is not declared on the target. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have access permission to the member. </exception> </member> <member name="M:System.Reflection.EventInfo.System#Runtime#InteropServices#_EventInfo#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.EventInfo.System#Runtime#InteropServices#_EventInfo#GetType"> <summary> Returns a T:System.Type object representing the <see cref="T:System.Reflection.EventInfo" /> type. </summary> <returns> A T:System.Type object representing the <see cref="T:System.Reflection.EventInfo" /> type. </returns> </member> <member name="M:System.Reflection.EventInfo.System#Runtime#InteropServices#_EventInfo#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.EventInfo.System#Runtime#InteropServices#_EventInfo#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.EventInfo.System#Runtime#InteropServices#_EventInfo#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="T:System.Reflection.ExceptionHandlingClause"> <summary> Represents a clause in a structured exception-handling block. </summary> </member> <member name="P:System.Reflection.ExceptionHandlingClause.CatchType"> <summary> Gets the type of exception handled by this clause. </summary> <returns> A <see cref="T:System.Type" /> object that represents that type of exception handled by this clause, or null if the <see cref="P:System.Reflection.ExceptionHandlingClause.Flags" /> property is <see cref="F:System.Reflection.ExceptionHandlingClauseOptions.Filter" /> or <see cref="F:System.Reflection.ExceptionHandlingClauseOptions.Finally" />. </returns> <exception cref="T:System.InvalidOperationException"> Invalid use of property for the object's current state. </exception> </member> <member name="P:System.Reflection.ExceptionHandlingClause.FilterOffset"> <summary> Gets the offset within the method body, in bytes, of the user-supplied filter code. </summary> <returns> The offset within the method body, in bytes, of the user-supplied filter code. The value of this property has no meaning if the <see cref="P:System.Reflection.ExceptionHandlingClause.Flags" /> property has any value other than <see cref="F:System.Reflection.ExceptionHandlingClauseOptions.Filter" />. </returns> <exception cref="T:System.InvalidOperationException"> Cannot get the offset because the exception handling clause is not a filter. </exception> </member> <member name="P:System.Reflection.ExceptionHandlingClause.Flags"> <summary> Gets a value indicating whether this exception-handling clause is a finally clause, a type-filtered clause, or a user-filtered clause. </summary> <returns> An <see cref="T:System.Reflection.ExceptionHandlingClauseOptions" /> value that indicates what kind of action this clause performs. </returns> </member> <member name="P:System.Reflection.ExceptionHandlingClause.HandlerLength"> <summary> Gets the length, in bytes, of the body of this exception-handling clause. </summary> <returns> An integer that represents the length, in bytes, of the MSIL that forms the body of this exception-handling clause. </returns> </member> <member name="P:System.Reflection.ExceptionHandlingClause.HandlerOffset"> <summary> Gets the offset within the method body, in bytes, of this exception-handling clause. </summary> <returns> An integer that represents the offset within the method body, in bytes, of this exception-handling clause. </returns> </member> <member name="M:System.Reflection.ExceptionHandlingClause.ToString"> <summary> A string representation of the exception-handling clause. </summary> <returns> A string that lists appropriate property values for the filter clause type. </returns> </member> <member name="P:System.Reflection.ExceptionHandlingClause.TryLength"> <summary> The total length, in bytes, of the try block that includes this exception-handling clause. </summary> <returns> The total length, in bytes, of the try block that includes this exception-handling clause. </returns> </member> <member name="P:System.Reflection.ExceptionHandlingClause.TryOffset"> <summary> The offset within the method, in bytes, of the try block that includes this exception-handling clause. </summary> <returns> An integer that represents the offset within the method, in bytes, of the try block that includes this exception-handling clause. </returns> </member> <member name="T:System.Reflection.ExceptionHandlingClauseOptions"> <summary> Identifies kinds of exception-handling clauses. </summary> </member> <member name="F:System.Reflection.ExceptionHandlingClauseOptions.Clause"> <summary> The clause accepts all exceptions that derive from a specified type. </summary> </member> <member name="F:System.Reflection.ExceptionHandlingClauseOptions.Filter"> <summary> The clause contains user-specified instructions that determine whether the exception should be ignored (that is, whether normal execution should resume), be handled by the associated handler, or be passed on to the next clause. </summary> </member> <member name="F:System.Reflection.ExceptionHandlingClauseOptions.Finally"> <summary> The clause is executed whenever the try block exits, whether through normal control flow or because of an unhandled exception. </summary> </member> <member name="F:System.Reflection.ExceptionHandlingClauseOptions.Fault"> <summary> The clause is executed if an exception occurs, but not on completion of normal control flow. </summary> </member> <member name="T:System.Reflection.FieldAttributes"> <summary> Specifies flags that describe the attributes of a field. </summary> </member> <member name="F:System.Reflection.FieldAttributes.FieldAccessMask"> <summary> Specifies the access level of a given field. </summary> </member> <member name="F:System.Reflection.FieldAttributes.PrivateScope"> <summary> Specifies that the field cannot be referenced. </summary> </member> <member name="F:System.Reflection.FieldAttributes.Private"> <summary> Specifies that the field is accessible only by the parent type. </summary> </member> <member name="F:System.Reflection.FieldAttributes.FamANDAssem"> <summary> Specifies that the field is accessible only by subtypes in this assembly. </summary> </member> <member name="F:System.Reflection.FieldAttributes.Assembly"> <summary> Specifies that the field is accessible throughout the assembly. </summary> </member> <member name="F:System.Reflection.FieldAttributes.Family"> <summary> Specifies that the field is accessible only by type and subtypes. </summary> </member> <member name="F:System.Reflection.FieldAttributes.FamORAssem"> <summary> Specifies that the field is accessible by subtypes anywhere, as well as throughout this assembly. </summary> </member> <member name="F:System.Reflection.FieldAttributes.Public"> <summary> Specifies that the field is accessible by any member for whom this scope is visible. </summary> </member> <member name="F:System.Reflection.FieldAttributes.Static"> <summary> Specifies that the field represents the defined type, or else it is per-instance. </summary> </member> <member name="F:System.Reflection.FieldAttributes.InitOnly"> <summary> Specifies that the field is initialized only, and cannot be written after initialization. </summary> </member> <member name="F:System.Reflection.FieldAttributes.Literal"> <summary> Specifies that the field's value is a compile-time (static or early bound) constant. The field can be set only from a constructor; any other attempt to set it throws <see cref="T:System.FieldAccessException" />. </summary> </member> <member name="F:System.Reflection.FieldAttributes.NotSerialized"> <summary> Specifies that the field does not have to be serialized when the type is remoted. </summary> </member> <member name="F:System.Reflection.FieldAttributes.SpecialName"> <summary> Specifies a special method, with the name describing how the method is special. </summary> </member> <member name="F:System.Reflection.FieldAttributes.PinvokeImpl"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Reflection.FieldAttributes.ReservedMask"> <summary> Reserved. </summary> </member> <member name="F:System.Reflection.FieldAttributes.RTSpecialName"> <summary> Specifies that the common language runtime (metadata internal APIs) should check the name encoding. </summary> </member> <member name="F:System.Reflection.FieldAttributes.HasFieldMarshal"> <summary> Specifies that the field has marshaling information. </summary> </member> <member name="F:System.Reflection.FieldAttributes.HasDefault"> <summary> Specifies that the field has a default value. </summary> </member> <member name="F:System.Reflection.FieldAttributes.HasFieldRVA"> <summary> Specifies that the field has a relative virtual address (RVA). The RVA is the location of the method body in the current image, as an address relative to the start of the image file in which it is located. </summary> </member> <member name="T:System.Reflection.FieldInfo"> <summary> Discovers the attributes of a field and provides access to field metadata. </summary> </member> <member name="M:System.Reflection.FieldInfo.#ctor"> <summary> Initializes a new instance of the FieldInfo class. </summary> </member> <member name="P:System.Reflection.FieldInfo.Attributes"> <summary> Gets the attributes associated with this field. </summary> <returns> The FieldAttributes for this field. </returns> </member> <member name="P:System.Reflection.FieldInfo.FieldHandle"> <summary> Gets a RuntimeFieldHandle, which is a handle to the internal metadata representation of a field. </summary> <returns> A handle to the internal metadata representation of a field. </returns> </member> <member name="P:System.Reflection.FieldInfo.FieldType"> <summary> Gets the type of this field object. </summary> <returns> The type of this field object. </returns> </member> <member name="M:System.Reflection.FieldInfo.GetFieldFromHandle(System.RuntimeFieldHandle)"> <summary> Gets a <see cref="T:System.Reflection.FieldInfo" /> for the field represented by the specified handle. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object representing the field specified by <paramref name="handle" />. </returns> <param name="handle"> A <see cref="T:System.RuntimeFieldHandle" /> structure that contains the handle to the internal metadata representation of a field. </param> <exception cref="T:System.ArgumentException"> <paramref name="handle" /> is invalid. </exception> </member> <member name="M:System.Reflection.FieldInfo.GetFieldFromHandle(System.RuntimeFieldHandle,System.RuntimeTypeHandle)"> <summary> Gets a <see cref="T:System.Reflection.FieldInfo" /> for the field represented by the specified handle, for the specified generic type. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object representing the field specified by <paramref name="handle" />, in the generic type specified by <paramref name="declaringType" />. </returns> <param name="handle"> A <see cref="T:System.RuntimeFieldHandle" /> structure that contains the handle to the internal metadata representation of a field. </param> <param name="declaringType"> A <see cref="T:System.RuntimeTypeHandle" /> structure that contains the handle to the generic type that defines the field. </param> <exception cref="T:System.ArgumentException"> <paramref name="handle" /> is invalid. </exception> </member> <member name="M:System.Reflection.FieldInfo.GetOptionalCustomModifiers"> <summary> Gets an array of types that identify the optional custom modifiers of the field. </summary> <returns> An array of <see cref="T:System.Type" /> objects that identify the optional custom modifiers of the current field, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. </returns> </member> <member name="M:System.Reflection.FieldInfo.GetRawConstantValue"> <summary> Returns a literal value associated with the field by a compiler. </summary> <returns> An <see cref="T:System.Object" /> that contains the literal value associated with the field. If the literal value is a class type with an element value of zero, the return value is null. </returns> <exception cref="T:System.InvalidOperationException"> The Constant table in unmanaged metadata does not contain a constant value for the current property. </exception> <exception cref="T:System.FormatException"> The type of the value is not one of the types permitted by the Common Language Specification (CLS). See the ECMA Partition II specification Metadata Logical Format: Other Structures, Element Types used in Signatures. </exception> </member> <member name="M:System.Reflection.FieldInfo.GetRequiredCustomModifiers"> <summary> Gets an array of types that identify the required custom modifiers of the property. </summary> <returns> An array of <see cref="T:System.Type" /> objects that identify the required custom modifiers of the current property, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDereferenced" />. </returns> </member> <member name="M:System.Reflection.FieldInfo.GetValue(System.Object)"> <summary> When overridden in a derived class, returns the value of a field supported by a given object. </summary> <returns> An object containing the value of the field reflected by this instance. </returns> <param name="obj"> The object whose field value will be returned. </param> <exception cref="T:System.Reflection.TargetException"> The field is non-static and <paramref name="obj" /> is null. </exception> <exception cref="T:System.NotSupportedException"> A field is marked literal, but the field does not have one of the accepted literal types. </exception> <exception cref="T:System.FieldAccessException"> The caller does not have permission to access this field. </exception> <exception cref="T:System.ArgumentException"> The method is neither declared nor inherited by the class of <paramref name="obj" />. </exception> </member> <member name="M:System.Reflection.FieldInfo.GetValueDirect(System.TypedReference)"> <summary> Returns the value of a field supported by a given object. </summary> <returns> An Object containing a field value. </returns> <param name="obj"> A <see cref="T:System.TypedReference" /> structure that encapsulates a managed pointer to a location and a runtime representation of the type that might be stored at that location. </param> <exception cref="T:System.NotSupportedException"> The caller requires the Common Language Specification (CLS) alternative, but called this method instead. </exception> </member> <member name="P:System.Reflection.FieldInfo.IsAssembly"> <summary> Gets a value indicating whether the potential visibility of this field is described by <see cref="F:System.Reflection.FieldAttributes.Assembly" />; that is, the field is visible at most to other types in the same assembly, and is not visible to derived types outside the assembly. </summary> <returns>true if the visibility of this field is exactly described by <see cref="F:System.Reflection.FieldAttributes.Assembly" />; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsFamily"> <summary> Gets a value indicating whether the visibility of this field is described by <see cref="F:System.Reflection.FieldAttributes.Family" />; that is, the field is visible only within its class and derived classes. </summary> <returns>true if access to this field is exactly described by <see cref="F:System.Reflection.FieldAttributes.Family" />; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsFamilyAndAssembly"> <summary> Gets a value indicating whether the visibility of this field is described by <see cref="F:System.Reflection.FieldAttributes.FamANDAssem" />; that is, the field can be accessed from derived classes, but only if they are in the same assembly. </summary> <returns>true if access to this field is exactly described by <see cref="F:System.Reflection.FieldAttributes.FamANDAssem" />; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsFamilyOrAssembly"> <summary> Gets a value indicating whether the potential visibility of this field is described by <see cref="F:System.Reflection.FieldAttributes.FamORAssem" />; that is, the field can be accessed by derived classes wherever they are, and by classes in the same assembly. </summary> <returns>true if access to this field is exactly described by <see cref="F:System.Reflection.FieldAttributes.FamORAssem" />; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsInitOnly"> <summary> Gets a value indicating whether the field can only be set in the body of the constructor. </summary> <returns>true if the field has the InitOnly attribute set; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsLiteral"> <summary> Gets a value indicating whether the value is written at compile time and cannot be changed. </summary> <returns>true if the field has the Literal attribute set; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsNotSerialized"> <summary> Gets a value indicating whether this field has the NotSerialized attribute. </summary> <returns>true if the field has the NotSerialized attribute set; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsPinvokeImpl"> <summary> Gets a value indicating whether the corresponding PinvokeImpl attribute is set in <see cref="T:System.Reflection.FieldAttributes" />. </summary> <returns>true if the PinvokeImpl attribute is set in <see cref="T:System.Reflection.FieldAttributes" />; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsPrivate"> <summary> Gets a value indicating whether the field is private. </summary> <returns>true if the field is private; otherwise; false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsPublic"> <summary> Gets a value indicating whether the field is public. </summary> <returns>true if this field is public; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsSpecialName"> <summary> Gets a value indicating whether the corresponding SpecialName attribute is set in the <see cref="T:System.Reflection.FieldAttributes" /> enumerator. </summary> <returns>true if the SpecialName attribute is set in <see cref="T:System.Reflection.FieldAttributes" />; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.IsStatic"> <summary> Gets a value indicating whether the field is static. </summary> <returns>true if this field is static; otherwise, false. </returns> </member> <member name="P:System.Reflection.FieldInfo.MemberType"> <summary> Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a field. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a field. </returns> </member> <member name="M:System.Reflection.FieldInfo.SetValue(System.Object,System.Object)"> <summary> Sets the value of the field supported by the given object. </summary> <param name="obj"> The object whose field value will be set. </param> <param name="value"> The value to assign to the field. </param> <exception cref="T:System.FieldAccessException"> The caller does not have permission to access this field. </exception> <exception cref="T:System.Reflection.TargetException"> The <paramref name="obj" /> parameter is null and the field is an instance field. </exception> <exception cref="T:System.ArgumentException"> The field does not exist on the object. -or- The <paramref name="value" /> parameter cannot be converted and stored in the field. </exception> </member> <member name="M:System.Reflection.FieldInfo.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo)"> <summary> When overridden in a derived class, sets the value of the field supported by the given object. </summary> <param name="obj"> The object whose field value will be set. </param> <param name="value"> The value to assign to the field. </param> <param name="invokeAttr"> A field of Binder that specifies the type of binding that is desired (for example, Binder.CreateInstance or Binder.ExactBinding). </param> <param name="binder"> A set of properties that enables the binding, coercion of argument types, and invocation of members through reflection. If <paramref name="binder" /> is null, then Binder.DefaultBinding is used. </param> <param name="culture"> The software preferences of a particular culture. </param> <exception cref="T:System.FieldAccessException"> The caller does not have permission to access this field. </exception> <exception cref="T:System.Reflection.TargetException"> The <paramref name="obj" /> parameter is null and the field is an instance field. </exception> <exception cref="T:System.ArgumentException"> The field does not exist on the object. -or- The <paramref name="value" /> parameter cannot be converted and stored in the field. </exception> </member> <member name="M:System.Reflection.FieldInfo.SetValueDirect(System.TypedReference,System.Object)"> <summary> Sets the value of the field supported by the given object. </summary> <param name="obj"> A <see cref="T:System.TypedReference" /> structure that encapsulates a managed pointer to a location and a runtime representation of the type that can be stored at that location. </param> <param name="value"> The value to assign to the field. </param> <exception cref="T:System.NotSupportedException"> The caller requires the Common Language Specification (CLS) alternative, but called this method instead. </exception> </member> <member name="M:System.Reflection.FieldInfo.System#Runtime#InteropServices#_FieldInfo#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.FieldInfo.System#Runtime#InteropServices#_FieldInfo#GetType"> <summary> Gets a <see cref="T:System.Type" /> object representing the <see cref="T:System.Reflection.FieldInfo" /> type. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Reflection.FieldInfo" /> type. </returns> </member> <member name="M:System.Reflection.FieldInfo.System#Runtime#InteropServices#_FieldInfo#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.FieldInfo.System#Runtime#InteropServices#_FieldInfo#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.FieldInfo.System#Runtime#InteropServices#_FieldInfo#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="T:System.Reflection.GenericParameterAttributes"> <summary> Describes the constraints on a generic type parameter of a generic type or method. </summary> </member> <member name="F:System.Reflection.GenericParameterAttributes.None"> <summary> There are no special flags. </summary> </member> <member name="F:System.Reflection.GenericParameterAttributes.VarianceMask"> <summary> Selects the combination of all variance flags. This value is the result of using logical OR to combine the following flags: <see cref="F:System.Reflection.GenericParameterAttributes.Contravariant" /> and <see cref="F:System.Reflection.GenericParameterAttributes.Covariant" />. </summary> </member> <member name="F:System.Reflection.GenericParameterAttributes.Covariant"> <summary> The generic type parameter is covariant. A covariant type parameter can appear as the result type of a method, the type of a read-only field, a declared base type, or an implemented interface. </summary> </member> <member name="F:System.Reflection.GenericParameterAttributes.Contravariant"> <summary> The generic type parameter is contravariant. A contravariant type parameter can appear as a parameter type in method signatures. </summary> </member> <member name="F:System.Reflection.GenericParameterAttributes.SpecialConstraintMask"> <summary> Selects the combination of all special constraint flags. This value is the result of using logical OR to combine the following flags: <see cref="F:System.Reflection.GenericParameterAttributes.DefaultConstructorConstraint" />, <see cref="F:System.Reflection.GenericParameterAttributes.ReferenceTypeConstraint" />, and <see cref="F:System.Reflection.GenericParameterAttributes.NotNullableValueTypeConstraint" />. </summary> </member> <member name="F:System.Reflection.GenericParameterAttributes.ReferenceTypeConstraint"> <summary> A type can be substituted for the generic type parameter only if it is a reference type. </summary> </member> <member name="F:System.Reflection.GenericParameterAttributes.NotNullableValueTypeConstraint"> <summary> A type can be substituted for the generic type parameter only if it is a value type and is not nullable. </summary> </member> <member name="F:System.Reflection.GenericParameterAttributes.DefaultConstructorConstraint"> <summary> A type can be substituted for the generic type parameter only if it has a parameterless constructor. </summary> </member> <member name="T:System.Reflection.ICustomAttributeProvider"> <summary> Provides custom attributes for reflection objects that support them. </summary> </member> <member name="M:System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Boolean)"> <summary> Returns an array of all of the custom attributes defined on this member, excluding named attributes, or an empty array if there are no custom attributes. </summary> <returns> An array of Objects representing custom attributes, or an empty array. </returns> <param name="inherit"> When true, look up the hierarchy chain for the inherited custom attribute. </param> <exception cref="T:System.TypeLoadException"> The custom attribute type cannot be loaded. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> There is more than one attribute of type <paramref name="attributeType" /> defined on this member. </exception> </member> <member name="M:System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Returns an array of custom attributes defined on this member, identified by type, or an empty array if there are no custom attributes of that type. </summary> <returns> An array of Objects representing custom attributes, or an empty array. </returns> <param name="attributeType"> The type of the custom attributes. </param> <param name="inherit"> When true, look up the hierarchy chain for the inherited custom attribute. </param> <exception cref="T:System.TypeLoadException"> The custom attribute type cannot be loaded. </exception> <exception cref="T:System.Reflection.AmbiguousMatchException"> There is more than one attribute of type <paramref name="attributeType" /> defined on this member. </exception> </member> <member name="M:System.Reflection.ICustomAttributeProvider.IsDefined(System.Type,System.Boolean)"> <summary> Indicates whether one or more instance of <paramref name="attributeType" /> is defined on this member. </summary> <returns>true if the <paramref name="attributeType" /> is defined on this member; false otherwise. </returns> <param name="attributeType"> The type of the custom attributes. </param> <param name="inherit"> When true, look up the hierarchy chain for the inherited custom attribute. </param> </member> <member name="T:System.Reflection.ImageFileMachine"> <summary> Identifies the platform targeted by an executable. </summary> </member> <member name="F:System.Reflection.ImageFileMachine.I386"> <summary> Targets a 32-bit Intel processor. </summary> </member> <member name="F:System.Reflection.ImageFileMachine.IA64"> <summary> Targets a 64-bit Intel processor. </summary> </member> <member name="F:System.Reflection.ImageFileMachine.AMD64"> <summary> Targets a 64-bit AMD processor. </summary> </member> <member name="T:System.Reflection.InterfaceMapping"> <summary> Retrieves the mapping of an interface into the actual methods on a class that implements that interface. </summary> </member> <member name="F:System.Reflection.InterfaceMapping.InterfaceMethods"> <summary> Shows the methods that are defined on the interface. </summary> </member> <member name="F:System.Reflection.InterfaceMapping.InterfaceType"> <summary> Shows the type that represents the interface. </summary> </member> <member name="F:System.Reflection.InterfaceMapping.TargetMethods"> <summary> Shows the methods that implement the interface. </summary> </member> <member name="F:System.Reflection.InterfaceMapping.TargetType"> <summary> Represents the type that was used to create the interface mapping. </summary> </member> <member name="T:System.Reflection.InvalidFilterCriteriaException"> <summary> The exception that is thrown in <see cref="M:System.Type.FindMembers(System.Reflection.MemberTypes,System.Reflection.BindingFlags,System.Reflection.MemberFilter,System.Object)" /> when the filter criteria is not valid for the type of filter you are using. </summary> </member> <member name="M:System.Reflection.InvalidFilterCriteriaException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.InvalidFilterCriteriaException" /> class with the default properties. </summary> </member> <member name="M:System.Reflection.InvalidFilterCriteriaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.InvalidFilterCriteriaException" /> class with the specified serialization and context information. </summary> <param name="info"> A SerializationInfo object that contains the information required to serialize this instance. </param> <param name="context"> A StreamingContext object that contains the source and destination of the serialized stream associated with this instance. </param> </member> <member name="M:System.Reflection.InvalidFilterCriteriaException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.InvalidFilterCriteriaException" /> class with the given HRESULT and message string. </summary> <param name="message"> The message text for the exception. </param> </member> <member name="M:System.Reflection.InvalidFilterCriteriaException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.InvalidFilterCriteriaException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Reflection.IReflect"> <summary> Interoperates with the IDispatch interface. </summary> </member> <member name="M:System.Reflection.IReflect.GetField(System.String,System.Reflection.BindingFlags)"> <summary> Returns the <see cref="T:System.Reflection.FieldInfo" /> object that corresponds to the specified field and binding flag. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object containing the field information for the named object that meets the search constraints specified in <paramref name="bindingAttr" />. </returns> <param name="name"> The name of the field to find. </param> <param name="bindingAttr"> The binding attributes used to control the search. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> The object implements multiple fields with the same name. </exception> </member> <member name="M:System.Reflection.IReflect.GetFields(System.Reflection.BindingFlags)"> <summary> Returns an array of <see cref="T:System.Reflection.FieldInfo" /> objects that correspond to all fields of the current class. </summary> <returns> An array of <see cref="T:System.Reflection.FieldInfo" /> objects containing all the field information for this reflection object that meets the search constraints specified in <paramref name="bindingAttr" />. </returns> <param name="bindingAttr"> The binding attributes used to control the search. </param> </member> <member name="M:System.Reflection.IReflect.GetMember(System.String,System.Reflection.BindingFlags)"> <summary> Retrieves an array of <see cref="T:System.Reflection.MemberInfo" /> objects corresponding to all public members or to all members that match a specified name. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects matching the <paramref name="name" /> parameter. </returns> <param name="name"> The name of the member to find. </param> <param name="bindingAttr"> The binding attributes used to control the search. </param> </member> <member name="M:System.Reflection.IReflect.GetMembers(System.Reflection.BindingFlags)"> <summary> Retrieves an array of <see cref="T:System.Reflection.MemberInfo" /> objects that correspond either to all public members or to all members of the current class. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects containing all the member information for this reflection object. </returns> <param name="bindingAttr"> The binding attributes used to control the search. </param> </member> <member name="M:System.Reflection.IReflect.GetMethod(System.String,System.Reflection.BindingFlags)"> <summary> Retrieves a <see cref="T:System.Reflection.MethodInfo" /> object that corresponds to a specified method under specified search constraints. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object containing the method information, with the match being based on the method name and search constraints specified in <paramref name="bindingAttr" />. </returns> <param name="name"> The name of the member to find. </param> <param name="bindingAttr"> The binding attributes used to control the search. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> The object implements multiple methods with the same name. </exception> </member> <member name="M:System.Reflection.IReflect.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Retrieves a <see cref="T:System.Reflection.MethodInfo" /> object corresponding to a specified method, using a <see cref="T:System.Type" /> array to choose from among overloaded methods. </summary> <returns> The requested method that matches all the specified parameters. </returns> <param name="name"> The name of the member to find. </param> <param name="bindingAttr"> The binding attributes used to control the search. </param> <param name="binder"> An object that implements <see cref="T:System.Reflection.Binder" />, containing properties related to this method. </param> <param name="types"> An array used to choose among overloaded methods. </param> <param name="modifiers"> An array of parameter modifiers used to make binding work with parameter signatures in which the types have been modified. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> The object implements multiple methods with the same name. </exception> </member> <member name="M:System.Reflection.IReflect.GetMethods(System.Reflection.BindingFlags)"> <summary> Retrieves an array of <see cref="T:System.Reflection.MethodInfo" /> objects with all public methods or all methods of the current class. </summary> <returns> An array of <see cref="T:System.Reflection.MethodInfo" /> objects containing all the methods defined for this reflection object that meet the search constraints specified in <paramref name="bindingAttr" />. </returns> <param name="bindingAttr"> The binding attributes used to control the search. </param> </member> <member name="M:System.Reflection.IReflect.GetProperties(System.Reflection.BindingFlags)"> <summary> Retrieves an array of <see cref="T:System.Reflection.PropertyInfo" /> objects corresponding to all public properties or to all properties of the current class. </summary> <returns> An array of <see cref="T:System.Reflection.PropertyInfo" /> objects for all the properties defined on the reflection object. </returns> <param name="bindingAttr"> The binding attribute used to control the search. </param> </member> <member name="M:System.Reflection.IReflect.GetProperty(System.String,System.Reflection.BindingFlags)"> <summary> Retrieves a <see cref="T:System.Reflection.PropertyInfo" /> object corresponding to a specified property under specified search constraints. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object for the located property that meets the search constraints specified in <paramref name="bindingAttr" />, or null if the property was not located. </returns> <param name="name"> The name of the property to find. </param> <param name="bindingAttr"> The binding attributes used to control the search. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> The object implements multiple fields with the same name. </exception> </member> <member name="M:System.Reflection.IReflect.GetProperty(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Retrieves a <see cref="T:System.Reflection.PropertyInfo" /> object that corresponds to a specified property with specified search constraints. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object for the located property, if a property with the specified name was located in this reflection object, or null if the property was not located. </returns> <param name="name"> The name of the member to find. </param> <param name="bindingAttr"> The binding attribute used to control the search. </param> <param name="binder"> An object that implements <see cref="T:System.Reflection.Binder" />, containing properties related to this method. </param> <param name="returnType"> The type of the property. </param> <param name="types"> An array used to choose among overloaded methods with the same name. </param> <param name="modifiers"> An array used to choose the parameter modifiers. </param> </member> <member name="M:System.Reflection.IReflect.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])"> <summary> Invokes a specified member. </summary> <returns> The specified member. </returns> <param name="name"> The name of the member to find. </param> <param name="invokeAttr"> One of the <see cref="T:System.Reflection.BindingFlags" /> invocation attributes. The <paramref name="invokeAttr" /> parameter may be a constructor, method, property, or field. A suitable invocation attribute must be specified. Invoke the default member of a class by passing the empty string ("") as the name of the member. </param> <param name="binder"> One of the <see cref="T:System.Reflection.BindingFlags" /> bit flags. Implements <see cref="T:System.Reflection.Binder" />, containing properties related to this method. </param> <param name="target"> The object on which to invoke the specified member. This parameter is ignored for static members. </param> <param name="args"> An array of objects that contains the number, order, and type of the parameters of the member to be invoked. This is an empty array if there are no parameters. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects. This array has the same length as the <paramref name="args" /> parameter, representing the invoked member's argument attributes in the metadata. A parameter can have the following attributes: pdIn, pdOut, pdRetval, pdOptional, and pdHasDefault. These represent [In], [Out], [retval], [optional], and a default parameter, respectively. These attributes are used by various interoperability services. </param> <param name="culture"> An instance of <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. For example, <paramref name="culture" /> converts a String that represents 1000 to a Double value, since 1000 is represented differently by different cultures. If this parameter is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <param name="namedParameters"> A String array of parameters. </param> <exception cref="T:System.ArgumentException"> <paramref name="invokeAttr" /> is <see cref="F:System.Reflection.BindingFlags.CreateInstance" /> and another bit flag is also set. </exception> <exception cref="T:System.ArgumentException"> <paramref name="invokeAttr" /> is not <see cref="F:System.Reflection.BindingFlags.CreateInstance" /> and <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="invokeAttr" /> is not an invocation attribute from <see cref="T:System.Reflection.BindingFlags" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="invokeAttr" /> specifies both get and set for a property or field. </exception> <exception cref="T:System.ArgumentException"> <paramref name="invokeAttr" /> specifies both a field set and an Invoke method. <paramref name="args" /> are provided for a field get. </exception> <exception cref="T:System.ArgumentException"> More than one argument is specified for a field set. </exception> <exception cref="T:System.MissingFieldException"> The field or property cannot be found. </exception> <exception cref="T:System.MissingMethodException"> The method cannot be found. </exception> <exception cref="T:System.Security.SecurityException"> A private member is invoked without the necessary <see cref="T:System.Security.Permissions.ReflectionPermission" />. </exception> </member> <member name="P:System.Reflection.IReflect.UnderlyingSystemType"> <summary> Gets the underlying type that represents the <see cref="T:System.Reflection.IReflect" /> object. </summary> <returns> The underlying type that represents the <see cref="T:System.Reflection.IReflect" /> object. </returns> </member> <member name="T:System.Reflection.LocalVariableInfo"> <summary> Discovers the attributes of a local variable and provides access to local variable metadata. </summary> </member> <member name="P:System.Reflection.LocalVariableInfo.IsPinned"> <summary> Gets a <see cref="T:System.Boolean" /> value indicating whether the object referred to by the local variable is pinned in memory. </summary> <returns>true if the object referred to by the variable is pinned in memory; otherwise, false. </returns> </member> <member name="P:System.Reflection.LocalVariableInfo.LocalIndex"> <summary> Gets the index of the local variable within the method body. </summary> <returns> An integer value that represents the order of declaration of the local variable within the method body. </returns> </member> <member name="P:System.Reflection.LocalVariableInfo.LocalType"> <summary> Gets the type of the local variable. </summary> <returns> A <see cref="T:System.Type" /> object that represents the type of the local variable. </returns> </member> <member name="M:System.Reflection.LocalVariableInfo.ToString"> <summary> Returns a user-readable string that describes the local variable. </summary> <returns> A string that displays information about the local variable, including the type name, index, and pinned status. </returns> </member> <member name="T:System.Reflection.ManifestResourceInfo"> <summary> Provides access to manifest resources, which are XML files that describe application dependencies. </summary> </member> <member name="P:System.Reflection.ManifestResourceInfo.FileName"> <summary> Indicates the name of the file containing the manifest resource, if not the same as the manifest file. This property is read-only. </summary> <returns> A String that is the manifest resource's file name. </returns> </member> <member name="P:System.Reflection.ManifestResourceInfo.ReferencedAssembly"> <summary> Indicates the containing assembly. This property is read-only. </summary> <returns> An <see cref="T:System.Reflection.Assembly" /> object representing the manifest resource's containing assembly. </returns> </member> <member name="P:System.Reflection.ManifestResourceInfo.ResourceLocation"> <summary> Indicates the manifest resource's location. This property is read-only. </summary> <returns> A combination of the <see cref="T:System.Reflection.ResourceLocation" /> flags. </returns> </member> <member name="T:System.Reflection.MemberFilter"> <summary> Represents a delegate that is used to filter a list of members represented in an array of <see cref="T:System.Reflection.MemberInfo" /> objects. </summary> <returns>true to include the member in the filtered list; otherwise false. </returns> <param name="m"> The <see cref="T:System.Reflection.MemberInfo" /> object to which the filter is applied. </param> <param name="filterCriteria"> An arbitrary object used to filter the list. </param> </member> <member name="T:System.Reflection.MemberInfo"> <summary> Obtains information about the attributes of a member and provides access to member metadata. </summary> </member> <member name="M:System.Reflection.MemberInfo.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.MemberInfo" /> class. </summary> </member> <member name="P:System.Reflection.MemberInfo.DeclaringType"> <summary> Gets the class that declares this member. </summary> <returns> The Type object for the class that declares this member. </returns> </member> <member name="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)"> <summary> When overridden in a derived class, returns an array containing all the custom attributes. </summary> <returns> An array that contains all the custom attributes, or an array with zero elements if no attributes are defined. </returns> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> <exception cref="T:System.InvalidOperationException"> This member belongs to a type that is loaded into the reflection-only context. See How to: Load Assemblies into the Reflection-Only Context. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> </member> <member name="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Type,System.Boolean)"> <summary> When overridden in a derived class, returns an array of custom attributes identified by <see cref="T:System.Type" />. </summary> <returns> An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> <exception cref="T:System.ArgumentNullException"> If <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> This member belongs to a type that is loaded into the reflection-only context. See How to: Load Assemblies into the Reflection-Only Context. </exception> </member> <member name="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)"> <summary> When overridden in a derived class, indicates whether one or more instance of <paramref name="attributeType" /> is applied to this member. </summary> <returns>true if one or more instance of <paramref name="attributeType" /> is applied to this member; otherwise false. </returns> <param name="attributeType"> The Type object to which the custom attributes are applied. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> </member> <member name="P:System.Reflection.MemberInfo.MemberType"> <summary> When overridden in a derived class, gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating the type of the member — method, constructor, event, and so on. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating the type of member. </returns> </member> <member name="P:System.Reflection.MemberInfo.MetadataToken"> <summary> Gets a value that identifies a metadata element. </summary> <returns> A value which, in combination with <see cref="P:System.Reflection.MemberInfo.Module" />, uniquely identifies a metadata element. </returns> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Reflection.MemberInfo" /> represents an array method, such as Address, on an array type whose element type is a dynamic type that has not been completed. To get a metadata token in this case, pass the <see cref="T:System.Reflection.MemberInfo" /> object to the <see cref="M:System.Reflection.Emit.ModuleBuilder.GetMethodToken(System.Reflection.MethodInfo)" /> method; or use the <see cref="M:System.Reflection.Emit.ModuleBuilder.GetArrayMethodToken(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])" /> method to get the token directly, instead of using the <see cref="M:System.Reflection.Emit.ModuleBuilder.GetArrayMethod(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])" /> method to get a <see cref="T:System.Reflection.MethodInfo" /> first. </exception> </member> <member name="P:System.Reflection.MemberInfo.Module"> <summary> Gets the module in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined. </summary> <returns> The <see cref="T:System.Reflection.Module" /> in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined. </returns> <exception cref="T:System.NotImplementedException"> This method is not implemented. </exception> </member> <member name="P:System.Reflection.MemberInfo.Name"> <summary> Gets the name of the current member. </summary> <returns> A <see cref="T:System.String" /> containing the name of this member. </returns> </member> <member name="P:System.Reflection.MemberInfo.ReflectedType"> <summary> Gets the class object that was used to obtain this instance of MemberInfo. </summary> <returns> The Type object through which this MemberInfo object was obtained. </returns> </member> <member name="M:System.Reflection.MemberInfo.System#Runtime#InteropServices#_MemberInfo#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.MemberInfo.System#Runtime#InteropServices#_MemberInfo#GetType"> <summary> Gets a <see cref="T:System.Type" /> object representing the <see cref="T:System.Reflection.MemberInfo" /> class. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Reflection.MemberInfo" /> class. </returns> </member> <member name="M:System.Reflection.MemberInfo.System#Runtime#InteropServices#_MemberInfo#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.MemberInfo.System#Runtime#InteropServices#_MemberInfo#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.MemberInfo.System#Runtime#InteropServices#_MemberInfo#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="T:System.Reflection.MemberTypes"> <summary> Marks each type of member that is defined as a derived class of MemberInfo. </summary> </member> <member name="F:System.Reflection.MemberTypes.Constructor"> <summary> Specifies that the member is a constructor, representing a <see cref="T:System.Reflection.ConstructorInfo" /> member. Hexadecimal value of 0x01. </summary> </member> <member name="F:System.Reflection.MemberTypes.Event"> <summary> Specifies that the member is an event, representing an <see cref="T:System.Reflection.EventInfo" /> member. Hexadecimal value of 0x02. </summary> </member> <member name="F:System.Reflection.MemberTypes.Field"> <summary> Specifies that the member is a field, representing a <see cref="T:System.Reflection.FieldInfo" /> member. Hexadecimal value of 0x04. </summary> </member> <member name="F:System.Reflection.MemberTypes.Method"> <summary> Specifies that the member is a method, representing a <see cref="T:System.Reflection.MethodInfo" /> member. Hexadecimal value of 0x08. </summary> </member> <member name="F:System.Reflection.MemberTypes.Property"> <summary> Specifies that the member is a property, representing a <see cref="T:System.Reflection.PropertyInfo" /> member. Hexadecimal value of 0x10. </summary> </member> <member name="F:System.Reflection.MemberTypes.TypeInfo"> <summary> Specifies that the member is a type, representing a <see cref="F:System.Reflection.MemberTypes.TypeInfo" /> member. Hexadecimal value of 0x20. </summary> </member> <member name="F:System.Reflection.MemberTypes.Custom"> <summary> Specifies that the member is a custom member type. Hexadecimal value of 0x40. </summary> </member> <member name="F:System.Reflection.MemberTypes.NestedType"> <summary> Specifies that the member is a nested type, extending <see cref="T:System.Reflection.MemberInfo" />. </summary> </member> <member name="F:System.Reflection.MemberTypes.All"> <summary> Specifies all member types. </summary> </member> <member name="T:System.Reflection.MethodAttributes"> <summary> Specifies flags for method attributes. These flags are defined in the corhdr.h file. </summary> </member> <member name="F:System.Reflection.MethodAttributes.MemberAccessMask"> <summary> Retrieves accessibility information. </summary> </member> <member name="F:System.Reflection.MethodAttributes.PrivateScope"> <summary> Indicates that the member cannot be referenced. </summary> </member> <member name="F:System.Reflection.MethodAttributes.Private"> <summary> Indicates that the method is accessible only to the current class. </summary> </member> <member name="F:System.Reflection.MethodAttributes.FamANDAssem"> <summary> Indicates that the method is accessible to members of this type and its derived types that are in this assembly only. </summary> </member> <member name="F:System.Reflection.MethodAttributes.Assembly"> <summary> Indicates that the method is accessible to any class of this assembly. </summary> </member> <member name="F:System.Reflection.MethodAttributes.Family"> <summary> Indicates that the method is accessible only to members of this class and its derived classes. </summary> </member> <member name="F:System.Reflection.MethodAttributes.FamORAssem"> <summary> Indicates that the method is accessible to derived classes anywhere, as well as to any class in the assembly. </summary> </member> <member name="F:System.Reflection.MethodAttributes.Public"> <summary> Indicates that the method is accessible to any object for which this object is in scope. </summary> </member> <member name="F:System.Reflection.MethodAttributes.Static"> <summary> Indicates that the method is defined on the type; otherwise, it is defined per instance. </summary> </member> <member name="F:System.Reflection.MethodAttributes.Final"> <summary> Indicates that the method cannot be overridden. </summary> </member> <member name="F:System.Reflection.MethodAttributes.Virtual"> <summary> Indicates that the method is virtual. </summary> </member> <member name="F:System.Reflection.MethodAttributes.HideBySig"> <summary> Indicates that the method hides by name and signature; otherwise, by name only. </summary> </member> <member name="F:System.Reflection.MethodAttributes.CheckAccessOnOverride"> <summary> Indicates that the method can only be overridden when it is also accessible. </summary> </member> <member name="F:System.Reflection.MethodAttributes.VtableLayoutMask"> <summary> Retrieves vtable attributes. </summary> </member> <member name="F:System.Reflection.MethodAttributes.ReuseSlot"> <summary> Indicates that the method will reuse an existing slot in the vtable. This is the default behavior. </summary> </member> <member name="F:System.Reflection.MethodAttributes.NewSlot"> <summary> Indicates that the method always gets a new slot in the vtable. </summary> </member> <member name="F:System.Reflection.MethodAttributes.Abstract"> <summary> Indicates that the class does not provide an implementation of this method. </summary> </member> <member name="F:System.Reflection.MethodAttributes.SpecialName"> <summary> Indicates that the method is special. The name describes how this method is special. </summary> </member> <member name="F:System.Reflection.MethodAttributes.PinvokeImpl"> <summary> Indicates that the method implementation is forwarded through PInvoke (Platform Invocation Services). </summary> </member> <member name="F:System.Reflection.MethodAttributes.UnmanagedExport"> <summary> Indicates that the managed method is exported by thunk to unmanaged code. </summary> </member> <member name="F:System.Reflection.MethodAttributes.RTSpecialName"> <summary> Indicates that the common language runtime checks the name encoding. </summary> </member> <member name="F:System.Reflection.MethodAttributes.ReservedMask"> <summary> Indicates a reserved flag for runtime use only. </summary> </member> <member name="F:System.Reflection.MethodAttributes.HasSecurity"> <summary> Indicates that the method has security associated with it. Reserved flag for runtime use only. </summary> </member> <member name="F:System.Reflection.MethodAttributes.RequireSecObject"> <summary> Indicates that the method calls another method containing security code. Reserved flag for runtime use only. </summary> </member> <member name="T:System.Reflection.MethodBase"> <summary> Provides information about methods and constructors. </summary> </member> <member name="M:System.Reflection.MethodBase.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.MethodBase" /> class. </summary> </member> <member name="P:System.Reflection.MethodBase.Attributes"> <summary> Gets the attributes associated with this method. </summary> <returns> One of the <see cref="T:System.Reflection.MethodAttributes" /> values. </returns> </member> <member name="P:System.Reflection.MethodBase.CallingConvention"> <summary> Gets a value indicating the calling conventions for this method. </summary> <returns> The <see cref="T:System.Reflection.CallingConventions" /> for this method. </returns> </member> <member name="P:System.Reflection.MethodBase.ContainsGenericParameters"> <summary> Gets a value indicating whether the generic method contains unassigned generic type parameters. </summary> <returns>true if the current <see cref="T:System.Reflection.MethodBase" /> object represents a generic method that contains unassigned generic type parameters; otherwise, false. </returns> </member> <member name="M:System.Reflection.MethodBase.GetCurrentMethod"> <summary> Returns a MethodBase object representing the currently executing method. </summary> <returns> A MethodBase object representing the currently executing method. </returns> <exception cref="T:System.Reflection.TargetException"> This member was invoked with a late-binding mechanism. </exception> </member> <member name="M:System.Reflection.MethodBase.GetGenericArguments"> <summary> Returns an array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic method or the type parameters of a generic method definition. </summary> <returns> An array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic method or the type parameters of a generic method definition. Returns an empty array if the current method is not a generic method. </returns> <exception cref="T:System.NotSupportedException"> The current object is a <see cref="T:System.Reflection.ConstructorInfo" />. Generic constructors are not supported in the .NET Framework version 2.0. This exception is the default behavior if this method is not overridden in a derived class. </exception> </member> <member name="M:System.Reflection.MethodBase.GetMethodBody"> <summary> When overridden in a derived class, gets a <see cref="T:System.Reflection.MethodBody" /> object that provides access to the MSIL stream, local variables, and exceptions for the current method. </summary> <returns> A <see cref="T:System.Reflection.MethodBody" /> object that provides access to the MSIL stream, local variables, and exceptions for the current method. </returns> <exception cref="T:System.InvalidOperationException"> This method is invalid unless overridden in a derived class. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.MethodBase.GetMethodFromHandle(System.RuntimeMethodHandle)"> <summary> Gets method information by using the method's internal metadata representation (handle). </summary> <returns> A MethodBase containing information about the method. </returns> <param name="handle"> The method's handle. </param> <exception cref="T:System.ArgumentException"> <paramref name="handle" /> is invalid. </exception> </member> <member name="M:System.Reflection.MethodBase.GetMethodFromHandle(System.RuntimeMethodHandle,System.RuntimeTypeHandle)"> <summary> Gets a <see cref="T:System.Reflection.MethodBase" /> object for the constructor or method represented by the specified handle, for the specified generic type. </summary> <returns> A <see cref="T:System.Reflection.MethodBase" /> object representing the method or constructor specified by <paramref name="handle" />, in the generic type specified by <paramref name="declaringType" />. </returns> <param name="handle"> A handle to the internal metadata representation of a constructor or method. </param> <param name="declaringType"> A handle to the generic type that defines the constructor or method. </param> <exception cref="T:System.ArgumentException"> <paramref name="handle" /> is invalid. </exception> </member> <member name="M:System.Reflection.MethodBase.GetMethodImplementationFlags"> <summary> When overridden in a derived class, returns the <see cref="T:System.Reflection.MethodImplAttributes" /> flags. </summary> <returns> The MethodImplAttributes flags. </returns> </member> <member name="M:System.Reflection.MethodBase.GetParameters"> <summary> When overridden in a derived class, gets the parameters of the specified method or constructor. </summary> <returns> An array of type ParameterInfo containing information that matches the signature of the method (or constructor) reflected by this MethodBase instance. </returns> </member> <member name="M:System.Reflection.MethodBase.Invoke(System.Object,System.Object[])"> <summary> Invokes the method or constructor represented by the current instance, using the specified parameters. </summary> <returns> An object containing the return value of the invoked method, or null in the case of a constructor. </returns> <param name="obj"> The object on which to invoke the method or constructor. If a method is static, this argument is ignored. If a constructor is static, this argument must be null or an instance of the class that defines the constructor. </param> <param name="parameters"> An argument list for the invoked method or constructor. This is an array of objects with the same number, order, and type as the parameters of the method or constructor to be invoked. If there are no parameters, <paramref name="parameters" /> should be null. If the method or constructor represented by this instance takes a ref parameter (ByRef in Visual Basic), no special attribute is required for that parameter in order to invoke the method or constructor using this function. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> <exception cref="T:System.Reflection.TargetException"> The <paramref name="obj" /> parameter is null and the method is not static. -or- The method is not declared or inherited by the class of <paramref name="obj" />. -or- A static constructor is invoked, and <paramref name="obj" /> is neither null nor an instance of the class that declared the constructor. </exception> <exception cref="T:System.ArgumentException"> The elements of the <paramref name="parameters" /> array do not match the signature of the method or constructor reflected by this instance. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The invoked method or constructor throws an exception. </exception> <exception cref="T:System.Reflection.TargetParameterCountException"> The <paramref name="parameters" /> array does not have the correct number of arguments. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to execute the constructor. </exception> <exception cref="T:System.InvalidOperationException"> The type that declares the method is an open generic type. That is, the <see cref="P:System.Type.ContainsGenericParameters" /> property returns true for the declaring type. </exception> </member> <member name="M:System.Reflection.MethodBase.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> When overridden in a derived class, invokes the reflected method or constructor with the given parameters. </summary> <returns> An Object containing the return value of the invoked method, or null in the case of a constructor, or null if the method's return type is void. Before calling the method or constructor, Invoke checks to see if the user has access permission and verify that the parameters are valid. </returns> <param name="obj"> The object on which to invoke the method or constructor. If a method is static, this argument is ignored. If a constructor is static, this argument must be null or an instance of the class that defines the constructor. </param> <param name="invokeAttr"> A bitmask that is a combination of 0 or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. If <paramref name="binder" /> is null, this parameter is assigned the value <see cref="F:System.Reflection.BindingFlags.Default" />; thus, whatever you pass in is ignored. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="parameters"> An argument list for the invoked method or constructor. This is an array of objects with the same number, order, and type as the parameters of the method or constructor to be invoked. If there are no parameters, this should be null. If the method or constructor represented by this instance takes a ByRef parameter, there is no special attribute required for that parameter in order to invoke the method or constructor using this function. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> <param name="culture"> An instance of CultureInfo used to govern the coercion of types. If this is null, the CultureInfo for the current thread is used. (This is necessary to convert a String that represents 1000 to a Double value, for example, since 1000 is represented differently by different cultures.) </param> <exception cref="T:System.Reflection.TargetException"> The <paramref name="obj" /> parameter is null and the method is not static. -or- The method is not declared or inherited by the class of <paramref name="obj" />. -or- A static constructor is invoked, and <paramref name="obj" /> is neither null nor an instance of the class that declared the constructor. </exception> <exception cref="T:System.ArgumentException"> The type of the <paramref name="parameters" /> parameter does not match the signature of the method or constructor reflected by this instance. </exception> <exception cref="T:System.Reflection.TargetParameterCountException"> The <paramref name="parameters" /> array does not have the correct number of arguments. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The invoked method or constructor throws an exception. </exception> <exception cref="T:System.MethodAccessException"> The caller does not have permission to execute the constructor. </exception> <exception cref="T:System.InvalidOperationException"> The type that declares the method is an open generic type. That is, the <see cref="P:System.Type.ContainsGenericParameters" /> property returns true for the declaring type. </exception> </member> <member name="P:System.Reflection.MethodBase.IsAbstract"> <summary> Gets a value indicating whether the method is abstract. </summary> <returns>true if the method is abstract; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsAssembly"> <summary> Gets a value indicating whether the potential visibility of this method or constructor is described by <see cref="F:System.Reflection.MethodAttributes.Assembly" />; that is, the method or constructor is visible at most to other types in the same assembly, and is not visible to derived types outside the assembly. </summary> <returns>true if the visibility of this method or constructor is exactly described by <see cref="F:System.Reflection.MethodAttributes.Assembly" />; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsConstructor"> <summary> Gets a value indicating whether the method is a constructor. </summary> <returns>true if this method is a constructor represented by a <see cref="T:System.Reflection.ConstructorInfo" /> object (see note in Remarks about <see cref="T:System.Reflection.Emit.ConstructorBuilder" /> objects); otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsFamily"> <summary> Gets a value indicating whether the visibility of this method or constructor is described by <see cref="F:System.Reflection.MethodAttributes.Family" />; that is, the method or constructor is visible only within its class and derived classes. </summary> <returns>true if access to this method or constructor is exactly described by <see cref="F:System.Reflection.MethodAttributes.Family" />; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsFamilyAndAssembly"> <summary> Gets a value indicating whether the visibility of this method or constructor is described by <see cref="F:System.Reflection.MethodAttributes.FamANDAssem" />; that is, the method or constructor can be called by derived classes, but only if they are in the same assembly. </summary> <returns>true if access to this method or constructor is exactly described by <see cref="F:System.Reflection.MethodAttributes.FamANDAssem" />; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsFamilyOrAssembly"> <summary> Gets a value indicating whether the potential visibility of this method or constructor is described by <see cref="F:System.Reflection.MethodAttributes.FamORAssem" />; that is, the method or constructor can be called by derived classes wherever they are, and by classes in the same assembly. </summary> <returns>true if access to this method or constructor is exactly described by <see cref="F:System.Reflection.MethodAttributes.FamORAssem" />; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsFinal"> <summary> Gets a value indicating whether this method is final. </summary> <returns>true if this method is final; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsGenericMethod"> <summary> Gets a value indicating whether the method is generic. </summary> <returns>true if the current <see cref="T:System.Reflection.MethodBase" /> represents a generic method; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsGenericMethodDefinition"> <summary> Gets a value indicating whether the method is a generic method definition. </summary> <returns>true if the current <see cref="T:System.Reflection.MethodBase" /> object represents the definition of a generic method; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsHideBySig"> <summary> Gets a value indicating whether only a member of the same kind with exactly the same signature is hidden in the derived class. </summary> <returns>true if the member is hidden by signature; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsPrivate"> <summary> Gets a value indicating whether this member is private. </summary> <returns>true if access to this method is restricted to other members of the class itself; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsPublic"> <summary> Gets a value indicating whether this is a public method. </summary> <returns>true if this method is public; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsSpecialName"> <summary> Gets a value indicating whether this method has a special name. </summary> <returns>true if this method has a special name; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsStatic"> <summary> Gets a value indicating whether the method is static. </summary> <returns>true if this method is static; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.IsVirtual"> <summary> Gets a value indicating whether the method is virtual. </summary> <returns>true if this method is virtual; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBase.MethodHandle"> <summary> Gets a handle to the internal metadata representation of a method. </summary> <returns> A <see cref="T:System.RuntimeMethodHandle" /> object. </returns> </member> <member name="M:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#GetType"> <summary> For a description of this member, see <see cref="M:System.Runtime.InteropServices._MethodBase.GetType" />. </summary> </member> <member name="M:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsAbstract"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsAbstract" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsAssembly"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsAssembly" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsConstructor"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsConstructor" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsFamily"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsFamily" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsFamilyAndAssembly"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsFamilyAndAssembly" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsFamilyOrAssembly"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsFamilyOrAssembly" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsFinal"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsFinal" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsHideBySig"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsHideBySig" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsPrivate"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsPrivate" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsPublic"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsPublic" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsSpecialName"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsSpecialName" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsStatic"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsStatic" />. </summary> </member> <member name="P:System.Reflection.MethodBase.System#Runtime#InteropServices#_MethodBase#IsVirtual"> <summary> For a description of this member, see <see cref="P:System.Runtime.InteropServices._MethodBase.IsVirtual" />. </summary> </member> <member name="T:System.Reflection.MethodBody"> <summary> Provides access to the metadata and MSIL for the body of a method. </summary> </member> <member name="P:System.Reflection.MethodBody.ExceptionHandlingClauses"> <summary> Gets a list that includes all the exception-handling clauses in the method body. </summary> <returns> An <see cref="T:System.Collections.Generic.IList`1" /> of <see cref="T:System.Reflection.ExceptionHandlingClause" /> objects representing the exception-handling clauses in the body of the method. </returns> </member> <member name="M:System.Reflection.MethodBody.GetILAsByteArray"> <summary> Returns the MSIL for the method body, as an array of bytes. </summary> <returns> An array of type <see cref="T:System.Byte" /> that contains the MSIL for the method body. </returns> </member> <member name="P:System.Reflection.MethodBody.InitLocals"> <summary> Gets a value indicating whether local variables in the method body are initialized to the default values for their types. </summary> <returns>true if the method body contains code to initialize local variables to null for reference types, or to the zero-initialized value for value types; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodBody.LocalSignatureMetadataToken"> <summary> Gets a metadata token for the signature that describes the local variables for the method in metadata. </summary> <returns> An integer that represents the metadata token. </returns> </member> <member name="P:System.Reflection.MethodBody.LocalVariables"> <summary> Gets the list of local variables declared in the method body. </summary> <returns> An <see cref="T:System.Collections.Generic.IList`1" /> of <see cref="T:System.Reflection.LocalVariableInfo" /> objects that describe the local variables declared in the method body. </returns> </member> <member name="P:System.Reflection.MethodBody.MaxStackSize"> <summary> Gets the maximum number of items on the operand stack when the method is executing. </summary> <returns> The maximum number of items on the operand stack when the method is executing. </returns> </member> <member name="T:System.Reflection.MethodImplAttributes"> <summary> Specifies flags for the attributes of a method implementation. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.CodeTypeMask"> <summary> Specifies flags about code type. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.IL"> <summary> Specifies that the method implementation is in Microsoft intermediate language (MSIL). </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.Native"> <summary> Specifies that the method implementation is native. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.OPTIL"> <summary> Specifies that the method implementation is in Optimized Intermediate Language (OPTIL). </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.Runtime"> <summary> Specifies that the method implementation is provided by the runtime. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.ManagedMask"> <summary> Specifies whether the method is implemented in managed or unmanaged code. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.Unmanaged"> <summary> Specifies that the method is implemented in unmanaged code. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.Managed"> <summary> Specifies that the method is implemented in managed code. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.ForwardRef"> <summary> Specifies that the method is not defined. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.PreserveSig"> <summary> Specifies that the method signature is exported exactly as declared. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.InternalCall"> <summary> Specifies an internal call. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.Synchronized"> <summary> Specifies that the method is single-threaded through the body. Static methods (Shared in Visual Basic) lock on the type, whereas instance methods lock on the instance. You can also use the C# lock statement or the Visual Basic Lock function for this purpose. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.NoInlining"> <summary> Specifies that the method cannot be inlined. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.MaxMethodImplVal"> <summary> Specifies a range check value. </summary> </member> <member name="F:System.Reflection.MethodImplAttributes.NoOptimization"> <summary> Specifies that the method is not optimized by the just-in-time (JIT) compiler or by native code generation (see Ngen.exe) when debugging possible code generation problems. </summary> </member> <member name="T:System.Reflection.MethodInfo"> <summary> Discovers the attributes of a method and provides access to method metadata. </summary> </member> <member name="M:System.Reflection.MethodInfo.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.MethodInfo" /> class. </summary> </member> <member name="P:System.Reflection.MethodInfo.ContainsGenericParameters"> <summary> Gets a value indicating whether a generic method contains unassigned generic type parameters. </summary> <returns>true if the current <see cref="T:System.Reflection.MethodInfo" /> contains unassigned generic type parameters; otherwise, false. </returns> </member> <member name="M:System.Reflection.MethodInfo.GetBaseDefinition"> <summary> When overridden in a derived class, returns the MethodInfo object for the method on the direct or indirect base class in which the method represented by this instance was first declared. </summary> <returns> A MethodInfo object for the first implementation of this method. </returns> </member> <member name="M:System.Reflection.MethodInfo.GetGenericArguments"> <summary> Returns an array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic method or the type parameters of a generic method definition. </summary> <returns> An array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic method or the type parameters of a generic method definition. Returns an empty array if the current method is not a generic method. </returns> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.MethodInfo.GetGenericMethodDefinition"> <summary> Returns a <see cref="T:System.Reflection.MethodInfo" /> object that represents a generic method definition from which the current method can be constructed. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing a generic method definition from which the current method can be constructed. </returns> <exception cref="T:System.InvalidOperationException"> The current method is not a generic method. That is, <see cref="P:System.Reflection.MethodInfo.IsGenericMethod" /> returns false. </exception> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="P:System.Reflection.MethodInfo.IsGenericMethod"> <summary> Gets a value indicating whether the current method is a generic method. </summary> <returns>true if the current method is a generic method; otherwise, false. </returns> </member> <member name="P:System.Reflection.MethodInfo.IsGenericMethodDefinition"> <summary> Gets a value indicating whether the current <see cref="T:System.Reflection.MethodInfo" /> represents the definition of a generic method. </summary> <returns>true if the <see cref="T:System.Reflection.MethodInfo" /> object represents the definition of a generic method; otherwise, false. </returns> </member> <member name="M:System.Reflection.MethodInfo.MakeGenericMethod(System.Type[])"> <summary> Substitutes the elements of an array of types for the type parameters of the current generic method definition, and returns a <see cref="T:System.Reflection.MethodInfo" /> object representing the resulting constructed method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object that represents the constructed method formed by substituting the elements of <paramref name="typeArguments" /> for the type parameters of the current generic method definition. </returns> <param name="typeArguments"> An array of types to be substituted for the type parameters of the current generic method definition. </param> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Reflection.MethodInfo" /> does not represent a generic method definition. That is, <see cref="P:System.Reflection.MethodInfo.IsGenericMethodDefinition" /> returns false. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="typeArguments" /> is null. -or- Any element of <paramref name="typeArguments" /> is null. </exception> <exception cref="T:System.ArgumentException"> The number of elements in <paramref name="typeArguments" /> is not the same as the number of type parameters of the current generic method definition. -or- An element of <paramref name="typeArguments" /> does not satisfy the constraints specified for the corresponding type parameter of the current generic method definition. </exception> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="P:System.Reflection.MethodInfo.MemberType"> <summary> Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a method. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a method. </returns> </member> <member name="P:System.Reflection.MethodInfo.ReturnParameter"> <summary> Gets a <see cref="T:System.Reflection.ParameterInfo" /> object that contains information about the return type of the method, such as whether the return type has custom modifiers. </summary> <returns> A <see cref="T:System.Reflection.ParameterInfo" /> object that contains information about the return type. </returns> <exception cref="T:System.NotImplementedException"> This method is not implemented. </exception> </member> <member name="P:System.Reflection.MethodInfo.ReturnType"> <summary> Gets the return type of this method. </summary> <returns> The return type of this method. </returns> </member> <member name="P:System.Reflection.MethodInfo.ReturnTypeCustomAttributes"> <summary> Gets the custom attributes for the return type. </summary> <returns> An ICustomAttributeProvider object representing the custom attributes for the return type. </returns> </member> <member name="M:System.Reflection.MethodInfo.System#Runtime#InteropServices#_MethodInfo#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array that receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.MethodInfo.System#Runtime#InteropServices#_MethodInfo#GetType"> <summary> Provides access to the <see cref="M:System.Object.GetType" /> method from COM. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Reflection.MethodInfo" /> type. </returns> </member> <member name="M:System.Reflection.MethodInfo.System#Runtime#InteropServices#_MethodInfo#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.MethodInfo.System#Runtime#InteropServices#_MethodInfo#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.MethodInfo.System#Runtime#InteropServices#_MethodInfo#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="T:System.Reflection.Missing"> <summary> Represents a missing <see cref="T:System.Object" />. This class cannot be inherited. </summary> </member> <member name="M:System.Reflection.Missing.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the logical context information needed to recreate the sole instance of the <see cref="T:System.Reflection.Missing" /> object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to be populated with serialization information. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object representing the destination context of the serialization. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="F:System.Reflection.Missing.Value"> <summary> Represents the sole instance of the <see cref="T:System.Reflection.Missing" /> class. </summary> </member> <member name="T:System.Reflection.Module"> <summary> Performs reflection on a module. </summary> </member> <member name="P:System.Reflection.Module.Assembly"> <summary> Gets the appropriate <see cref="T:System.Reflection.Assembly" /> for this instance of <see cref="T:System.Reflection.Module" />. </summary> <returns> An Assembly object. </returns> </member> <member name="F:System.Reflection.Module.FilterTypeName"> <summary> A TypeFilter object that filters the list of types defined in this module based upon the name. This field is case-sensitive and read-only. </summary> </member> <member name="F:System.Reflection.Module.FilterTypeNameIgnoreCase"> <summary> A TypeFilter object that filters the list of types defined in this module based upon the name. This field is case-insensitive and read-only. </summary> </member> <member name="M:System.Reflection.Module.FindTypes(System.Reflection.TypeFilter,System.Object)"> <summary> Returns an array of classes accepted by the given filter and filter criteria. </summary> <returns> An array of type Type containing classes that were accepted by the filter. </returns> <param name="filter"> The delegate used to filter the classes. </param> <param name="filterCriteria"> An Object used to filter the classes. </param> <exception cref="T:System.Reflection.ReflectionTypeLoadException"> One or more classes in a module could not be loaded. </exception> </member> <member name="P:System.Reflection.Module.FullyQualifiedName"> <summary> Gets a string representing the fully qualified name and path to this module. </summary> <returns> The fully qualified module name. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permissions. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Module.GetCustomAttributes(System.Boolean)"> <summary> Returns all custom attributes. </summary> <returns> An array of type Object containing all custom attributes. </returns> <param name="inherit"> This argument is ignored for objects of this type. </param> </member> <member name="M:System.Reflection.Module.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Gets custom attributes of the specified type. </summary> <returns> An array of type Object containing all custom attributes of the specified type. </returns> <param name="attributeType"> The type of attribute to get. </param> <param name="inherit"> This argument is ignored for objects of this type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not a <see cref="T:System.Type" /> object supplied by the runtime. For example, <paramref name="attributeType" /> is a <see cref="T:System.Reflection.Emit.TypeBuilder" /> object. </exception> </member> <member name="M:System.Reflection.Module.GetField(System.String)"> <summary> Returns a field having the specified name. </summary> <returns> A FieldInfo object having the specified name, or null if the field does not exist. </returns> <param name="name"> The field name. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Reflection.Module.GetField(System.String,System.Reflection.BindingFlags)"> <summary> Returns a field having the specified name and binding attributes. </summary> <returns> A FieldInfo object having the specified name and binding attributes, or null if the field does not exist. </returns> <param name="name"> The field name. </param> <param name="bindingAttr"> One of the BindingFlags bit flags used to control the search. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Reflection.Module.GetFields"> <summary> Returns the global fields defined on the module. </summary> <returns> An array of <see cref="T:System.Reflection.FieldInfo" /> objects representing the global fields defined on the module; if there are no global fields, an empty array is returned. </returns> </member> <member name="M:System.Reflection.Module.GetFields(System.Reflection.BindingFlags)"> <summary> Returns the global fields defined on the module that match the specified binding flags. </summary> <returns> An array of type <see cref="T:System.Reflection.FieldInfo" /> representing the global fields defined on the module that match the specified binding flags; if no global fields match the binding flags, an empty array is returned. </returns> <param name="bindingFlags"> A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values that limit the search. </param> </member> <member name="M:System.Reflection.Module.GetMethod(System.String)"> <summary> Returns a method having the specified name. </summary> <returns> A MethodInfo object having the specified name, or null if the method does not exist. </returns> <param name="name"> The method name. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Module.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Returns a method having the specified name, binding information, calling convention, and parameter types and modifiers. </summary> <returns> A MethodInfo object in accordance with the specified criteria, or null if the method does not exist. </returns> <param name="name"> The method name. </param> <param name="bindingAttr"> One of the BindingFlags bit flags used to control the search. </param> <param name="binder"> An object that implements Binder, containing properties related to this method. </param> <param name="callConvention"> The calling convention for the method. </param> <param name="types"> The parameter types to search for. </param> <param name="modifiers"> An array of parameter modifiers used to make binding work with parameter signatures in which the types have been modified. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null, <paramref name="types" /> is null, or <paramref name="types" /> (i) is null. </exception> </member> <member name="M:System.Reflection.Module.GetMethod(System.String,System.Type[])"> <summary> Returns a method having the specified name and parameter types. </summary> <returns> A MethodInfo object in accordance with the specified criteria, or null if the method does not exist. </returns> <param name="name"> The method name. </param> <param name="types"> The parameter types to search for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null, <paramref name="types" /> is null, or <paramref name="types" /> (i) is null. </exception> </member> <member name="M:System.Reflection.Module.GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Returns the method implementation in accordance with the specified criteria. </summary> <returns> A MethodInfo object containing implementation information as specified, or null if the method does not exist. </returns> <param name="name"> The method name. </param> <param name="bindingAttr"> One of the BindingFlags bit flags used to control the search. </param> <param name="binder"> An object that implements Binder, containing properties related to this method. </param> <param name="callConvention"> The calling convention for the method. </param> <param name="types"> The parameter types to search for. </param> <param name="modifiers"> An array of parameter modifiers used to make binding work with parameter signatures in which the types have been modified. </param> <exception cref="T:System.Reflection.AmbiguousMatchException"> <paramref name="types" /> is null. </exception> </member> <member name="M:System.Reflection.Module.GetMethods"> <summary> Returns the global methods defined on the module. </summary> <returns> An array of <see cref="T:System.Reflection.MethodInfo" /> objects representing all the global methods defined on the module; if there are no global methods, an empty array is returned. </returns> </member> <member name="M:System.Reflection.Module.GetMethods(System.Reflection.BindingFlags)"> <summary> Returns the global methods defined on the module that match the specified binding flags. </summary> <returns> An array of type <see cref="T:System.Reflection.MethodInfo" /> representing the global methods defined on the module that match the specified binding flags; if no global methods match the binding flags, an empty array is returned. </returns> <param name="bindingFlags"> A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values that limit the search. </param> </member> <member name="M:System.Reflection.Module.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Provides an <see cref="T:System.Runtime.Serialization.ISerializable" /> implementation for serialized objects. </summary> <param name="info"> The information and data needed to serialize or deserialize an object. </param> <param name="context"> The context for the serialization. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Reflection.Module.GetPEKind(System.Reflection.PortableExecutableKinds@,System.Reflection.ImageFileMachine@)"> <summary> Gets a pair of values indicating the nature of the code in a module and the platform targeted by the module. </summary> <param name="peKind"> When this method returns, a combination of the <see cref="T:System.Reflection.PortableExecutableKinds" /> values indicating the nature of the code in the module. </param> <param name="machine"> When this method returns, one of the <see cref="T:System.Reflection.ImageFileMachine" /> values indicating the platform targeted by the module. </param> </member> <member name="M:System.Reflection.Module.GetSignerCertificate"> <summary> Returns an X509Certificate object corresponding to the certificate included in the Authenticode signature of the assembly which this module belongs to. If the assembly has not been Authenticode signed, null is returned. </summary> <returns> An X509Certificate object, or null if the assembly to which this module belongs has not been Authenticode signed. </returns> </member> <member name="M:System.Reflection.Module.GetType(System.String)"> <summary> Returns the specified type, performing a case-sensitive search. </summary> <returns> A Type object representing the given type, if the type is in this module; otherwise, null. </returns> <param name="className"> The name of the type to locate. The name must be fully qualified with the namespace. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="className" /> is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The class initializers are invoked and an exception is thrown. </exception> <exception cref="T:System.ArgumentException"> <paramref name="className" /> is a zero-length string. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="className" /> requires a dependent assembly that could not be found. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="className" /> requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and <paramref name="className" /> requires a dependent assembly that was not preloaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="className" /> requires a dependent assembly, but the file is not a valid assembly. -or- <paramref name="className" /> requires a dependent assembly which was compiled for a version of the runtime later than the currently loaded version. </exception> </member> <member name="M:System.Reflection.Module.GetType(System.String,System.Boolean)"> <summary> Returns the specified type, searching the module with the specified case sensitivity. </summary> <returns> A Type object representing the given type, if the type is in this module; otherwise, null. </returns> <param name="className"> The name of the type to locate. The name must be fully qualified with the namespace. </param> <param name="ignoreCase">true for case-insensitive search; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="className" /> is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The class initializers are invoked and an exception is thrown. </exception> <exception cref="T:System.ArgumentException"> <paramref name="className" /> is a zero-length string. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="className" /> requires a dependent assembly that could not be found. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="className" /> requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and <paramref name="className" /> requires a dependent assembly that was not preloaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="className" /> requires a dependent assembly, but the file is not a valid assembly. -or- <paramref name="className" /> requires a dependent assembly which was compiled for a version of the runtime later than the currently loaded version. </exception> </member> <member name="M:System.Reflection.Module.GetType(System.String,System.Boolean,System.Boolean)"> <summary> Returns the specified type, specifying whether to make a case-sensitive search of the module and whether to throw an exception if the type cannot be found. </summary> <returns> A <see cref="T:System.Type" /> object representing the specified type, if the type is declared in this module; otherwise, null. </returns> <param name="className"> The name of the type to locate. The name must be fully qualified with the namespace. </param> <param name="throwOnError">true to throw an exception if the type cannot be found; false to return null. </param> <param name="ignoreCase">true for case-insensitive search; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="className" /> is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The class initializers are invoked and an exception is thrown. </exception> <exception cref="T:System.ArgumentException"> <paramref name="className" /> is a zero-length string. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="throwOnError" /> is true, and the type cannot be found. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="className" /> requires a dependent assembly that could not be found. </exception> <exception cref="T:System.IO.FileLoadException"> <paramref name="className" /> requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and <paramref name="className" /> requires a dependent assembly that was not preloaded. </exception> <exception cref="T:System.BadImageFormatException"> <paramref name="className" /> requires a dependent assembly, but the file is not a valid assembly. -or- <paramref name="className" /> requires a dependent assembly which was compiled for a version of the runtime later than the currently loaded version. </exception> </member> <member name="M:System.Reflection.Module.GetTypes"> <summary> Returns all the types defined within this module. </summary> <returns> An array of type Type containing types defined within the module that is reflected by this instance. </returns> <exception cref="T:System.Reflection.ReflectionTypeLoadException"> One or more classes in a module could not be loaded. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Module.IsDefined(System.Type,System.Boolean)"> <summary> Determines if the specified <paramref name="attributeType" /> is defined on this module. </summary> <returns>true if one or more instance of <paramref name="attributeType" /> is defined on this module; otherwise, false. </returns> <param name="attributeType"> The Type object to which the custom attribute is applied. </param> <param name="inherit"> This argument is ignored for objects of this type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not a <see cref="T:System.Type" /> object supplied by the runtime. For example, <paramref name="attributeType" /> is a <see cref="T:System.Reflection.Emit.TypeBuilder" /> object. </exception> </member> <member name="M:System.Reflection.Module.IsResource"> <summary> Gets a value indicating whether the object is a resource. </summary> <returns>true if the object is a resource; otherwise, false. </returns> </member> <member name="P:System.Reflection.Module.MDStreamVersion"> <summary> Gets the metadata stream version. </summary> <returns> A 32-bit integer representing the metadata stream version. The high-order two bytes represent the major version number, and the low-order two bytes represent the minor version number. </returns> </member> <member name="P:System.Reflection.Module.MetadataToken"> <summary> Gets a token that identifies the module in metadata. </summary> <returns> An integer token that identifies the current module in metadata. </returns> </member> <member name="P:System.Reflection.Module.ModuleHandle"> <summary> Gets a handle for the module. </summary> <returns> A <see cref="T:System.ModuleHandle" /> structure for the current module. </returns> </member> <member name="P:System.Reflection.Module.ModuleVersionId"> <summary> Gets a universally unique identifier (UUID) that can be used to distinguish between two versions of a module. </summary> <returns> A <see cref="T:System.Guid" /> that can be used to distinguish between two versions of a module. </returns> </member> <member name="P:System.Reflection.Module.Name"> <summary> Gets a String representing the name of the module with the path removed. </summary> <returns> The module name with no path. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Module.ResolveField(System.Int32)"> <summary> Returns the field identified by the specified metadata token. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object representing the field that is identified by the specified metadata token. </returns> <param name="metadataToken"> A metadata token that identifies a field in the module. </param> <exception cref="T:System.ArgumentException"> <paramref name="metadataToken" /> is not a token for a field in the scope of the current module. -or- <paramref name="metadataToken" /> identifies a field whose parent TypeSpec has a signature containing element type var (a type parameter of a generic type) or mvar (a type parameter of a generic method). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. </exception> </member> <member name="M:System.Reflection.Module.ResolveField(System.Int32,System.Type[],System.Type[])"> <summary> Returns the field identified by the specified metadata token, in the context defined by the specified generic type parameters. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object representing the field that is identified by the specified metadata token. </returns> <param name="metadataToken"> A metadata token that identifies a field in the module. </param> <param name="genericTypeArguments"> An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the type where the token is in scope, or null if that type is not generic. </param> <param name="genericMethodArguments"> An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the method where the token is in scope, or null if that method is not generic. </param> <exception cref="T:System.ArgumentException"> <paramref name="metadataToken" /> is not a token for a field in the scope of the current module. -or- <paramref name="metadataToken" /> identifies a field whose parent TypeSpec has a signature containing element type var (a type parameter of a generic type) or mvar (a type parameter of a generic method), and the necessary generic type arguments were not supplied for either or both of <paramref name="genericTypeArguments" /> and <paramref name="genericMethodArguments" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. </exception> </member> <member name="M:System.Reflection.Module.ResolveMember(System.Int32)"> <summary> Returns the type or member identified by the specified metadata token. </summary> <returns> A <see cref="T:System.Reflection.MemberInfo" /> object representing the type or member that is identified by the specified metadata token. </returns> <param name="metadataToken"> A metadata token that identifies a type or member in the module. </param> <exception cref="T:System.ArgumentException"> <paramref name="metadataToken" /> is not a token for a type or member in the scope of the current module. -or- <paramref name="metadataToken" /> is a MethodSpec or TypeSpec whose signature contains element type var (a type parameter of a generic type) or mvar (a type parameter of a generic method). -or- <paramref name="metadataToken" /> identifies a property or event. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. </exception> </member> <member name="M:System.Reflection.Module.ResolveMember(System.Int32,System.Type[],System.Type[])"> <summary> Returns the type or member identified by the specified metadata token, in the context defined by the specified generic type parameters. </summary> <returns> A <see cref="T:System.Reflection.MemberInfo" /> object representing the type or member that is identified by the specified metadata token. </returns> <param name="metadataToken"> A metadata token that identifies a type or member in the module. </param> <param name="genericTypeArguments"> An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the type where the token is in scope, or null if that type is not generic. </param> <param name="genericMethodArguments"> An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the method where the token is in scope, or null if that method is not generic. </param> <exception cref="T:System.ArgumentException"> <paramref name="metadataToken" /> is not a token for a type or member in the scope of the current module. -or- <paramref name="metadataToken" /> is a MethodSpec or TypeSpec whose signature contains element type var (a type parameter of a generic type) or mvar (a type parameter of a generic method), and the necessary generic type arguments were not supplied for either or both of <paramref name="genericTypeArguments" /> and <paramref name="genericMethodArguments" />. -or- <paramref name="metadataToken" /> identifies a property or event. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. </exception> </member> <member name="M:System.Reflection.Module.ResolveMethod(System.Int32)"> <summary> Returns the method or constructor identified by the specified metadata token. </summary> <returns> A <see cref="T:System.Reflection.MethodBase" /> object representing the method or constructor that is identified by the specified metadata token. </returns> <param name="metadataToken"> A metadata token that identifies a method or constructor in the module. </param> <exception cref="T:System.ArgumentException"> <paramref name="metadataToken" /> is not a token for a method or constructor in the scope of the current module. -or- <paramref name="metadataToken" /> is a MethodSpec whose signature contains element type var (a type parameter of a generic type) or mvar (a type parameter of a generic method). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. </exception> </member> <member name="M:System.Reflection.Module.ResolveMethod(System.Int32,System.Type[],System.Type[])"> <summary> Returns the method or constructor identified by the specified metadata token, in the context defined by the specified generic type parameters. </summary> <returns> A <see cref="T:System.Reflection.MethodBase" /> object representing the method that is identified by the specified metadata token. </returns> <param name="metadataToken"> A metadata token that identifies a method or constructor in the module. </param> <param name="genericTypeArguments"> An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the type where the token is in scope, or null if that type is not generic. </param> <param name="genericMethodArguments"> An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the method where the token is in scope, or null if that method is not generic. </param> <exception cref="T:System.ArgumentException"> <paramref name="metadataToken" /> is not a token for a method or constructor in the scope of the current module. -or- <paramref name="metadataToken" /> is a MethodSpec whose signature contains element type var (a type parameter of a generic type) or mvar (a type parameter of a generic method), and the necessary generic type arguments were not supplied for either or both of <paramref name="genericTypeArguments" /> and <paramref name="genericMethodArguments" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. </exception> </member> <member name="M:System.Reflection.Module.ResolveSignature(System.Int32)"> <summary> Returns the signature blob identified by a metadata token. </summary> <returns> An array of bytes representing the signature blob. </returns> <param name="metadataToken"> A metadata token that identifies a signature in the module. </param> <exception cref="T:System.ArgumentException"> <paramref name="metadataToken" /> is not a valid MemberRef, MethodDef, TypeSpec, signature, or FieldDef token in the scope of the current module. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. </exception> </member> <member name="M:System.Reflection.Module.ResolveString(System.Int32)"> <summary> Returns the string identified by the specified metadata token. </summary> <returns> A <see cref="T:System.String" /> containing a string value from the metadata string heap. </returns> <param name="metadataToken"> A metadata token that identifies a string in the string heap of the module. </param> <exception cref="T:System.ArgumentException"> <paramref name="metadataToken" /> is not a token for a string in the scope of the current module. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. </exception> </member> <member name="M:System.Reflection.Module.ResolveType(System.Int32)"> <summary> Returns the type identified by the specified metadata token. </summary> <returns> A <see cref="T:System.Type" /> object representing the type that is identified by the specified metadata token. </returns> <param name="metadataToken"> A metadata token that identifies a type in the module. </param> <exception cref="T:System.ArgumentException"> <paramref name="metadataToken" /> is not a token for a type in the scope of the current module. -or- <paramref name="metadataToken" /> is a TypeSpec whose signature contains element type var (a type parameter of a generic type) or mvar (a type parameter of a generic method). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. </exception> </member> <member name="M:System.Reflection.Module.ResolveType(System.Int32,System.Type[],System.Type[])"> <summary> Returns the type identified by the specified metadata token, in the context defined by the specified generic type parameters. </summary> <returns> A <see cref="T:System.Type" /> object representing the type that is identified by the specified metadata token. </returns> <param name="metadataToken"> A metadata token that identifies a type in the module. </param> <param name="genericTypeArguments"> An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the type where the token is in scope, or null if that type is not generic. </param> <param name="genericMethodArguments"> An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the method where the token is in scope, or null if that method is not generic. </param> <exception cref="T:System.ArgumentException"> <paramref name="metadataToken" /> is not a token for a type in the scope of the current module. -or- <paramref name="metadataToken" /> is a TypeSpec whose signature contains element type var (a type parameter of a generic type) or mvar (a type parameter of a generic method), and the necessary generic type arguments were not supplied for either or both of <paramref name="genericTypeArguments" /> and <paramref name="genericMethodArguments" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="metadataToken" /> is not a valid token in the scope of the current module. </exception> </member> <member name="P:System.Reflection.Module.ScopeName"> <summary> Gets a string representing the name of the module. </summary> <returns> The module name. </returns> </member> <member name="M:System.Reflection.Module.System#Runtime#InteropServices#_Module#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array that receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Module.System#Runtime#InteropServices#_Module#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Module.System#Runtime#InteropServices#_Module#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Module.System#Runtime#InteropServices#_Module#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DispIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Module.ToString"> <summary> Returns the name of the module. </summary> <returns> A String representing the name of this module. </returns> </member> <member name="T:System.Reflection.ModuleResolveEventHandler"> <summary> Represents the method that will handle the <see cref="E:System.Reflection.Assembly.ModuleResolve" /> event of an <see cref="T:System.Reflection.Assembly" />. </summary> <param name="sender"> The assembly that was the source of the event. </param> <param name="e"> The arguments supplied by the object describing the event. </param> </member> <member name="T:System.Reflection.ObfuscateAssemblyAttribute"> <summary> Instructs obfuscation tools to use their standard obfuscation rules for the appropriate assembly type. </summary> </member> <member name="M:System.Reflection.ObfuscateAssemblyAttribute.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.ObfuscateAssemblyAttribute" /> class, specifying whether the assembly to be obfuscated is public or private. </summary> <param name="assemblyIsPrivate">true if the assembly is used within the scope of one application; otherwise, false. </param> </member> <member name="P:System.Reflection.ObfuscateAssemblyAttribute.AssemblyIsPrivate"> <summary> Gets a <see cref="T:System.Boolean" /> value indicating whether the assembly was marked private. </summary> <returns>true if the assembly was marked private; otherwise, false. </returns> </member> <member name="P:System.Reflection.ObfuscateAssemblyAttribute.StripAfterObfuscation"> <summary> Gets or sets a <see cref="T:System.Boolean" /> value indicating whether the obfuscation tool should remove the attribute after processing. </summary> <returns>true if the obfuscation tool should remove the attribute after processing; otherwise, false. The default value for this property is true. </returns> </member> <member name="T:System.Reflection.ObfuscationAttribute"> <summary> Instructs obfuscation tools to take the specified actions for an assembly, type, or member. </summary> </member> <member name="M:System.Reflection.ObfuscationAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.ObfuscationAttribute" /> class. </summary> </member> <member name="P:System.Reflection.ObfuscationAttribute.ApplyToMembers"> <summary> Gets or sets a <see cref="T:System.Boolean" /> value indicating whether the attribute of a type is to apply to the members of the type. </summary> <returns>true if the attribute is to apply to the members of the type; otherwise, false. The default is true. </returns> </member> <member name="P:System.Reflection.ObfuscationAttribute.Exclude"> <summary> Gets or sets a <see cref="T:System.Boolean" /> value indicating whether the obfuscation tool should exclude the type or member from obfuscation. </summary> <returns>true if the type or member to which this attribute is applied should be excluded from obfuscation; otherwise, false. The default is true. </returns> </member> <member name="P:System.Reflection.ObfuscationAttribute.Feature"> <summary> Gets or sets a string value that is recognized by the obfuscation tool, and which specifies processing options. </summary> <returns> A string value that is recognized by the obfuscation tool, and which specifies processing options. The default is "all". </returns> </member> <member name="P:System.Reflection.ObfuscationAttribute.StripAfterObfuscation"> <summary> Gets or sets a <see cref="T:System.Boolean" /> value indicating whether the obfuscation tool should remove this attribute after processing. </summary> <returns>true if an obfuscation tool should remove the attribute after processing; otherwise, false. The default is true. </returns> </member> <member name="T:System.Reflection.ParameterAttributes"> <summary> Defines the attributes that can be associated with a parameter. These are defined in CorHdr.h. </summary> </member> <member name="F:System.Reflection.ParameterAttributes.None"> <summary> Specifies that there is no parameter attribute. </summary> </member> <member name="F:System.Reflection.ParameterAttributes.In"> <summary> Specifies that the parameter is an input parameter. </summary> </member> <member name="F:System.Reflection.ParameterAttributes.Out"> <summary> Specifies that the parameter is an output parameter. </summary> </member> <member name="F:System.Reflection.ParameterAttributes.Lcid"> <summary> Specifies that the parameter is a locale identifier (lcid). </summary> </member> <member name="F:System.Reflection.ParameterAttributes.Retval"> <summary> Specifies that the parameter is a return value. </summary> </member> <member name="F:System.Reflection.ParameterAttributes.Optional"> <summary> Specifies that the parameter is optional. </summary> </member> <member name="F:System.Reflection.ParameterAttributes.ReservedMask"> <summary> Specifies that the parameter is reserved. </summary> </member> <member name="F:System.Reflection.ParameterAttributes.HasDefault"> <summary> Specifies that the parameter has a default value. </summary> </member> <member name="F:System.Reflection.ParameterAttributes.HasFieldMarshal"> <summary> Specifies that the parameter has field marshaling information. </summary> </member> <member name="F:System.Reflection.ParameterAttributes.Reserved3"> <summary> Reserved. </summary> </member> <member name="F:System.Reflection.ParameterAttributes.Reserved4"> <summary> Reserved. </summary> </member> <member name="T:System.Reflection.ParameterInfo"> <summary> Discovers the attributes of a parameter and provides access to parameter metadata. </summary> </member> <member name="M:System.Reflection.ParameterInfo.#ctor"> <summary> Initializes a new instance of the ParameterInfo class. </summary> </member> <member name="P:System.Reflection.ParameterInfo.Attributes"> <summary> Gets the attributes for this parameter. </summary> <returns> A ParameterAttributes object representing the attributes for this parameter. </returns> </member> <member name="F:System.Reflection.ParameterInfo.AttrsImpl"> <summary> The attributes of the parameter. </summary> </member> <member name="F:System.Reflection.ParameterInfo.ClassImpl"> <summary> The Type of the parameter. </summary> </member> <member name="P:System.Reflection.ParameterInfo.DefaultValue"> <summary> Gets a value indicating the default value if the parameter has a default value. </summary> <returns> The default value of the parameter, or <see cref="F:System.DBNull.Value" /> if the parameter has no default value. </returns> </member> <member name="F:System.Reflection.ParameterInfo.DefaultValueImpl"> <summary> The default value of the parameter. </summary> </member> <member name="M:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean)"> <summary> Gets all the custom attributes defined on this parameter. </summary> <returns> An array of type Object containing all the custom attributes defined on this parameter. </returns> <param name="inherit"> This argument is ignored for objects of this type. </param> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> </member> <member name="M:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Gets the custom attributes of the specified type defined on this parameter. </summary> <returns> An array of type Object containing the custom attributes of the specified type. </returns> <param name="attributeType"> The custom attributes identified by type. </param> <param name="inherit"> This argument is ignored for objects of this type. </param> <exception cref="T:System.ArgumentException"> The type must be a type provided by the underlying runtime system. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> </member> <member name="M:System.Reflection.ParameterInfo.GetOptionalCustomModifiers"> <summary> Gets the optional custom modifiers of the parameter. </summary> <returns> An array of <see cref="T:System.Type" /> objects that identify the optional custom modifiers of the current parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDereferenced" />. </returns> </member> <member name="M:System.Reflection.ParameterInfo.GetRequiredCustomModifiers"> <summary> Gets the required custom modifiers of the parameter. </summary> <returns> An array of <see cref="T:System.Type" /> objects that identify the required custom modifiers of the current parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDereferenced" />. </returns> </member> <member name="M:System.Reflection.ParameterInfo.IsDefined(System.Type,System.Boolean)"> <summary> Determines if the custom attribute of the specified type is defined on this member. </summary> <returns>true if one or more instance of <paramref name="attributeType" /> is defined on this member; otherwise, false. </returns> <param name="attributeType"> The Type object to search for. </param> <param name="inherit"> This argument is ignored for objects of this type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="inherit" /> does not use the correct type defined by <paramref name="attributeType" />. </exception> </member> <member name="P:System.Reflection.ParameterInfo.IsIn"> <summary> Gets a value indicating whether this is an input parameter. </summary> <returns>true if the parameter is an input parameter; otherwise, false. </returns> </member> <member name="P:System.Reflection.ParameterInfo.IsLcid"> <summary> Gets a value indicating whether this parameter is a locale identifier (lcid). </summary> <returns>true if the parameter is a locale identifier; otherwise, false. </returns> </member> <member name="P:System.Reflection.ParameterInfo.IsOptional"> <summary> Gets a value indicating whether this parameter is optional. </summary> <returns>true if the parameter is optional; otherwise, false. </returns> </member> <member name="P:System.Reflection.ParameterInfo.IsOut"> <summary> Gets a value indicating whether this is an output parameter. </summary> <returns>true if the parameter is an output parameter; otherwise, false. </returns> </member> <member name="P:System.Reflection.ParameterInfo.IsRetval"> <summary> Gets a value indicating whether this is a Retval parameter. </summary> <returns>true if the parameter is a Retval; otherwise, false. </returns> </member> <member name="P:System.Reflection.ParameterInfo.Member"> <summary> Gets a value indicating the member in which the parameter is implemented. </summary> <returns> A MemberInfo object. </returns> </member> <member name="F:System.Reflection.ParameterInfo.MemberImpl"> <summary> The member in which the field is implemented. </summary> </member> <member name="P:System.Reflection.ParameterInfo.MetadataToken"> <summary> Gets a value that identifies this parameter in metadata. </summary> <returns> A value which, in combination with the module, uniquely identifies this parameter in metadata. </returns> </member> <member name="P:System.Reflection.ParameterInfo.Name"> <summary> Gets the name of the parameter. </summary> <returns> A String containing the simple name of this parameter. </returns> </member> <member name="F:System.Reflection.ParameterInfo.NameImpl"> <summary> The name of the parameter. </summary> </member> <member name="P:System.Reflection.ParameterInfo.ParameterType"> <summary> Gets the Type of this parameter. </summary> <returns> The Type object that represents the Type of this parameter. </returns> </member> <member name="P:System.Reflection.ParameterInfo.Position"> <summary> Gets the zero-based position of the parameter in the formal parameter list. </summary> <returns> An integer representing the position this parameter occupies in the parameter list. </returns> </member> <member name="F:System.Reflection.ParameterInfo.PositionImpl"> <summary> The zero-based position of the parameter in the parameter list. </summary> </member> <member name="P:System.Reflection.ParameterInfo.RawDefaultValue"> <summary> Gets a value indicating the default value if the parameter has a default value. </summary> <returns> The default value of the parameter, or <see cref="F:System.DBNull.Value" /> if the parameter has no default value. </returns> </member> <member name="M:System.Reflection.ParameterInfo.System#Runtime#InteropServices#_ParameterInfo#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.ParameterInfo.System#Runtime#InteropServices#_ParameterInfo#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.ParameterInfo.System#Runtime#InteropServices#_ParameterInfo#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.ParameterInfo.System#Runtime#InteropServices#_ParameterInfo#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.ParameterInfo.ToString"> <summary> Gets the parameter type and name represented as a string. </summary> <returns> A string containing the type and the name of the parameter. </returns> </member> <member name="T:System.Reflection.ParameterModifier"> <summary> Attaches a modifier to parameters so that binding can work with parameter signatures in which the types have been modified. </summary> </member> <member name="M:System.Reflection.ParameterModifier.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.ParameterModifier" /> structure representing the specified number of parameters. </summary> <param name="parameterCount"> The number of parameters. </param> <exception cref="T:System.ArgumentException"> <paramref name="parameterCount" /> is negative. </exception> </member> <member name="P:System.Reflection.ParameterModifier.Item(System.Int32)"> <summary> Gets or sets a value that specifies whether the parameter at the specified index position is to be modified by the current <see cref="T:System.Reflection.ParameterModifier" />. </summary> <returns>true if the parameter at this index position is to be modified by this <see cref="T:System.Reflection.ParameterModifier" />; otherwise, false. </returns> <param name="index"> The index position of the parameter whose modification status is being examined or set. </param> </member> <member name="T:System.Reflection.Pointer"> <summary> Provides a wrapper class for pointers. </summary> </member> <member name="M:System.Reflection.Pointer.Box(System.Void*,System.Type)"> <summary> Boxes the supplied unmanaged memory pointer and the type associated with that pointer into a managed <see cref="T:System.Reflection.Pointer" /> wrapper object. The value and the type are saved so they can be accessed from the native code during an invocation. </summary> <returns> A pointer object. </returns> <param name="ptr"> The supplied unmanaged memory pointer. </param> <param name="type"> The type associated with the <paramref name="ptr" /> parameter. </param> <exception cref="T:System.ArgumentException"> <paramref name="type" /> is not a pointer. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> </member> <member name="M:System.Reflection.Pointer.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the file name, fusion log, and additional exception information. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.Reflection.Pointer.Unbox(System.Object)"> <summary> Returns the stored pointer. </summary> <returns> This method returns void. </returns> <param name="ptr"> The stored pointer. </param> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is not a pointer. </exception> </member> <member name="T:System.Reflection.PortableExecutableKinds"> <summary> Identifies the nature of the code in an executable file. </summary> </member> <member name="F:System.Reflection.PortableExecutableKinds.NotAPortableExecutableImage"> <summary> The file is not in portable executable (PE) file format. </summary> </member> <member name="F:System.Reflection.PortableExecutableKinds.ILOnly"> <summary> The executable contains only Microsoft intermediate language (MSIL), and is therefore neutral with respect to 32-bit or 64-bit platforms. </summary> </member> <member name="F:System.Reflection.PortableExecutableKinds.Required32Bit"> <summary> The executable can be run on a 32-bit platform, or in the 32-bit Windows on Windows (WOW) environment on a 64-bit platform. </summary> </member> <member name="F:System.Reflection.PortableExecutableKinds.PE32Plus"> <summary> The executable requires a 64-bit platform. </summary> </member> <member name="F:System.Reflection.PortableExecutableKinds.Unmanaged32Bit"> <summary> The executable contains pure unmanaged code. </summary> </member> <member name="T:System.Reflection.ProcessorArchitecture"> <summary> Identifies the processor and bits-per-word of the platform targeted by an executable. </summary> </member> <member name="F:System.Reflection.ProcessorArchitecture.None"> <summary> An unknown or unspecified combination of processor and bits-per-word. </summary> </member> <member name="F:System.Reflection.ProcessorArchitecture.MSIL"> <summary> Neutral with respect to processor and bits-per-word. </summary> </member> <member name="F:System.Reflection.ProcessorArchitecture.X86"> <summary> A 32-bit Intel processor, either native or in the Windows on Windows (WOW) environment on a 64-bit platform. </summary> </member> <member name="F:System.Reflection.ProcessorArchitecture.IA64"> <summary> A 64-bit Intel processor only. </summary> </member> <member name="F:System.Reflection.ProcessorArchitecture.Amd64"> <summary> A 64-bit AMD processor only. </summary> </member> <member name="T:System.Reflection.PropertyAttributes"> <summary> Defines the attributes that can be associated with a property. These attribute values are defined in corhdr.h. </summary> </member> <member name="F:System.Reflection.PropertyAttributes.None"> <summary> Specifies that no attributes are associated with a property. </summary> </member> <member name="F:System.Reflection.PropertyAttributes.SpecialName"> <summary> Specifies that the property is special, with the name describing how the property is special. </summary> </member> <member name="F:System.Reflection.PropertyAttributes.ReservedMask"> <summary> Specifies a flag reserved for runtime use only. </summary> </member> <member name="F:System.Reflection.PropertyAttributes.RTSpecialName"> <summary> Specifies that the metadata internal APIs check the name encoding. </summary> </member> <member name="F:System.Reflection.PropertyAttributes.HasDefault"> <summary> Specifies that the property has a default value. </summary> </member> <member name="F:System.Reflection.PropertyAttributes.Reserved2"> <summary> Reserved. </summary> </member> <member name="F:System.Reflection.PropertyAttributes.Reserved3"> <summary> Reserved. </summary> </member> <member name="F:System.Reflection.PropertyAttributes.Reserved4"> <summary> Reserved. </summary> </member> <member name="T:System.Reflection.PropertyInfo"> <summary> Discovers the attributes of a property and provides access to property metadata. </summary> </member> <member name="M:System.Reflection.PropertyInfo.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.PropertyInfo" /> class. </summary> </member> <member name="P:System.Reflection.PropertyInfo.Attributes"> <summary> Gets the attributes for this property. </summary> <returns> Attributes of this property. </returns> </member> <member name="P:System.Reflection.PropertyInfo.CanRead"> <summary> Gets a value indicating whether the property can be read. </summary> <returns>true if this property can be read; otherwise, false. </returns> </member> <member name="P:System.Reflection.PropertyInfo.CanWrite"> <summary> Gets a value indicating whether the property can be written to. </summary> <returns>true if this property can be written to; otherwise, false. </returns> </member> <member name="M:System.Reflection.PropertyInfo.GetAccessors"> <summary> Returns an array whose elements reflect the public get, set, and other accessors of the property reflected by the current instance. </summary> <returns> An array of <see cref="T:System.Reflection.MethodInfo" /> objects that reflect the public get, set, and other accessors of the property reflected by the current instance, if found; otherwise, this method returns an array with zero (0) elements. </returns> </member> <member name="M:System.Reflection.PropertyInfo.GetAccessors(System.Boolean)"> <summary> Returns an array whose elements reflect the public and, if specified, non-public get, set, and other accessors of the property reflected by the current instance. </summary> <returns> An array of <see cref="T:System.Reflection.MethodInfo" /> objects whose elements reflect the get, set, and other accessors of the property reflected by the current instance. If <paramref name="nonPublic" /> is true, this array contains public and non-public get, set, and other accessors. If <paramref name="nonPublic" /> is false, this array contains only public get, set, and other accessors. If no accessors with the specified visibility are found, this method returns an array with zero (0) elements. </returns> <param name="nonPublic"> Indicates whether non-public methods should be returned in the MethodInfo array. true if non-public methods are to be included; otherwise, false. </param> </member> <member name="M:System.Reflection.PropertyInfo.GetConstantValue"> <summary> Returns a literal value associated with the property by a compiler. </summary> <returns> An <see cref="T:System.Object" /> that contains the literal value associated with the property. If the literal value is a class type with an element value of zero, the return value is null. </returns> <exception cref="T:System.InvalidOperationException"> The Constant table in unmanaged metadata does not contain a constant value for the current property. </exception> <exception cref="T:System.FormatException"> The type of the value is not one of the types permitted by the Common Language Specification (CLS). See the ECMA Partition II specification, Metadata. </exception> </member> <member name="M:System.Reflection.PropertyInfo.GetGetMethod"> <summary> Returns the public get accessor for this property. </summary> <returns> A MethodInfo object representing the public get accessor for this property, or null if the get accessor is non-public or does not exist. </returns> </member> <member name="M:System.Reflection.PropertyInfo.GetGetMethod(System.Boolean)"> <summary> When overridden in a derived class, returns the public or non-public get accessor for this property. </summary> <returns> A MethodInfo object representing the get accessor for this property, if <paramref name="nonPublic" /> is true. Returns null if <paramref name="nonPublic" /> is false and the get accessor is non-public, or if <paramref name="nonPublic" /> is true but no get accessors exist. </returns> <param name="nonPublic"> Indicates whether a non-public get accessor should be returned. true if a non-public accessor is to be returned; otherwise, false. </param> <exception cref="T:System.Security.SecurityException"> The requested method is non-public and the caller does not have <see cref="T:System.Security.Permissions.ReflectionPermission" /> to reflect on this non-public method. </exception> </member> <member name="M:System.Reflection.PropertyInfo.GetIndexParameters"> <summary> When overridden in a derived class, returns an array of all the index parameters for the property. </summary> <returns> An array of type ParameterInfo containing the parameters for the indexes. </returns> </member> <member name="M:System.Reflection.PropertyInfo.GetOptionalCustomModifiers"> <summary> Returns an array of types representing the optional custom modifiers of the property. </summary> <returns> An array of <see cref="T:System.Type" /> objects that identify the optional custom modifiers of the current property, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDereferenced" />. </returns> </member> <member name="M:System.Reflection.PropertyInfo.GetRawConstantValue"> <summary> Returns a literal value associated with the property by a compiler. </summary> <returns> An <see cref="T:System.Object" /> that contains the literal value associated with the property. If the literal value is a class type with an element value of zero, the return value is null. </returns> <exception cref="T:System.InvalidOperationException"> The Constant table in unmanaged metadata does not contain a constant value for the current property. </exception> <exception cref="T:System.FormatException"> The type of the value is not one of the types permitted by the Common Language Specification (CLS). See the ECMA Partition II specification, Metadata Logical Format: Other Structures, Element Types used in Signatures. </exception> </member> <member name="M:System.Reflection.PropertyInfo.GetRequiredCustomModifiers"> <summary> Returns an array of types representing the required custom modifiers of the property. </summary> <returns> An array of <see cref="T:System.Type" /> objects that identify the required custom modifiers of the current property, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDereferenced" />. </returns> </member> <member name="M:System.Reflection.PropertyInfo.GetSetMethod"> <summary> Returns the public set accessor for this property. </summary> <returns> The MethodInfo object representing the Set method for this property if the set accessor is public, or null if the set accessor is not public. </returns> </member> <member name="M:System.Reflection.PropertyInfo.GetSetMethod(System.Boolean)"> <summary> When overridden in a derived class, returns the set accessor for this property. </summary> <returns> Value Condition A <see cref="T:System.Reflection.MethodInfo" /> object representing the Set method for this property. The set accessor is public. -or- <paramref name="nonPublic" /> is true and the set accessor is non-public. null<paramref name="nonPublic" /> is true, but the property is read-only. -or- <paramref name="nonPublic" /> is false and the set accessor is non-public. -or- There is no set accessor. </returns> <param name="nonPublic"> Indicates whether the accessor should be returned if it is non-public. true if a non-public accessor is to be returned; otherwise, false. </param> <exception cref="T:System.Security.SecurityException"> The requested method is non-public and the caller does not have <see cref="T:System.Security.Permissions.ReflectionPermission" /> to reflect on this non-public method. </exception> </member> <member name="M:System.Reflection.PropertyInfo.GetValue(System.Object,System.Object[])"> <summary> Returns the value of the property with optional index values for indexed properties. </summary> <returns> The property value for the <paramref name="obj" /> parameter. </returns> <param name="obj"> The object whose property value will be returned. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> <exception cref="T:System.ArgumentException"> The <paramref name="index" /> array does not contain the type of arguments needed. -or- The property's get accessor is not found. </exception> <exception cref="T:System.Reflection.TargetException"> The object does not match the target type, or a property is an instance property but <paramref name="obj" /> is null. </exception> <exception cref="T:System.Reflection.TargetParameterCountException"> The number of parameters in <paramref name="index" /> does not match the number of parameters the indexed property takes. </exception> <exception cref="T:System.MethodAccessException"> There was an illegal attempt to access a private or protected method inside a class. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> An error occurred while retrieving the property value. For example, an index value specified for an indexed property is out of range. The <see cref="P:System.Exception.InnerException" /> property indicates the reason for the error. </exception> </member> <member name="M:System.Reflection.PropertyInfo.GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> When overridden in a derived class, returns the value of a property having the specified binding, index, and <see cref="T:System.Globalization.CultureInfo" />. </summary> <returns> The property value for <paramref name="obj" />. </returns> <param name="obj"> The object whose property value will be returned. </param> <param name="invokeAttr"> The invocation attribute. This must be a bit flag from BindingFlags : InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member is to be invoked, the Static flag of BindingFlags must be set. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> <param name="culture"> The CultureInfo object that represents the culture for which the resource is to be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property. </param> <exception cref="T:System.ArgumentException"> The <paramref name="index" /> array does not contain the type of arguments needed. -or- The property's get accessor is not found. </exception> <exception cref="T:System.Reflection.TargetException"> The object does not match the target type, or a property is an instance property but <paramref name="obj" /> is null. </exception> <exception cref="T:System.Reflection.TargetParameterCountException"> The number of parameters in <paramref name="index" /> does not match the number of parameters the indexed property takes. </exception> <exception cref="T:System.MethodAccessException"> There was an illegal attempt to access a private or protected method inside a class. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> An error occurred while retrieving the property value. For example, an index value specified for an indexed property is out of range. The <see cref="P:System.Exception.InnerException" /> property indicates the reason for the error. </exception> </member> <member name="P:System.Reflection.PropertyInfo.IsSpecialName"> <summary> Gets a value indicating whether the property is the special name. </summary> <returns>true if this property is the special name; otherwise, false. </returns> </member> <member name="P:System.Reflection.PropertyInfo.MemberType"> <summary> Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a property. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a property. </returns> </member> <member name="P:System.Reflection.PropertyInfo.PropertyType"> <summary> Gets the type of this property. </summary> <returns> The type of this property. </returns> </member> <member name="M:System.Reflection.PropertyInfo.SetValue(System.Object,System.Object,System.Object[])"> <summary> Sets the value of the property with optional index values for index properties. </summary> <param name="obj"> The object whose property value will be set. </param> <param name="value"> The new value for this property. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> <exception cref="T:System.ArgumentException"> The <paramref name="index" /> array does not contain the type of arguments needed. -or- The property's set accessor is not found. </exception> <exception cref="T:System.Reflection.TargetException"> The object does not match the target type, or a property is an instance property but <paramref name="obj" /> is null. </exception> <exception cref="T:System.Reflection.TargetParameterCountException"> The number of parameters in <paramref name="index" /> does not match the number of parameters the indexed property takes. </exception> <exception cref="T:System.MethodAccessException"> There was an illegal attempt to access a private or protected method inside a class. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> An error occurred while setting the property value. For example, an index value specified for an indexed property is out of range. The <see cref="P:System.Exception.InnerException" /> property indicates the reason for the error. </exception> </member> <member name="M:System.Reflection.PropertyInfo.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> When overridden in a derived class, sets the property value for the given object to the given value. </summary> <param name="obj"> The object whose property value will be returned. </param> <param name="value"> The new value for this property. </param> <param name="invokeAttr"> The invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member is to be invoked, the Static flag of BindingFlags must be set. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects through reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> object that represents the culture for which the resource is to be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property. </param> <exception cref="T:System.ArgumentException"> The <paramref name="index" /> array does not contain the type of arguments needed. -or- The property's set accessor is not found. </exception> <exception cref="T:System.Reflection.TargetException"> The object does not match the target type, or a property is an instance property but <paramref name="obj" /> is null. </exception> <exception cref="T:System.Reflection.TargetParameterCountException"> The number of parameters in <paramref name="index" /> does not match the number of parameters the indexed property takes. </exception> <exception cref="T:System.MethodAccessException"> There was an illegal attempt to access a private or protected method inside a class. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> An error occurred while setting the property value. For example, an index value specified for an indexed property is out of range. The <see cref="P:System.Exception.InnerException" /> property indicates the reason for the error. </exception> </member> <member name="M:System.Reflection.PropertyInfo.System#Runtime#InteropServices#_PropertyInfo#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.PropertyInfo.System#Runtime#InteropServices#_PropertyInfo#GetType"> <summary> Gets a <see cref="T:System.Type" /> object representing the <see cref="T:System.Reflection.PropertyInfo" /> type. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Reflection.PropertyInfo" /> type. </returns> </member> <member name="M:System.Reflection.PropertyInfo.System#Runtime#InteropServices#_PropertyInfo#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.PropertyInfo.System#Runtime#InteropServices#_PropertyInfo#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.PropertyInfo.System#Runtime#InteropServices#_PropertyInfo#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="T:System.Reflection.ReflectionTypeLoadException"> <summary> The exception that is thrown by the <see cref="M:System.Reflection.Module.GetTypes" /> method if any of the classes in a module cannot be loaded. This class cannot be inherited. </summary> </member> <member name="M:System.Reflection.ReflectionTypeLoadException.#ctor(System.Type[],System.Exception[])"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.ReflectionTypeLoadException" /> class with the given classes and their associated exceptions. </summary> <param name="classes"> An array of type Type containing the classes that were defined in the module and loaded. This array can contain null reference (Nothing in Visual Basic) values. </param> <param name="exceptions"> An array of type Exception containing the exceptions that were thrown by the class loader. The null reference (Nothing in Visual Basic) values in the <paramref name="classes" /> array line up with the exceptions in this <paramref name="exceptions" /> array. </param> </member> <member name="M:System.Reflection.ReflectionTypeLoadException.#ctor(System.Type[],System.Exception[],System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.ReflectionTypeLoadException" /> class with the given classes, their associated exceptions, and exception descriptions. </summary> <param name="classes"> An array of type Type containing the classes that were defined in the module and loaded. This array can contain null reference (Nothing in Visual Basic) values. </param> <param name="exceptions"> An array of type Exception containing the exceptions that were thrown by the class loader. The null reference (Nothing in Visual Basic) values in the <paramref name="classes" /> array line up with the exceptions in this <paramref name="exceptions" /> array. </param> <param name="message"> A String describing the reason the exception was thrown. </param> </member> <member name="M:System.Reflection.ReflectionTypeLoadException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Provides an <see cref="T:System.Runtime.Serialization.ISerializable" /> implementation for serialized objects. </summary> <param name="info"> The information and data needed to serialize or deserialize an object. </param> <param name="context"> The context for the serialization. </param> <exception cref="T:System.ArgumentNullException">info is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.Reflection.ReflectionTypeLoadException.LoaderExceptions"> <summary> Gets the array of exceptions thrown by the class loader. </summary> <returns> An array of type Exception containing the exceptions thrown by the class loader. The null values in the <paramref name="classes" /> array of this instance line up with the exceptions in this array. </returns> </member> <member name="P:System.Reflection.ReflectionTypeLoadException.Types"> <summary> Gets the array of classes that were defined in the module and loaded. </summary> <returns> An array of type Type containing the classes that were defined in the module and loaded. This array can contain some null values. </returns> </member> <member name="T:System.Reflection.ResourceAttributes"> <summary> Specifies the attributes for a manifest resource. </summary> </member> <member name="F:System.Reflection.ResourceAttributes.Public"> <summary> A mask used to retrieve public manifest resources. </summary> </member> <member name="F:System.Reflection.ResourceAttributes.Private"> <summary> A mask used to retrieve private manifest resources. </summary> </member> <member name="T:System.Reflection.ResourceLocation"> <summary> Specifies the resource location. </summary> </member> <member name="F:System.Reflection.ResourceLocation.Embedded"> <summary> Specifies an embedded (that is, non-linked) resource. </summary> </member> <member name="F:System.Reflection.ResourceLocation.ContainedInAnotherAssembly"> <summary> Specifies that the resource is contained in another assembly. </summary> </member> <member name="F:System.Reflection.ResourceLocation.ContainedInManifestFile"> <summary> Specifies that the resource is contained in the manifest file. </summary> </member> <member name="T:System.Reflection.StrongNameKeyPair"> <summary> Encapsulates access to a public or private key pair used to sign strong name assemblies. </summary> </member> <member name="M:System.Reflection.StrongNameKeyPair.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.StrongNameKeyPair" /> class, building the key pair from a byte array. </summary> <param name="keyPairArray"> An array of type byte containing the key pair. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="keyPairArray" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.StrongNameKeyPair.#ctor(System.IO.FileStream)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.StrongNameKeyPair" /> class, building the key pair from a FileStream. </summary> <param name="keyPairFile"> A FileStream containing the key pair. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="keyPairFile" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.StrongNameKeyPair.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.StrongNameKeyPair" /> class, building the key pair from serialized data. </summary> <param name="info"> A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data. </param> <param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination. </param> </member> <member name="M:System.Reflection.StrongNameKeyPair.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.StrongNameKeyPair" /> class, building the key pair from a String. </summary> <param name="keyPairContainer"> A string containing the key pair. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="keyPairContainer" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="P:System.Reflection.StrongNameKeyPair.PublicKey"> <summary> Gets the public part of the public key or public key token of the key pair. </summary> <returns> An array of type byte containing the public key or public key token of the key pair. </returns> </member> <member name="M:System.Reflection.StrongNameKeyPair.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)"> <summary> Runs when the entire object graph has been deserialized. </summary> <param name="sender"> The object that initiated the callback. </param> </member> <member name="M:System.Reflection.StrongNameKeyPair.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with all the data required to reinstantiate the current <see cref="T:System.Reflection.StrongNameKeyPair" /> object. </summary> <param name="info"> The object to be populated with serialization information. </param> <param name="context"> The destination context of the serialization. </param> <exception cref="T:System.ArgumentException"> <paramref name="info" /> is null. </exception> </member> <member name="T:System.Reflection.TargetException"> <summary> Represents the exception that is thrown when an attempt is made to invoke an invalid target. </summary> </member> <member name="M:System.Reflection.TargetException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TargetException" /> class with an empty message and the root cause of the exception. </summary> </member> <member name="M:System.Reflection.TargetException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TargetException" /> class with the specified serialization and context information. </summary> <param name="info"> The data for serializing or deserializing the object. </param> <param name="context"> The source of and destination for the object. </param> </member> <member name="M:System.Reflection.TargetException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TargetException" /> class with the given message and the root cause exception. </summary> <param name="message"> A String describing the reason why the exception occurred. </param> </member> <member name="M:System.Reflection.TargetException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TargetException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Reflection.TargetInvocationException"> <summary> The exception that is thrown by methods invoked through reflection. This class cannot be inherited. </summary> </member> <member name="M:System.Reflection.TargetInvocationException.#ctor(System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TargetInvocationException" /> class with a reference to the inner exception that is the cause of this exception. </summary> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Reflection.TargetInvocationException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TargetInvocationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Reflection.TargetParameterCountException"> <summary> The exception that is thrown when the number of parameters for an invocation does not match the number expected. This class cannot be inherited. </summary> </member> <member name="M:System.Reflection.TargetParameterCountException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TargetParameterCountException" /> class with an empty message string and the root cause of the exception. </summary> </member> <member name="M:System.Reflection.TargetParameterCountException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TargetParameterCountException" /> class with its message string set to the given message and the root cause exception. </summary> <param name="message"> A String describing the reason this exception was thrown. </param> </member> <member name="M:System.Reflection.TargetParameterCountException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TargetParameterCountException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Reflection.TypeAttributes"> <summary> Specifies type attributes. </summary> </member> <member name="F:System.Reflection.TypeAttributes.VisibilityMask"> <summary> Specifies type visibility information. </summary> </member> <member name="F:System.Reflection.TypeAttributes.NotPublic"> <summary> Specifies that the class is not public. </summary> </member> <member name="F:System.Reflection.TypeAttributes.Public"> <summary> Specifies that the class is public. </summary> </member> <member name="F:System.Reflection.TypeAttributes.NestedPublic"> <summary> Specifies that the class is nested with public visibility. </summary> </member> <member name="F:System.Reflection.TypeAttributes.NestedPrivate"> <summary> Specifies that the class is nested with private visibility. </summary> </member> <member name="F:System.Reflection.TypeAttributes.NestedFamily"> <summary> Specifies that the class is nested with family visibility, and is thus accessible only by methods within its own type and any subtypes. </summary> </member> <member name="F:System.Reflection.TypeAttributes.NestedAssembly"> <summary> Specifies that the class is nested with assembly visibility, and is thus accessible only by methods within its assembly. </summary> </member> <member name="F:System.Reflection.TypeAttributes.NestedFamANDAssem"> <summary> Specifies that the class is nested with assembly and family visibility, and is thus accessible only by methods lying in the intersection of its family and assembly. </summary> </member> <member name="F:System.Reflection.TypeAttributes.NestedFamORAssem"> <summary> Specifies that the class is nested with family or assembly visibility, and is thus accessible only by methods lying in the union of its family and assembly. </summary> </member> <member name="F:System.Reflection.TypeAttributes.LayoutMask"> <summary> Specifies class layout information. </summary> </member> <member name="F:System.Reflection.TypeAttributes.AutoLayout"> <summary> Specifies that class fields are automatically laid out by the common language runtime. </summary> </member> <member name="F:System.Reflection.TypeAttributes.SequentialLayout"> <summary> Specifies that class fields are laid out sequentially, in the order that the fields were emitted to the metadata. </summary> </member> <member name="F:System.Reflection.TypeAttributes.ExplicitLayout"> <summary> Specifies that class fields are laid out at the specified offsets. </summary> </member> <member name="F:System.Reflection.TypeAttributes.ClassSemanticsMask"> <summary> Specifies class semantics information; the current class is contextful (else agile). </summary> </member> <member name="F:System.Reflection.TypeAttributes.Class"> <summary> Specifies that the type is a class. </summary> </member> <member name="F:System.Reflection.TypeAttributes.Interface"> <summary> Specifies that the type is an interface. </summary> </member> <member name="F:System.Reflection.TypeAttributes.Abstract"> <summary> Specifies that the type is abstract. </summary> </member> <member name="F:System.Reflection.TypeAttributes.Sealed"> <summary> Specifies that the class is concrete and cannot be extended. </summary> </member> <member name="F:System.Reflection.TypeAttributes.SpecialName"> <summary> Specifies that the class is special in a way denoted by the name. </summary> </member> <member name="F:System.Reflection.TypeAttributes.Import"> <summary> Specifies that the class or interface is imported from another module. </summary> </member> <member name="F:System.Reflection.TypeAttributes.Serializable"> <summary> Specifies that the class can be serialized. </summary> </member> <member name="F:System.Reflection.TypeAttributes.StringFormatMask"> <summary> Used to retrieve string information for native interoperability. </summary> </member> <member name="F:System.Reflection.TypeAttributes.AnsiClass"> <summary> LPTSTR is interpreted as ANSI. </summary> </member> <member name="F:System.Reflection.TypeAttributes.UnicodeClass"> <summary> LPTSTR is interpreted as UNICODE. </summary> </member> <member name="F:System.Reflection.TypeAttributes.AutoClass"> <summary> LPTSTR is interpreted automatically. </summary> </member> <member name="F:System.Reflection.TypeAttributes.CustomFormatClass"> <summary> LPSTR is interpreted by some implementation-specific means, which includes the possibility of throwing a <see cref="T:System.NotSupportedException" />. Not used in the Microsoft implementation of the .NET Framework. </summary> </member> <member name="F:System.Reflection.TypeAttributes.CustomFormatMask"> <summary> Used to retrieve non-standard encoding information for native interop. The meaning of the values of these 2 bits is unspecified. Not used in the Microsoft implementation of the .NET Framework. </summary> </member> <member name="F:System.Reflection.TypeAttributes.BeforeFieldInit"> <summary> Specifies that calling static methods of the type does not force the system to initialize the type. </summary> </member> <member name="F:System.Reflection.TypeAttributes.ReservedMask"> <summary> Attributes reserved for runtime use. </summary> </member> <member name="F:System.Reflection.TypeAttributes.RTSpecialName"> <summary> Runtime should check name encoding. </summary> </member> <member name="F:System.Reflection.TypeAttributes.HasSecurity"> <summary> Type has security associate with it. </summary> </member> <member name="T:System.Reflection.TypeDelegator"> <summary> Wraps a Type object and delegates all methods to that Type. </summary> </member> <member name="M:System.Reflection.TypeDelegator.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TypeDelegator" /> class with default properties. </summary> </member> <member name="M:System.Reflection.TypeDelegator.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Reflection.TypeDelegator" /> class specifying the encapsulating instance. </summary> <param name="delegatingType"> The instance of the class <see cref="T:System.Type" /> that encapsulates the call to the method of an object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="delegatingType" /> is null. </exception> </member> <member name="P:System.Reflection.TypeDelegator.Assembly"> <summary> Gets the assembly of the implemented type. </summary> <returns> An <see cref="T:System.Reflection.Assembly" /> object representing the assembly of the implemented type. </returns> </member> <member name="P:System.Reflection.TypeDelegator.AssemblyQualifiedName"> <summary> Gets the assembly's fully qualified name. </summary> <returns> A String containing the assembly's fully qualified name. </returns> </member> <member name="P:System.Reflection.TypeDelegator.BaseType"> <summary> Gets the base type for the current type. </summary> <returns> The base type for a type. </returns> </member> <member name="P:System.Reflection.TypeDelegator.FullName"> <summary> Gets the fully qualified name of the implemented type. </summary> <returns> A String containing the type's fully qualified name. </returns> </member> <member name="M:System.Reflection.TypeDelegator.GetAttributeFlagsImpl"> <summary> Gets the attributes assigned to the TypeDelegator. </summary> <returns> A TypeAttributes object representing the implementation attribute flags. </returns> </member> <member name="M:System.Reflection.TypeDelegator.GetConstructorImpl(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Gets the constructor that implemented the TypeDelegator. </summary> <returns> A ConstructorInfo object for the method that matches the specified criteria, or null if a match cannot be found. </returns> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="callConvention"> The calling conventions. </param> <param name="types"> An array of type Type containing a list of the parameter number, order, and types. Types cannot be null; use an appropriate GetMethod method or an empty array to search for a method without parameters. </param> <param name="modifiers"> An array of type ParameterModifier having the same length as the <paramref name="types" /> array, whose elements represent the attributes associated with the parameters of the method to get. </param> </member> <member name="M:System.Reflection.TypeDelegator.GetConstructors(System.Reflection.BindingFlags)"> <summary> Returns an array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing constructors defined for the type wrapped by the current <see cref="T:System.Reflection.TypeDelegator" />. </summary> <returns> An array of type ConstructorInfo containing the specified constructors defined for this class. If no constructors are defined, an empty array is returned. Depending on the value of a specified parameter, only public constructors or both public and non-public constructors will be returned. </returns> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> </member> <member name="M:System.Reflection.TypeDelegator.GetCustomAttributes(System.Boolean)"> <summary> Returns all the custom attributes defined for this type, specifying whether to search the type's inheritance chain. </summary> <returns> An array of objects containing all the custom attributes defined for this type. </returns> <param name="inherit"> Specifies whether to search this type's inheritance chain to find the attributes. </param> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> </member> <member name="M:System.Reflection.TypeDelegator.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Returns an array of custom attributes identified by type. </summary> <returns> An array of objects containing the custom attributes defined in this type that match the <paramref name="attributeType" /> parameter, specifying whether to search the type's inheritance chain, or null if no custom attributes are defined on this type. </returns> <param name="attributeType"> An array of custom attributes identified by type. </param> <param name="inherit"> Specifies whether to search this type's inheritance chain to find the attributes. </param> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.TypeLoadException"> A custom attribute type cannot be loaded. </exception> </member> <member name="M:System.Reflection.TypeDelegator.GetElementType"> <summary> Returns the <see cref="T:System.Type" /> of the object encompassed or referred to by the current array, pointer or ByRef. </summary> <returns> The <see cref="T:System.Type" /> of the object encompassed or referred to by the current array, pointer or ByRef, or null if the current <see cref="T:System.Type" /> is not an array, a pointer or a ByRef. </returns> </member> <member name="M:System.Reflection.TypeDelegator.GetEvent(System.String,System.Reflection.BindingFlags)"> <summary> Returns the specified event. </summary> <returns> An <see cref="T:System.Reflection.EventInfo" /> object representing the event declared or inherited by this type with the specified name. This method returns null if no such event is found. </returns> <param name="name"> The name of the event to get. </param> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Reflection.TypeDelegator.GetEvents"> <summary> Returns an array of <see cref="T:System.Reflection.EventInfo" /> objects representing all the public events declared or inherited by the current TypeDelegator. </summary> <returns> Returns an array of type EventInfo containing all the events declared or inherited by the current type. If there are no events, an empty array is returned. </returns> </member> <member name="M:System.Reflection.TypeDelegator.GetEvents(System.Reflection.BindingFlags)"> <summary> Returns the events specified in <paramref name="bindingAttr" /> that are declared or inherited by the current TypeDelegator. </summary> <returns> An array of type EventInfo containing the events specified in <paramref name="bindingAttr" />. If there are no events, an empty array is returned. </returns> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> </member> <member name="M:System.Reflection.TypeDelegator.GetField(System.String,System.Reflection.BindingFlags)"> <summary> Returns a <see cref="T:System.Reflection.FieldInfo" /> object representing the field with the specified name. </summary> <returns> A FieldInfo object representing the field declared or inherited by this TypeDelegator with the specified name. Returns null if no such field is found. </returns> <param name="name"> The name of the field to find. </param> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Reflection.TypeDelegator.GetFields(System.Reflection.BindingFlags)"> <summary> Returns an array of <see cref="T:System.Reflection.FieldInfo" /> objects representing the data fields defined for the type wrapped by the current <see cref="T:System.Reflection.TypeDelegator" />. </summary> <returns> An array of type FieldInfo containing the fields declared or inherited by the current TypeDelegator. An empty array is returned if there are no matched fields. </returns> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> </member> <member name="M:System.Reflection.TypeDelegator.GetInterface(System.String,System.Boolean)"> <summary> Returns the specified interface implemented by the type wrapped by the current <see cref="T:System.Reflection.TypeDelegator" />. </summary> <returns> A Type object representing the interface implemented (directly or indirectly) by the current class with the fully qualified name matching the specified name. If no interface that matches name is found, null is returned. </returns> <param name="name"> The fully qualified name of the interface implemented by the current class. </param> <param name="ignoreCase">true if the case is to be ignored; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Reflection.TypeDelegator.GetInterfaceMap(System.Type)"> <summary> Returns an interface mapping for the specified interface type. </summary> <returns> An <see cref="T:System.Reflection.InterfaceMapping" /> object representing the interface mapping for <paramref name="interfaceType" />. </returns> <param name="interfaceType"> The <see cref="T:System.Type" /> of the interface to retrieve a mapping of. </param> </member> <member name="M:System.Reflection.TypeDelegator.GetInterfaces"> <summary> Returns all the interfaces implemented on the current class and its base classes. </summary> <returns> An array of type Type containing all the interfaces implemented on the current class and its base classes. If none are defined, an empty array is returned. </returns> </member> <member name="M:System.Reflection.TypeDelegator.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)"> <summary> Returns members (properties, methods, constructors, fields, events, and nested types) specified by the given <paramref name="name" />, <paramref name="type" />, and <paramref name="bindingAttr" />. </summary> <returns> An array of type MemberInfo containing all the members of the current class and its base class meeting the specified criteria. </returns> <param name="name"> The name of the member to get. </param> <param name="type"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> <param name="bindingAttr"> The type of members to get. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Reflection.TypeDelegator.GetMembers(System.Reflection.BindingFlags)"> <summary> Returns members specified by <paramref name="bindingAttr" />. </summary> <returns> An array of type MemberInfo containing all the members of the current class and its base classes that meet the <paramref name="bindingAttr" /> filter. </returns> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> </member> <member name="M:System.Reflection.TypeDelegator.GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Searches for the specified method whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention. </summary> <returns> A MethodInfoInfo object for the implementation method that matches the specified criteria, or null if a match cannot be found. </returns> <param name="name"> The method name. </param> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="callConvention"> The calling conventions. </param> <param name="types"> An array of type Type containing a list of the parameter number, order, and types. Types cannot be null; use an appropriate GetMethod method or an empty array to search for a method without parameters. </param> <param name="modifiers"> An array of type ParameterModifier having the same length as the <paramref name="types" /> array, whose elements represent the attributes associated with the parameters of the method to get. </param> </member> <member name="M:System.Reflection.TypeDelegator.GetMethods(System.Reflection.BindingFlags)"> <summary> Returns an array of <see cref="T:System.Reflection.MethodInfo" /> objects representing specified methods of the type wrapped by the current <see cref="T:System.Reflection.TypeDelegator" />. </summary> <returns> An array of MethodInfo objects representing the methods defined on this TypeDelegator. </returns> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> </member> <member name="M:System.Reflection.TypeDelegator.GetNestedType(System.String,System.Reflection.BindingFlags)"> <summary> Returns a nested type specified by <paramref name="name" /> and in <paramref name="bindingAttr" /> that are declared or inherited by the type represented by the current <see cref="T:System.Reflection.TypeDelegator" />. </summary> <returns> A Type object representing the nested type. </returns> <param name="name"> The nested type's name. </param> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Reflection.TypeDelegator.GetNestedTypes(System.Reflection.BindingFlags)"> <summary> Returns the nested types specified in <paramref name="bindingAttr" /> that are declared or inherited by the type wrapped by the current <see cref="T:System.Reflection.TypeDelegator" />. </summary> <returns> An array of type Type containing the nested types. </returns> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> </member> <member name="M:System.Reflection.TypeDelegator.GetProperties(System.Reflection.BindingFlags)"> <summary> Returns an array of <see cref="T:System.Reflection.PropertyInfo" /> objects representing properties of the type wrapped by the current <see cref="T:System.Reflection.TypeDelegator" />. </summary> <returns> An array of PropertyInfo objects representing properties defined on this TypeDelegator. </returns> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> </member> <member name="M:System.Reflection.TypeDelegator.GetPropertyImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])"> <summary> When overridden in a derived class, searches for the specified property whose parameters match the specified argument types and modifiers, using the specified binding constraints. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object for the property that matches the specified criteria, or null if a match cannot be found. </returns> <param name="name"> The property to get. </param> <param name="bindingAttr"> A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If <paramref name="binder" /> is null, the default binder is used. See <see cref="T:System.Reflection.Binder" />. </param> <param name="returnType"> The return type of the property. </param> <param name="types"> A list of parameter types. The list represents the number, order, and types of the parameters. Types cannot be null; use an appropriate GetMethod method or an empty array to search for a method without parameters. </param> <param name="modifiers"> An array of the same length as types with elements that represent the attributes associated with the parameters of the method to get. </param> </member> <member name="P:System.Reflection.TypeDelegator.GUID"> <summary> Gets the GUID (globally unique identifier) of the implemented type. </summary> <returns> A GUID. </returns> </member> <member name="M:System.Reflection.TypeDelegator.HasElementTypeImpl"> <summary> Gets a value indicating whether the current <see cref="T:System.Type" /> encompasses or refers to another type; that is, whether the current <see cref="T:System.Type" /> is an array, a pointer or a ByRef. </summary> <returns>true if the <see cref="T:System.Type" /> is an array, a pointer or a ByRef; otherwise, false. </returns> </member> <member name="M:System.Reflection.TypeDelegator.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])"> <summary> Invokes the specified member. The method that is to be invoked must be accessible and provide the most specific match with the specified argument list, under the constraints of the specified binder and invocation attributes. </summary> <returns> An Object representing the return value of the invoked member. </returns> <param name="name"> The name of the member to invoke. This may be a constructor, method, property, or field. If an empty string ("") is passed, the default member is invoked. </param> <param name="invokeAttr"> The invocation attribute. This must be one of the following <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member is to be invoked, the Static flag must be set. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If <paramref name="binder" /> is null, the default binder is used. See <see cref="T:System.Reflection.Binder" />. </param> <param name="target"> The object on which to invoke the specified member. </param> <param name="args"> An array of type Object that contains the number, order, and type of the parameters of the member to be invoked. If <paramref name="args" /> contains an uninitialized Object, it is treated as empty, which, with the default binder, can be widened to 0, 0.0 or a string. </param> <param name="modifiers"> An array of type ParameterModifer that is the same length as <paramref name="args" />, with elements that represent the attributes associated with the arguments of the member to be invoked. A parameter has attributes associated with it in the member's signature. For ByRef, use ParameterModifer.ByRef, and for none, use ParameterModifer.None. The default binder does exact matching on these. Attributes such as In and InOut are not used in binding, and can be viewed using ParameterInfo. </param> <param name="culture"> An instance of CultureInfo used to govern the coercion of types. This is necessary, for example, to convert a string that represents 1000 to a Double value, since 1000 is represented differently by different cultures. If <paramref name="culture" /> is null, the CultureInfo for the current thread's CultureInfo is used. </param> <param name="namedParameters"> An array of type String containing parameter names that match up, starting at element zero, with the <paramref name="args" /> array. There must be no holes in the array. If <paramref name="args" />. Length is greater than <paramref name="namedParameters" />. Length, the remaining parameters are filled in order. </param> </member> <member name="M:System.Reflection.TypeDelegator.IsArrayImpl"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is an array. </summary> <returns>true if the <see cref="T:System.Type" /> is an array; otherwise, false. </returns> </member> <member name="M:System.Reflection.TypeDelegator.IsByRefImpl"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is passed by reference. </summary> <returns>true if the <see cref="T:System.Type" /> is passed by reference; otherwise, false. </returns> </member> <member name="M:System.Reflection.TypeDelegator.IsCOMObjectImpl"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is a COM object. </summary> <returns>true if the <see cref="T:System.Type" /> is a COM object; otherwise, false. </returns> </member> <member name="M:System.Reflection.TypeDelegator.IsDefined(System.Type,System.Boolean)"> <summary> Indicates whether a custom attribute identified by <paramref name="attributeType" /> is defined. </summary> <returns>true if a custom attribute identified by <paramref name="attributeType" /> is defined; otherwise, false. </returns> <param name="attributeType"> Specifies whether to search this type's inheritance chain to find the attributes. </param> <param name="inherit"> An array of custom attributes identified by type. </param> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.Reflection.ReflectionTypeLoadException"> The custom attribute type cannot be loaded. </exception> </member> <member name="M:System.Reflection.TypeDelegator.IsPointerImpl"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is a pointer. </summary> <returns>true if the <see cref="T:System.Type" /> is a pointer; otherwise, false. </returns> </member> <member name="M:System.Reflection.TypeDelegator.IsPrimitiveImpl"> <summary> Gets a value indicating whether the <see cref="T:System.Type" /> is one of the primitive types. </summary> <returns>true if the <see cref="T:System.Type" /> is one of the primitive types; otherwise, false. </returns> </member> <member name="M:System.Reflection.TypeDelegator.IsValueTypeImpl"> <summary> Gets a value indicating whether the type is a value type; that is, not a class or an interface. </summary> <returns>true if the type is a value type; otherwise, false. </returns> </member> <member name="P:System.Reflection.TypeDelegator.MetadataToken"> <summary> Gets a value that identifies this entity in metadata. </summary> <returns> A value which, in combination with the module, uniquely identifies this entity in metadata. </returns> </member> <member name="P:System.Reflection.TypeDelegator.Module"> <summary> Gets the module that contains the implemented type. </summary> <returns> A <see cref="T:System.Reflection.Module" /> object representing the module of the implemented type. </returns> </member> <member name="P:System.Reflection.TypeDelegator.Name"> <summary> Gets the name of the implemented type, with the path removed. </summary> <returns> A String containing the type's non-qualified name. </returns> </member> <member name="P:System.Reflection.TypeDelegator.Namespace"> <summary> Gets the namespace of the implemented type. </summary> <returns> A String containing the type's namespace. </returns> </member> <member name="P:System.Reflection.TypeDelegator.TypeHandle"> <summary> Gets a handle to the internal metadata representation of an implemented type. </summary> <returns> A RuntimeTypeHandle object. </returns> </member> <member name="F:System.Reflection.TypeDelegator.typeImpl"> <summary> A value indicating type information. </summary> </member> <member name="P:System.Reflection.TypeDelegator.UnderlyingSystemType"> <summary> Gets the underlying <see cref="T:System.Type" /> that represents the implemented type. </summary> <returns> The underlying type. </returns> </member> <member name="T:System.Reflection.TypeFilter"> <summary> Filters the classes represented in an array of <see cref="T:System.Type" /> objects. </summary> <returns>true to include the <see cref="T:System.Type" /> in the filtered list; otherwise false. </returns> <param name="m"> The Type object to which the filter is applied. </param> <param name="filterCriteria"> An arbitrary object used to filter the list. </param> </member> <member name="M:System.Reflection.Assembly.Equals(System.Object)"> <summary> Determines whether this assembly and the specified object are equal. </summary> <returns>true if <paramref name="o" /> is equal to this instance; otherwise, false. </returns> <param name="o"> The object to compare with this instance. </param> </member> <member name="M:System.Reflection.Assembly.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> </member> <member name="M:System.Reflection.Module.Equals(System.Object)"> <summary> Determines whether this module and the specified object are equal. </summary> <returns>true if <paramref name="o" /> is equal to this instance; otherwise, false. </returns> <param name="o"> The object to compare with this instance. </param> </member> <member name="M:System.Reflection.Module.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> </member> <member name="M:System.Reflection.ParameterInfo.Equals(System.Object)"> <summary> Determines whether this module and the specified object are equal. </summary> <returns>true if <paramref name="obj" /> is equal to this instance; otherwise, false. </returns> <param name="obj"> The object to compare with this instance. </param> </member> <member name="M:System.Reflection.ParameterInfo.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> </member> <member name="T:System.Reflection.Emit.AssemblyBuilder"> <summary> Defines and represents a dynamic assembly. </summary> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.AddResourceFile(System.String,System.String)"> <summary> Adds an existing resource file to this assembly. </summary> <param name="name"> The logical name of the resource. </param> <param name="fileName"> The physical file name (.resources file) to which the logical name is mapped. This should not include a path; the file must be in the same directory as the assembly to which it is added. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> has been previously defined. -or- There is another file in the assembly named <paramref name="fileName" />. -or- The length of <paramref name="name" /> is zero. -or- The length of <paramref name="fileName" /> is zero, or if <paramref name="fileName" /> includes a path. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="fileName" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file <paramref name="fileName" /> is not found. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.AddResourceFile(System.String,System.String,System.Reflection.ResourceAttributes)"> <summary> Adds an existing resource file to this assembly. </summary> <param name="name"> The logical name of the resource. </param> <param name="fileName"> The physical file name (.resources file) to which the logical name is mapped. This should not include a path; the file must be in the same directory as the assembly to which it is added. </param> <param name="attribute"> The resource attributes. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> has been previously defined. -or- There is another file in the assembly named <paramref name="fileName" />. -or- The length of <paramref name="name" /> is zero or if the length of <paramref name="fileName" /> is zero. -or- <paramref name="fileName" /> includes a path. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="fileName" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> If the file <paramref name="fileName" /> is not found. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Reflection.Emit.AssemblyBuilder.CodeBase"> <summary> Gets the location of the assembly, as specified originally (such as in an <see cref="T:System.Reflection.AssemblyName" /> object). </summary> <returns> The location of the assembly, as specified originally. </returns> <exception cref="T:System.NotSupportedException"> This method is not currently supported. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicModule(System.String)"> <summary> Defines a named transient dynamic module in this assembly. </summary> <returns> A <see cref="T:System.Reflection.Emit.ModuleBuilder" /> representing the defined dynamic module. </returns> <param name="name"> The name of the dynamic module. Must be less than 260 characters in length. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> begins with white space. -or- The length of <paramref name="name" /> is zero. -or- The length of <paramref name="name" /> is greater than or equal to 260. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ExecutionEngineException"> The assembly for default symbol writer cannot be loaded. -or- The type that implements the default symbol writer interface cannot be found. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicModule(System.String,System.Boolean)"> <summary> Defines a named transient dynamic module in this assembly and specifies whether symbol information should be emitted. </summary> <returns> A <see cref="T:System.Reflection.Emit.ModuleBuilder" /> representing the defined dynamic module. </returns> <param name="name"> The name of the dynamic module. Must be less than 260 characters in length. </param> <param name="emitSymbolInfo">true if symbol information is to be emitted; otherwise, false. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> begins with white space. -or- The length of <paramref name="name" /> is zero. -or- The length of <paramref name="name" /> is greater than or equal to 260. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ExecutionEngineException"> The assembly for default symbol writer cannot be loaded. -or- The type that implements the default symbol writer interface cannot be found. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicModule(System.String,System.String)"> <summary> Defines a persistable dynamic module with the given name that will be saved to the specified file. No symbol information is emitted. </summary> <returns> A <see cref="T:System.Reflection.Emit.ModuleBuilder" /> object representing the defined dynamic module. </returns> <param name="name"> The name of the dynamic module. Must be less than 260 characters in length. </param> <param name="fileName"> The name of the file to which the dynamic module should be saved. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="fileName" /> is null. </exception> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> or <paramref name="fileName" /> is zero. -or- The length of <paramref name="name" /> is greater than or equal to 260. -or- <paramref name="fileName" /> contains a path specification (a directory component, for example). -or- There is a conflict with the name of another file that belongs to this assembly. </exception> <exception cref="T:System.InvalidOperationException"> This assembly has been previously saved. </exception> <exception cref="T:System.NotSupportedException"> This assembly was called on a dynamic assembly with <see cref="F:System.Reflection.Emit.AssemblyBuilderAccess.Run" /> attribute. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ExecutionEngineException"> The assembly for default symbol writer cannot be loaded. -or- The type that implements the default symbol writer interface cannot be found. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicModule(System.String,System.String,System.Boolean)"> <summary> Defines a persistable dynamic module, specifying the module name, the name of the file to which the module will be saved, and whether symbol information should be emitted using the default symbol writer. </summary> <returns> A <see cref="T:System.Reflection.Emit.ModuleBuilder" /> object representing the defined dynamic module. </returns> <param name="name"> The name of the dynamic module. Must be less than 260 characters in length. </param> <param name="fileName"> The name of the file to which the dynamic module should be saved. </param> <param name="emitSymbolInfo"> If true, symbolic information is written using the default symbol writer. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="fileName" /> is null. </exception> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> or <paramref name="fileName" /> is zero. -or- The length of <paramref name="name" /> is greater than or equal to 260. -or- <paramref name="fileName" /> contains a path specification (a directory component, for example). -or- There is a conflict with the name of another file that belongs to this assembly. </exception> <exception cref="T:System.InvalidOperationException"> This assembly has been previously saved. </exception> <exception cref="T:System.NotSupportedException"> This assembly was called on a dynamic assembly with the <see cref="F:System.Reflection.Emit.AssemblyBuilderAccess.Run" /> attribute. </exception> <exception cref="T:System.ExecutionEngineException"> The assembly for default symbol writer cannot be loaded. -or- The type that implements the default symbol writer interface cannot be found. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineResource(System.String,System.String,System.String)"> <summary> Defines a standalone managed resource for this assembly with the default public resource attribute. </summary> <returns> A <see cref="T:System.Resources.ResourceWriter" /> object for the specified resource. </returns> <param name="name"> The logical name of the resource. </param> <param name="description"> A textual description of the resource. </param> <param name="fileName"> The physical file name (.resources file) to which the logical name is mapped. This should not include a path. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> has been previously defined. -or- There is another file in the assembly named <paramref name="fileName" />. -or- The length of <paramref name="name" /> is zero. -or- The length of <paramref name="fileName" /> is zero. -or- <paramref name="fileName" /> includes a path. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="fileName" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineResource(System.String,System.String,System.String,System.Reflection.ResourceAttributes)"> <summary> Defines a standalone managed resource for this assembly. Attributes can be specified for the managed resource. </summary> <returns> A <see cref="T:System.Resources.ResourceWriter" /> object for the specified resource. </returns> <param name="name"> The logical name of the resource. </param> <param name="description"> A textual description of the resource. </param> <param name="fileName"> The physical file name (.resources file) to which the logical name is mapped. This should not include a path. </param> <param name="attribute"> The resource attributes. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> has been previously defined or if there is another file in the assembly named <paramref name="fileName" />. -or- The length of <paramref name="name" /> is zero. -or- The length of <paramref name="fileName" /> is zero. -or- <paramref name="fileName" /> includes a path. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="fileName" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineUnmanagedResource(System.Byte[])"> <summary> Defines an unmanaged resource for this assembly as an opaque blob of bytes. </summary> <param name="resource"> The opaque blob of bytes representing the unmanaged resource. </param> <exception cref="T:System.ArgumentException"> An unmanaged resource was previously defined. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="resource" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineUnmanagedResource(System.String)"> <summary> Defines an unmanaged resource file for this assembly given the name of the resource file. </summary> <param name="resourceFileName"> The name of the resource file. </param> <exception cref="T:System.ArgumentException"> An unmanaged resource was previously defined. -or- The file <paramref name="resourceFileName" /> is not readable. -or- <paramref name="resourceFileName" /> is the empty string (""). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="resourceFileName" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="resourceFileName" /> is not found. -or- <paramref name="resourceFileName" /> is a directory. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineVersionInfoResource"> <summary> Defines an unmanaged version information resource using the information specified in the assembly's AssemblyName object and the assembly's custom attributes. </summary> <exception cref="T:System.ArgumentException"> An unmanaged version information resource was previously defined. -or- The unmanaged version information is too large to persist. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineVersionInfoResource(System.String,System.String,System.String,System.String,System.String)"> <summary> Defines an unmanaged version information resource for this assembly with the given specifications. </summary> <param name="product"> The name of the product with which this assembly is distributed. </param> <param name="productVersion"> The version of the product with which this assembly is distributed. </param> <param name="company"> The name of the company that produced this assembly. </param> <param name="copyright"> Describes all copyright notices, trademarks, and registered trademarks that apply to this assembly. This should include the full text of all notices, legal symbols, copyright dates, trademark numbers, and so on. In English, this string should be in the format "Copyright Microsoft Corp. 1990-2001". </param> <param name="trademark"> Describes all trademarks and registered trademarks that apply to this assembly. This should include the full text of all notices, legal symbols, trademark numbers, and so on. In English, this string should be in the format "Windows is a trademark of Microsoft Corporation". </param> <exception cref="T:System.ArgumentException"> An unmanaged version information resource was previously defined. -or- The unmanaged version information is too large to persist. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="P:System.Reflection.Emit.AssemblyBuilder.EntryPoint"> <summary> Returns the entry point of this assembly. </summary> <returns> The entry point of this assembly. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.GetDynamicModule(System.String)"> <summary> Returns the dynamic module with the specified name. </summary> <returns> A ModuleBuilder object representing the requested dynamic module. </returns> <param name="name"> The name of the requested dynamic module. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.GetExportedTypes"> <summary> Gets the exported types defined in this assembly. </summary> <returns> An array of <see cref="T:System.Type" /> containing the exported types defined in this assembly. </returns> <exception cref="T:System.NotSupportedException"> This method is not implemented. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.GetFile(System.String)"> <summary> Gets a <see cref="T:System.IO.FileStream" /> for the specified file in the file table of the manifest of this assembly. </summary> <returns> A <see cref="T:System.IO.FileStream" /> for the specified file, or null, if the file is not found. </returns> <param name="name"> The name of the specified file. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.GetFiles(System.Boolean)"> <summary> Gets the files in the file table of an assembly manifest, specifying whether to include resource modules. </summary> <returns> An array of <see cref="T:System.IO.FileStream" /> objects. </returns> <param name="getResourceModules">true to include resource modules; otherwise, false. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceInfo(System.String)"> <summary> Returns information about how the given resource has been persisted. </summary> <returns> <see cref="T:System.Reflection.ManifestResourceInfo" /> populated with information about the resource's topology, or null if the resource is not found. </returns> <param name="resourceName"> The name of the resource. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceNames"> <summary> Loads the specified manifest resource from this assembly. </summary> <returns> An array of type String containing the names of all the resources. </returns> <exception cref="T:System.NotSupportedException"> This method is not supported on a dynamic assembly. To get the manifest resource names, use <see cref="M:System.Reflection.Assembly.GetManifestResourceNames" />. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceStream(System.String)"> <summary> Loads the specified manifest resource from this assembly. </summary> <returns> A <see cref="T:System.IO.Stream" /> representing this manifest resource. </returns> <param name="name"> The name of the manifest resource being requested. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceStream(System.Type,System.String)"> <summary> Loads the specified manifest resource, scoped by the namespace of the specified type, from this assembly. </summary> <returns> A <see cref="T:System.IO.Stream" /> representing this manifest resource. </returns> <param name="type"> The type whose namespace is used to scope the manifest resource name. </param> <param name="name"> The name of the manifest resource being requested. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="P:System.Reflection.Emit.AssemblyBuilder.ImageRuntimeVersion"> <summary> Gets the version of the common language runtime that will be saved in the file containing the manifest. </summary> <returns> A string representing the common language runtime version. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Reflection.Emit.AssemblyBuilder.Location"> <summary> Gets the location, in codebase format, of the loaded file that contains the manifest if it is not shadow-copied. </summary> <returns> The location of the loaded file that contains the manifest. If the loaded file has been shadow-copied, the Location is that of the file before being shadow-copied. </returns> <exception cref="T:System.NotSupportedException"> This method is not currently supported. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="P:System.Reflection.Emit.AssemblyBuilder.ReflectionOnly"> <summary> Gets a value indicating whether the dynamic assembly is in the reflection-only context. </summary> <returns>true if the dynamic assembly is in the reflection-only context; otherwise, false. </returns> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.Save(System.String)"> <summary> Saves this dynamic assembly to disk. </summary> <param name="assemblyFileName"> The file name of the assembly. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="assemblyFileName" /> is 0. -or- There are two or more modules resource files in the assembly with the same name. -or- The target directory of the assembly is invalid. -or- <paramref name="assemblyFileName" /> is not a simple file name (for example, has a directory or drive component), or more than one unmanaged resource, including a version information resource, was defined in this assembly. -or- The CultureInfo string in <see cref="T:System.Reflection.AssemblyCultureAttribute" /> is not a valid string and <see cref="M:System.Reflection.Emit.AssemblyBuilder.DefineVersionInfoResource(System.String,System.String,System.String,System.String,System.String)" /> was called prior to calling this method. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFileName" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> This assembly has been saved before. -or- This assembly has access Run<see cref="T:System.Reflection.Emit.AssemblyBuilderAccess" /></exception> <exception cref="T:System.IO.IOException"> An output error occurs during the save. </exception> <exception cref="T:System.NotSupportedException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has not been called for any of the types in the modules of the assembly to be written to disk. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.Save(System.String,System.Reflection.PortableExecutableKinds,System.Reflection.ImageFileMachine)"> <summary> Saves this dynamic assembly to disk, specifying the nature of code in the assembly's executables and the target platform. </summary> <param name="assemblyFileName"> The file name of the assembly. </param> <param name="portableExecutableKind"> A bitwise combination of the <see cref="T:System.Reflection.PortableExecutableKinds" /> values that specifies the nature of the code. </param> <param name="imageFileMachine"> One of the <see cref="T:System.Reflection.ImageFileMachine" /> values that specifies the target platform. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="assemblyFileName" /> is 0. -or- There are two or more modules resource files in the assembly with the same name. -or- The target directory of the assembly is invalid. -or- <paramref name="assemblyFileName" /> is not a simple file name (for example, has a directory or drive component), or more than one unmanaged resource, including a version information resources, was defined in this assembly. -or- The CultureInfo string in <see cref="T:System.Reflection.AssemblyCultureAttribute" /> is not a valid string and <see cref="M:System.Reflection.Emit.AssemblyBuilder.DefineVersionInfoResource(System.String,System.String,System.String,System.String,System.String)" /> was called prior to calling this method. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="assemblyFileName" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> This assembly has been saved before. -or- This assembly has access Run<see cref="T:System.Reflection.Emit.AssemblyBuilderAccess" /></exception> <exception cref="T:System.IO.IOException"> An output error occurs during the save. </exception> <exception cref="T:System.NotSupportedException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has not been called for any of the types in the modules of the assembly to be written to disk. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Set a custom attribute on this assembly using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ArgumentException"> <paramref name="con" /> is not a RuntimeConstructorInfo. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Set a custom attribute on this assembly using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class to define the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.SetEntryPoint(System.Reflection.MethodInfo)"> <summary> Sets the entry point for this dynamic assembly, assuming that a console application is being built. </summary> <param name="entryMethod"> A reference to the method that represents the entry point for this dynamic assembly. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="entryMethod" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="entryMethod" /> is not contained within this assembly. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.SetEntryPoint(System.Reflection.MethodInfo,System.Reflection.Emit.PEFileKinds)"> <summary> Sets the entry point for this assembly and defines the type of the portable executable (PE file) being built. </summary> <param name="entryMethod"> A reference to the method that represents the entry point for this dynamic assembly. </param> <param name="fileKind"> The type of the assembly executable being built. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="entryMethod" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="entryMethod" /> is not contained within this assembly. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.System#Runtime#InteropServices#_AssemblyBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.System#Runtime#InteropServices#_AssemblyBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.System#Runtime#InteropServices#_AssemblyBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.AssemblyBuilder.System#Runtime#InteropServices#_AssemblyBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="T:System.Reflection.Emit.AssemblyBuilderAccess"> <summary> Defines the access modes for a dynamic assembly. </summary> </member> <member name="F:System.Reflection.Emit.AssemblyBuilderAccess.Run"> <summary> Represents that the dynamic assembly can be executed, but not saved. </summary> </member> <member name="F:System.Reflection.Emit.AssemblyBuilderAccess.Save"> <summary> Represents that the dynamic assembly can be saved, but not executed. </summary> </member> <member name="F:System.Reflection.Emit.AssemblyBuilderAccess.RunAndSave"> <summary> Represents that the dynamic assembly can be executed and saved. </summary> </member> <member name="F:System.Reflection.Emit.AssemblyBuilderAccess.ReflectionOnly"> <summary> Represents that the dynamic assembly is loaded into the reflection-only context, and cannot be executed. </summary> </member> <member name="T:System.Reflection.Emit.ConstructorBuilder"> <summary> Defines and represents a constructor of a dynamic class. </summary> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.AddDeclarativeSecurity(System.Security.Permissions.SecurityAction,System.Security.PermissionSet)"> <summary> Adds declarative security to this constructor. </summary> <param name="action"> The security action to be taken, such as Demand, Assert, and so on. </param> <param name="pset"> The set of permissions the action applies to. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="action" /> is invalid (RequestMinimum, RequestOptional, and RequestRefuse are invalid). </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- The permission set <paramref name="pset" /> contains an action that was added earlier by AddDeclarativeSecurity. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="pset" /> is null. </exception> </member> <member name="P:System.Reflection.Emit.ConstructorBuilder.Attributes"> <summary> Retrieves the attributes for this constructor. </summary> <returns> Returns the attributes for this constructor. </returns> </member> <member name="P:System.Reflection.Emit.ConstructorBuilder.CallingConvention"> <summary> Gets a <see cref="T:System.Reflection.CallingConventions" /> value that depends on whether the declaring type is generic. </summary> <returns> <see cref="F:System.Reflection.CallingConventions.HasThis" /> if the declaring type is generic; otherwise, <see cref="F:System.Reflection.CallingConventions.Standard" />. </returns> </member> <member name="P:System.Reflection.Emit.ConstructorBuilder.DeclaringType"> <summary> Retrieves a reference to the <see cref="T:System.Type" /> object for the type that declares this member. </summary> <returns> Returns the <see cref="T:System.Type" /> object for the type that declares this member. </returns> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.DefineParameter(System.Int32,System.Reflection.ParameterAttributes,System.String)"> <summary> Defines a parameter of this constructor. </summary> <returns> Returns a ParameterBuilder object that represents the new parameter of this constructor. </returns> <param name="iSequence"> The position of the parameter in the parameter list. Parameters are indexed beginning with the number 1 for the first parameter. </param> <param name="attributes"> The attributes of the parameter. </param> <param name="strParamName"> The name of the parameter. The name can be the null string. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="position" /> is less than or equal to zero, or it is greater than the number of parameters of the constructor. </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.GetCustomAttributes(System.Boolean)"> <summary> Returns all the custom attributes defined for this constructor. </summary> <returns> Returns an array of objects representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.ConstructorBuilder" /> instance. </returns> <param name="inherit"> Controls inheritance of custom attributes from base classes. This parameter is ignored. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Returns the custom attributes identified by the given type. </summary> <returns> Returns an array of type <see cref="T:System.Object" /> representing the attributes of this constructor. </returns> <param name="attributeType"> The custom attribute type. </param> <param name="inherit"> Controls inheritance of custom attributes from base classes. This parameter is ignored. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.GetILGenerator"> <summary> Gets an <see cref="T:System.Reflection.Emit.ILGenerator" /> for this constructor. </summary> <returns> Returns an <see cref="T:System.Reflection.Emit.ILGenerator" /> object for this constructor. </returns> <exception cref="T:System.InvalidOperationException"> The constructor is a default constructor. -or- The constructor has <see cref="T:System.Reflection.MethodAttributes" /> or <see cref="T:System.Reflection.MethodImplAttributes" /> flags indicating that it should not have a method body. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.GetILGenerator(System.Int32)"> <summary> Gets an <see cref="T:System.Reflection.Emit.ILGenerator" /> object, with the specified MSIL stream size, that can be used to build a method body for this constructor. </summary> <returns> An <see cref="T:System.Reflection.Emit.ILGenerator" /> for this constructor. </returns> <param name="streamSize"> The size of the MSIL stream, in bytes. </param> <exception cref="T:System.InvalidOperationException"> The constructor is a default constructor. -or- The constructor has <see cref="T:System.Reflection.MethodAttributes" /> or <see cref="T:System.Reflection.MethodImplAttributes" /> flags indicating that it should not have a method body. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.GetMethodImplementationFlags"> <summary> Returns the method implementation flags for this constructor. </summary> <returns> The method implementation flags for this constructor. </returns> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.GetModule"> <summary> Returns a reference to the module that contains this constructor. </summary> <returns> The module that contains this constructor. </returns> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.GetParameters"> <summary> Returns the parameters of this constructor. </summary> <returns> Returns an array of <see cref="T:System.Reflection.ParameterInfo" /> objects that represent the parameters of this constructor. </returns> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has not been called on this constructor's type, in the .NET Framework versions 1.0 and 1.1. </exception> <exception cref="T:System.NotSupportedException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has not been called on this constructor's type, in the .NET Framework version 2.0. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.GetToken"> <summary> Returns the <see cref="T:System.Reflection.Emit.MethodToken" /> that represents the token for this constructor. </summary> <returns> Returns the <see cref="T:System.Reflection.Emit.MethodToken" /> of this constructor. </returns> </member> <member name="P:System.Reflection.Emit.ConstructorBuilder.InitLocals"> <summary> Gets or sets whether the local variables in this constructor should be zero-initialized. </summary> <returns> Read/write. Gets or sets whether the local variables in this constructor should be zero-initialized. </returns> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Dynamically invokes the constructor reflected by this instance with the specified arguments, under the constraints of the specified Binder. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="obj"> The object that needs to be reinitialized. </param> <param name="invokeAttr"> One of the BindingFlags values that specifies the type of binding that is desired. </param> <param name="binder"> A Binder that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If <paramref name="binder" /> is null, then Binder.DefaultBinding is used. </param> <param name="parameters"> An argument list. This is an array of arguments with the same number, order, and type as the parameters of the constructor to be invoked. If there are no parameters, this should be a null reference (Nothing in Visual Basic). </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. You can retrieve the constructor using <see cref="M:System.Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> and call <see cref="M:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" /> on the returned <see cref="T:System.Reflection.ConstructorInfo" />. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Invokes the constructor dynamically reflected by this instance on the given object, passing along the specified parameters, and under the constraints of the given binder. </summary> <returns> Returns an <see cref="T:System.Object" /> that is the return value of the invoked constructor. </returns> <param name="invokeAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as InvokeMethod, NonPublic, and so on. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If binder is null, the default binder is used. See <see cref="T:System.Reflection.Binder" />. </param> <param name="parameters"> An argument list. This is an array of arguments with the same number, order, and type as the parameters of the constructor to be invoked. If there are no parameters this should be null. </param> <param name="culture"> An instance of <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. (For example, this is necessary to convert a <see cref="T:System.String" /> that represents 1000 to a <see cref="T:System.Double" /> value, since 1000 is represented differently by different cultures.) </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. You can retrieve the constructor using <see cref="M:System.Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> and call <see cref="M:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" /> on the returned <see cref="T:System.Reflection.ConstructorInfo" />. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.IsDefined(System.Type,System.Boolean)"> <summary> Checks if the specified custom attribute type is defined. </summary> <returns>true if the specified custom attribute type is defined; otherwise, false. </returns> <param name="attributeType"> A custom attribute type. </param> <param name="inherit"> Controls inheritance of custom attributes from base classes. This parameter is ignored. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. You can retrieve the constructor using <see cref="M:System.Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> on the returned <see cref="T:System.Reflection.ConstructorInfo" />. </exception> </member> <member name="P:System.Reflection.Emit.ConstructorBuilder.MethodHandle"> <summary> Retrieves the internal handle for the method. Use this handle to access the underlying metadata handle. </summary> <returns> Returns the internal handle for the method. Use this handle to access the underlying metadata handle. </returns> <exception cref="T:System.NotSupportedException"> This property is not supported on this class. </exception> </member> <member name="P:System.Reflection.Emit.ConstructorBuilder.Module"> <summary> Gets the dynamic module in which this constructor is defined. </summary> <returns> A <see cref="T:System.Reflection.Module" /> object that represents the dynamic module in which this constructor is defined. </returns> </member> <member name="P:System.Reflection.Emit.ConstructorBuilder.Name"> <summary> Retrieves the name of this constructor. </summary> <returns> Returns the name of this constructor. </returns> </member> <member name="P:System.Reflection.Emit.ConstructorBuilder.ReflectedType"> <summary> Holds a reference to the <see cref="T:System.Type" /> object from which this object was obtained. </summary> <returns> Returns the Type object from which this object was obtained. </returns> </member> <member name="P:System.Reflection.Emit.ConstructorBuilder.ReturnType"> <summary> Gets null. </summary> <returns> Returns null. </returns> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Set a custom attribute using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Set a custom attribute using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class to define the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="customBuilder" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)"> <summary> Sets the method implementation flags for this constructor. </summary> <param name="attributes"> The method implementation flags. </param> <exception cref="T:System.InvalidOperationException"> The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.SetSymCustomAttribute(System.String,System.Byte[])"> <summary> Sets this constructor's custom attribute associated with symbolic information. </summary> <param name="name"> The name of the custom attribute. </param> <param name="data"> The value of the custom attribute. </param> <exception cref="T:System.InvalidOperationException"> The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- The module does not have a symbol writer defined. For example, the module is not a debug module. </exception> </member> <member name="P:System.Reflection.Emit.ConstructorBuilder.Signature"> <summary> Retrieves the signature of the field in the form of a string. </summary> <returns> Returns the signature of the field. </returns> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.System#Runtime#InteropServices#_ConstructorBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.System#Runtime#InteropServices#_ConstructorBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.System#Runtime#InteropServices#_ConstructorBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.System#Runtime#InteropServices#_ConstructorBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.ConstructorBuilder.ToString"> <summary> Returns this <see cref="T:System.Reflection.Emit.ConstructorBuilder" /> instance as a <see cref="T:System.String" />. </summary> <returns> Returns a <see cref="T:System.String" /> containing the name, attributes, and exceptions of this constructor, followed by the current Microsoft intermediate language (MSIL) stream. </returns> </member> <member name="T:System.Reflection.Emit.CustomAttributeBuilder"> <summary> Helps build custom attributes. </summary> </member> <member name="M:System.Reflection.Emit.CustomAttributeBuilder.#ctor(System.Reflection.ConstructorInfo,System.Object[])"> <summary> Initializes an instance of the CustomAttributeBuilder class given the constructor for the custom attribute and the arguments to the constructor. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="constructorArgs"> The arguments to the constructor of the custom attribute. </param> <exception cref="T:System.ArgumentException"> <paramref name="con" /> is static or private. -or- The number of supplied arguments does not match the number of parameters of the constructor as required by the calling convention of the constructor. -or- The type of supplied argument does not match the type of the parameter declared in the constructor. -or- A supplied argument is a reference type other than <see cref="T:System.String" /> or <see cref="T:System.Type" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="constructorArgs" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.CustomAttributeBuilder.#ctor(System.Reflection.ConstructorInfo,System.Object[],System.Reflection.FieldInfo[],System.Object[])"> <summary> Initializes an instance of the CustomAttributeBuilder class given the constructor for the custom attribute, the arguments to the constructor, and a set of named field/value pairs. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="constructorArgs"> The arguments to the constructor of the custom attribute. </param> <param name="namedFields"> Named fields of the custom attribute. </param> <param name="fieldValues"> Values for the named fields of the custom attribute. </param> <exception cref="T:System.ArgumentException"> The lengths of the <paramref name="namedFields" /> and <paramref name="fieldValues" /> arrays are different. -or- <paramref name="con" /> is static or private. -or- The number of supplied arguments does not match the number of parameters of the constructor as required by the calling convention of the constructor. -or- The type of supplied argument does not match the type of the parameter declared in the constructor. -or- The types of the field values do not match the types of the named fields. -or- The field does not belong to the same class or base class as the constructor. -or- A supplied argument or named field is a reference type other than <see cref="T:System.String" /> or <see cref="T:System.Type" />. </exception> <exception cref="T:System.ArgumentNullException"> One of the parameters is null. </exception> </member> <member name="M:System.Reflection.Emit.CustomAttributeBuilder.#ctor(System.Reflection.ConstructorInfo,System.Object[],System.Reflection.PropertyInfo[],System.Object[])"> <summary> Initializes an instance of the CustomAttributeBuilder class given the constructor for the custom attribute, the arguments to the constructor, and a set of named property or value pairs. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="constructorArgs"> The arguments to the constructor of the custom attribute. </param> <param name="namedProperties"> Named properties of the custom attribute. </param> <param name="propertyValues"> Values for the named properties of the custom attribute. </param> <exception cref="T:System.ArgumentException"> The lengths of the <paramref name="namedProperties" /> and <paramref name="propertyValues" /> arrays are different. -or- <paramref name="con" /> is static or private. -or- The number of supplied arguments does not match the number of parameters of the constructor as required by the calling convention of the constructor. -or- The type of supplied argument does not match the type of the parameter declared in the constructor. -or- The types of the property values do not match the types of the named properties. -or- A property has no setter method. -or- The property does not belong to the same class or base class as the constructor. -or- A supplied argument or named property is a reference type other than <see cref="T:System.String" /> or <see cref="T:System.Type" />. </exception> <exception cref="T:System.ArgumentNullException"> One of the parameters is null. </exception> </member> <member name="M:System.Reflection.Emit.CustomAttributeBuilder.#ctor(System.Reflection.ConstructorInfo,System.Object[],System.Reflection.PropertyInfo[],System.Object[],System.Reflection.FieldInfo[],System.Object[])"> <summary> Initializes an instance of the CustomAttributeBuilder class given the constructor for the custom attribute, the arguments to the constructor, a set of named property or value pairs, and a set of named field or value pairs. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="constructorArgs"> The arguments to the constructor of the custom attribute. </param> <param name="namedProperties"> Named properties of the custom attribute. </param> <param name="propertyValues"> Values for the named properties of the custom attribute. </param> <param name="namedFields"> Named fields of the custom attribute. </param> <param name="fieldValues"> Values for the named fields of the custom attribute. </param> <exception cref="T:System.ArgumentException"> The lengths of the <paramref name="namedProperties" /> and <paramref name="propertyValues" /> arrays are different. -or- The lengths of the <paramref name="namedFields" /> and <paramref name="fieldValues" /> arrays are different. -or- <paramref name="con" /> is static or private. -or- The number of supplied arguments does not match the number of parameters of the constructor as required by the calling convention of the constructor. -or- The type of supplied argument does not match the type of the parameter declared in the constructor. -or- The types of the property values do not match the types of the named properties. -or- The types of the field values do not match the types of the corresponding field types. -or- A property has no setter. -or- The property or field does not belong to the same class or base class as the constructor. -or- A supplied argument, named property, or named field is a reference type other than <see cref="T:System.String" /> or <see cref="T:System.Type" />. </exception> <exception cref="T:System.ArgumentNullException"> One of the parameters is null. </exception> </member> <member name="M:System.Reflection.Emit.CustomAttributeBuilder.System#Runtime#InteropServices#_CustomAttributeBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.CustomAttributeBuilder.System#Runtime#InteropServices#_CustomAttributeBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.CustomAttributeBuilder.System#Runtime#InteropServices#_CustomAttributeBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.CustomAttributeBuilder.System#Runtime#InteropServices#_CustomAttributeBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="T:System.Reflection.Emit.DynamicILInfo"> <summary> Provides support for alternative ways to generate the Microsoft intermediate language (MSIL) and metadata for a dynamic method, including methods for creating tokens and for inserting the code, exception handling, and local variable signature blobs. </summary> </member> <member name="P:System.Reflection.Emit.DynamicILInfo.DynamicMethod"> <summary> Gets the dynamic method whose body is generated by the current instance. </summary> <returns> A <see cref="T:System.Reflection.Emit.DynamicMethod" /> object representing the dynamic method for which the current <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object is generating code. </returns> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.GetTokenFor(System.Byte[])"> <summary> Gets a token, valid in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" />, representing the signature for the associated dynamic method. </summary> <returns> A token that can be embedded in the metadata and the MSIL stream for the associated dynamic method. </returns> <param name="signature"> A <see cref="T:System.Byte" /> array containing the signature. </param> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.GetTokenFor(System.Reflection.Emit.DynamicMethod)"> <summary> Gets a token, valid in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" />, representing a dynamic method to be called from the associated method. </summary> <returns> A token that can be embedded in the MSIL stream for the associated dynamic method, as the target of an MSIL instruction. </returns> <param name="method"> A <see cref="T:System.Reflection.Emit.DynamicMethod" /> object representing the dynamic method to call. </param> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.GetTokenFor(System.RuntimeFieldHandle)"> <summary> Gets a token, valid in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" />, representing a field to be accessed from the associated dynamic method. </summary> <returns> A token that can be used as the operand of an MSIL instruction that accesses fields, in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object. </returns> <param name="field"> A <see cref="T:System.RuntimeFieldHandle" /> structure representing the field to be accessed. </param> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.GetTokenFor(System.RuntimeMethodHandle)"> <summary> Gets a token, valid in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" />, representing a method to be accessed from the associated dynamic method. </summary> <returns> A token that can be used as the operand of an MSIL instruction that accesses methods, such as <see cref="F:System.Reflection.Emit.OpCodes.Call" /> or <see cref="F:System.Reflection.Emit.OpCodes.Ldtoken" />, in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object. </returns> <param name="method"> A <see cref="T:System.RuntimeMethodHandle" /> structure representing the method to be accessed. </param> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.GetTokenFor(System.RuntimeMethodHandle,System.RuntimeTypeHandle)"> <summary> Gets a token, valid in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" />, representing a method on a generic type. </summary> <returns> A token that can be used as the operand of an MSIL instruction that accesses methods, such as <see cref="F:System.Reflection.Emit.OpCodes.Call" /> or <see cref="F:System.Reflection.Emit.OpCodes.Ldtoken" />, in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object. </returns> <param name="method"> A <see cref="T:System.RuntimeMethodHandle" /> structure representing the method. </param> <param name="contextType"> The generic type the method belongs to. </param> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.GetTokenFor(System.RuntimeTypeHandle)"> <summary> Gets a token, valid in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" />, representing a type to be used in the associated dynamic method. </summary> <returns> A token that can be used as the operand of an MSIL instruction that requires a type, in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object. </returns> <param name="type"> A <see cref="T:System.RuntimeTypeHandle" /> structure representing the type to be used. </param> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.GetTokenFor(System.String)"> <summary> Gets a token, valid in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" />, representing a string literal to be used in the associated dynamic method. </summary> <returns> A token that can be used as the operand of an MSIL instruction that requires a string, in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object. </returns> <param name="literal"> The string to be used. </param> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.SetCode(System.Byte*,System.Int32,System.Int32)"> <summary> Sets the code body of the associated dynamic method. </summary> <param name="code"> A pointer to a byte array containing the MSIL stream. </param> <param name="codeSize"> The number of bytes in the MSIL stream. </param> <param name="maxStackSize"> The maximum number of items on the operand stack when the method is executing. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="codeSize" /> is less than 0. </exception> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.SetCode(System.Byte[],System.Int32)"> <summary> Sets the code body of the associated dynamic method. </summary> <param name="code"> A <see cref="T:System.Byte" /> array containing the MSIL stream. </param> <param name="maxStackSize"> The maximum number of items on the operand stack when the method is executing. </param> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.SetExceptions(System.Byte*,System.Int32)"> <summary> Sets the exception metadata for the associated dynamic method. </summary> <param name="exceptions"> A pointer to a byte array containing the exception metadata. </param> <param name="exceptionsSize"> The number of bytes of exception metadata. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="exceptionSize" /> is less than 0. </exception> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.SetExceptions(System.Byte[])"> <summary> Sets the exception metadata for the associated dynamic method. </summary> <param name="exceptions"> A <see cref="T:System.Byte" /> array containing the exception metadata. </param> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.SetLocalSignature(System.Byte*,System.Int32)"> <summary> Sets the local variable signature that describes the layout of local variables for the associated dynamic method. </summary> <param name="localSignature"> A <see cref="T:System.Byte" /> array containing the layout of local variables for the associated <see cref="T:System.Reflection.Emit.DynamicMethod" />. </param> <param name="signatureSize"> The number of bytes in the signature. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="signatureSize" /> is less than 0. </exception> </member> <member name="M:System.Reflection.Emit.DynamicILInfo.SetLocalSignature(System.Byte[])"> <summary> Sets the local variable signature that describes the layout of local variables for the associated dynamic method. </summary> <param name="localSignature"> A <see cref="T:System.Byte" /> array containing the layout of local variables for the associated <see cref="T:System.Reflection.Emit.DynamicMethod" />. </param> </member> <member name="T:System.Reflection.Emit.DynamicMethod"> <summary> Defines and represents a dynamic method that can be compiled, executed, and discarded. Discarded methods are available for garbage collection. </summary> </member> <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Reflection.Module,System.Boolean)"> <summary> Creates a dynamic method that is global to a module, specifying the method name, attributes, calling convention, return type, parameter types, module, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. </summary> <param name="name"> The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param> <param name="attributes"> A bitwise combination of <see cref="T:System.Reflection.MethodAttributes" /> values that specifies the attributes of the dynamic method. The only combination allowed is <see cref="F:System.Reflection.MethodAttributes.Public" /> and <see cref="F:System.Reflection.MethodAttributes.Static" />. </param> <param name="callingConvention"> The calling convention for the dynamic method. Must be <see cref="F:System.Reflection.CallingConventions.Standard" />. </param> <param name="returnType"> A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param> <param name="parameterTypes"> An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param> <param name="m"> A <see cref="T:System.Reflection.Module" /> representing the module with which the dynamic method is to be logically associated. </param> <param name="skipVisibility">true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, false. </param> <exception cref="T:System.ArgumentException"> An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. -or- <paramref name="m" /> is a module that provides anonymous hosting for dynamic methods. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="m" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="attributes" /> is a combination of flags other than <see cref="F:System.Reflection.MethodAttributes.Public" /> and <see cref="F:System.Reflection.MethodAttributes.Static" />. -or- <paramref name="callingConvention" /> is not <see cref="F:System.Reflection.CallingConventions.Standard" />. -or- <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception> </member> <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type,System.Boolean)"> <summary> Creates a dynamic method, specifying the method name, attributes, calling convention, return type, parameter types, the type with which the dynamic method is logically associated, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. </summary> <param name="name"> The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param> <param name="attributes"> A bitwise combination of <see cref="T:System.Reflection.MethodAttributes" /> values that specifies the attributes of the dynamic method. The only combination allowed is <see cref="F:System.Reflection.MethodAttributes.Public" /> and <see cref="F:System.Reflection.MethodAttributes.Static" />. </param> <param name="callingConvention"> The calling convention for the dynamic method. Must be <see cref="F:System.Reflection.CallingConventions.Standard" />. </param> <param name="returnType"> A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param> <param name="parameterTypes"> An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param> <param name="owner"> A <see cref="T:System.Type" /> with which the dynamic method is logically associated. The dynamic method has access to all members of the type. </param> <param name="skipVisibility">true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, false. </param> <exception cref="T:System.ArgumentException"> An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. -or- <paramref name="owner" /> is an interface, an array, an open generic type, or a type parameter of a generic type or method. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="owner" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="attributes" /> is a combination of flags other than <see cref="F:System.Reflection.MethodAttributes.Public" /> and <see cref="F:System.Reflection.MethodAttributes.Static" />. -or- <paramref name="callingConvention" /> is not <see cref="F:System.Reflection.CallingConventions.Standard" />. -or- <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception> </member> <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[],System.Reflection.Module)"> <summary> Creates a dynamic method that is global to a module, specifying the method name, return type, parameter types, and module. </summary> <param name="name"> The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param> <param name="returnType"> A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param> <param name="parameterTypes"> An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param> <param name="m"> A <see cref="T:System.Reflection.Module" /> representing the module with which the dynamic method is to be logically associated. </param> <exception cref="T:System.ArgumentException"> An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. -or- <paramref name="m" /> is a module that provides anonymous hosting for dynamic methods. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="m" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception> </member> <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[],System.Reflection.Module,System.Boolean)"> <summary> Creates a dynamic method that is global to a module, specifying the method name, return type, parameter types, module, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. </summary> <param name="name"> The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param> <param name="returnType"> A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param> <param name="parameterTypes"> An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param> <param name="m"> A <see cref="T:System.Reflection.Module" /> representing the module with which the dynamic method is to be logically associated. </param> <param name="skipVisibility">true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method. </param> <exception cref="T:System.ArgumentException"> An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. -or- <paramref name="m" /> is a module that provides anonymous hosting for dynamic methods. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="m" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception> </member> <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[],System.Type)"> <summary> Creates a dynamic method, specifying the method name, return type, parameter types, and the type with which the dynamic method is logically associated. </summary> <param name="name"> The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param> <param name="returnType"> A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param> <param name="parameterTypes"> An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param> <param name="owner"> A <see cref="T:System.Type" /> with which the dynamic method is logically associated. The dynamic method has access to all members of the type. </param> <exception cref="T:System.ArgumentException"> An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. -or- <paramref name="owner" /> is an interface, an array, an open generic type, or a type parameter of a generic type or method. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="owner" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="returnType" /> is null, or is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception> </member> <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[],System.Type,System.Boolean)"> <summary> Creates a dynamic method, specifying the method name, return type, parameter types, the type with which the dynamic method is logically associated, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. </summary> <param name="name"> The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param> <param name="returnType"> A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param> <param name="parameterTypes"> An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param> <param name="owner"> A <see cref="T:System.Type" /> with which the dynamic method is logically associated. The dynamic method has access to all members of the type. </param> <param name="skipVisibility">true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, false. </param> <exception cref="T:System.ArgumentException"> An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. -or- <paramref name="owner" /> is an interface, an array, an open generic type, or a type parameter of a generic type or method. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="owner" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="returnType" /> is null, or is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception> </member> <member name="P:System.Reflection.Emit.DynamicMethod.Attributes"> <summary> Gets the attributes specified when the dynamic method was created. </summary> <returns> A bitwise combination of the <see cref="T:System.Reflection.MethodAttributes" /> values representing the attributes for the method. </returns> </member> <member name="P:System.Reflection.Emit.DynamicMethod.CallingConvention"> <summary> Gets the calling convention specified when the dynamic method was created. </summary> <returns> One of the <see cref="T:System.Reflection.CallingConventions" /> values that indicates the calling convention of the method. </returns> </member> <member name="M:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type)"> <summary> Completes the dynamic method and creates a delegate that can be used to execute it. </summary> <returns> A delegate of the specified type, which can be used to execute the dynamic method. </returns> <param name="delegateType"> A delegate type whose signature matches that of the dynamic method. </param> <exception cref="T:System.InvalidOperationException"> The dynamic method has no method body. </exception> <exception cref="T:System.ArgumentException"> <paramref name="delegateType" /> has the wrong number of parameters or the wrong parameter types. </exception> </member> <member name="M:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type,System.Object)"> <summary> Completes the dynamic method and creates a delegate that can be used to execute it, specifying the delegate type and an object the delegate is bound to. </summary> <returns> A delegate of the specified type, which can be used to execute the dynamic method with the specified target object. </returns> <param name="delegateType"> A delegate type whose signature matches that of the dynamic method, minus the first parameter. </param> <param name="target"> An object the delegate is bound to. Must be of the same type as the first parameter of the dynamic method. </param> <exception cref="T:System.InvalidOperationException"> The dynamic method has no method body. </exception> <exception cref="T:System.ArgumentException"> <paramref name="target" /> is not the same type as the first parameter of the dynamic method, and is not assignable to that type. -or- <paramref name="delegateType" /> has the wrong number of parameters or the wrong parameter types. </exception> </member> <member name="P:System.Reflection.Emit.DynamicMethod.DeclaringType"> <summary> Gets the type that declares the method, which is always null for dynamic methods. </summary> <returns> Always null. </returns> </member> <member name="M:System.Reflection.Emit.DynamicMethod.DefineParameter(System.Int32,System.Reflection.ParameterAttributes,System.String)"> <summary> Defines a parameter of the dynamic method. </summary> <returns> A <see cref="T:System.Reflection.Emit.ParameterBuilder" /> object that represents the parameter. </returns> <param name="position"> The position of the parameter in the parameter list. Parameters are indexed beginning with the number 1 for the first parameter. </param> <param name="attributes"> A bitwise combination of <see cref="T:System.Reflection.ParameterAttributes" /> values that specifies the attributes of the parameter. </param> <param name="parameterName"> The name of the parameter. The name can be a zero-length string. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The method has no parameters. -or- <paramref name="position" /> is less than 0. -or- <paramref name="position" /> is greater than the number of the method's parameters. </exception> </member> <member name="M:System.Reflection.Emit.DynamicMethod.GetBaseDefinition"> <summary> Returns the base implementation for the method. </summary> <returns> The base implementation of the method. </returns> </member> <member name="M:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean)"> <summary> Returns all the custom attributes defined for the method. </summary> <returns> An array of objects representing all the custom attributes of the method. </returns> <param name="inherit">true to search the method's inheritance chain to find the custom attributes; false to check only the current method. </param> </member> <member name="M:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Returns the custom attributes of the specified type that have been applied to the method. </summary> <returns> An array of objects representing the attributes of the method that are of type <paramref name="attributeType" /> or derive from type <paramref name="attributeType" />. </returns> <param name="attributeType"> A <see cref="T:System.Type" /> representing the type of custom attribute to return. </param> <param name="inherit">true to search the method's inheritance chain to find the custom attributes; false to check only the current method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="attributeType" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.DynamicMethod.GetDynamicILInfo"> <summary> Returns a <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object that can be used to generate a method body from metadata tokens, scopes, and Microsoft intermediate language (MSIL) streams. </summary> <returns> A <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object that can be used to generate a method body from metadata tokens, scopes, and MSIL streams. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.DynamicMethod.GetILGenerator"> <summary> Returns a Microsoft intermediate language (MSIL) generator for the method with a default MSIL stream size of 64 bytes. </summary> <returns> An <see cref="T:System.Reflection.Emit.ILGenerator" /> object for the method. </returns> </member> <member name="M:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32)"> <summary> Returns a Microsoft intermediate language (MSIL) generator for the method with the specified MSIL stream size. </summary> <returns> An <see cref="T:System.Reflection.Emit.ILGenerator" /> object for the method, with the specified MSIL stream size. </returns> <param name="streamSize"> The size of the MSIL stream, in bytes. </param> </member> <member name="M:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags"> <summary> Returns the implementation flags for the method. </summary> <returns> A bitwise combination of <see cref="T:System.Reflection.MethodImplAttributes" /> values representing the implementation flags for the method. </returns> </member> <member name="M:System.Reflection.Emit.DynamicMethod.GetParameters"> <summary> Returns the parameters of the dynamic method. </summary> <returns> An array of <see cref="T:System.Reflection.ParameterInfo" /> objects that represent the parameters of the dynamic method. </returns> </member> <member name="P:System.Reflection.Emit.DynamicMethod.InitLocals"> <summary> Gets or sets a value indicating whether the local variables in the method are zero-initialized. </summary> <returns>true if the local variables in the method are zero-initialized; otherwise, false. The default is true. </returns> </member> <member name="M:System.Reflection.Emit.DynamicMethod.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Invokes the dynamic method using the specified parameters, under the constraints of the specified binder, with the specified culture information. </summary> <returns> A <see cref="T:System.Object" /> containing the return value of the invoked method. </returns> <param name="obj"> This parameter is ignored for dynamic methods, because they are static. Specify null. </param> <param name="invokeAttr"> A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects through reflection. If <paramref name="binder" /> is null, the default binder is used. For more details, see <see cref="T:System.Reflection.Binder" />. </param> <param name="parameters"> An argument list. This is an array of arguments with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters this parameter should be null. </param> <param name="culture"> An instance of <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. For example, this information is needed to correctly convert a <see cref="T:System.String" /> that represents 1000 to a <see cref="T:System.Double" /> value, because 1000 is represented differently by different cultures. </param> <exception cref="T:System.NotSupportedException"> The <see cref="F:System.Reflection.CallingConventions.VarArgs" /> calling convention is not supported. </exception> <exception cref="T:System.Reflection.TargetParameterCountException"> The number of elements in <paramref name="parameters" /> does not match the number of parameters in the dynamic method. </exception> <exception cref="T:System.ArgumentException"> The type of one or more elements of <paramref name="parameters" /> does not match the type of the corresponding parameter of the dynamic method. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The dynamic method is associated with a module, is not anonymously hosted, and was constructed with <paramref name="skipVisibility" /> set to false, but the dynamic method accesses members that are not public or internal (Friend in Visual Basic). -or- The dynamic method is anonymously hosted and was constructed with <paramref name="skipVisibility" /> set to false, but it accesses members that are not public. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type,System.Boolean)"> <summary> Indicates whether the specified custom attribute type is defined. </summary> <returns>true if the specified custom attribute type is defined; otherwise, false. </returns> <param name="attributeType"> A <see cref="T:System.Type" /> representing the type of custom attribute to search for. </param> <param name="inherit">true to search the method's inheritance chain to find the custom attributes; false to check only the current method. </param> </member> <member name="P:System.Reflection.Emit.DynamicMethod.MethodHandle"> <summary> Not supported for dynamic methods. </summary> <returns> Not supported for dynamic methods. </returns> <exception cref="T:System.InvalidOperationException"> Not allowed for dynamic methods. </exception> </member> <member name="P:System.Reflection.Emit.DynamicMethod.Module"> <summary> Gets the module with which the dynamic method is logically associated. </summary> <returns> The <see cref="T:System.Reflection.Module" /> with which the current dynamic method is associated. </returns> </member> <member name="P:System.Reflection.Emit.DynamicMethod.Name"> <summary> Gets the name of the dynamic method. </summary> <returns> The simple name of the method. </returns> </member> <member name="P:System.Reflection.Emit.DynamicMethod.ReflectedType"> <summary> Gets the class that was used in reflection to obtain the method. </summary> <returns> Always null. </returns> </member> <member name="P:System.Reflection.Emit.DynamicMethod.ReturnParameter"> <summary> Gets the return parameter of the dynamic method. </summary> <returns> Always null. </returns> </member> <member name="P:System.Reflection.Emit.DynamicMethod.ReturnType"> <summary> Gets the type of return value for the dynamic method. </summary> <returns> A <see cref="T:System.Type" /> representing the type of the return value of the current method; <see cref="T:System.Void" /> if the method has no return type. </returns> </member> <member name="P:System.Reflection.Emit.DynamicMethod.ReturnTypeCustomAttributes"> <summary> Gets the custom attributes of the return type for the dynamic method. </summary> <returns> An <see cref="T:System.Reflection.ICustomAttributeProvider" /> representing the custom attributes of the return type for the dynamic method. </returns> </member> <member name="M:System.Reflection.Emit.DynamicMethod.ToString"> <summary> Returns the signature of the method, represented as a string. </summary> <returns> A string representing the method signature. </returns> </member> <member name="T:System.Reflection.Emit.EnumBuilder"> <summary> Describes and represents an enumeration type. </summary> </member> <member name="P:System.Reflection.Emit.EnumBuilder.Assembly"> <summary> Retrieves the dynamic assembly that contains this enum definition. </summary> <returns> Read-only. The dynamic assembly that contains this enum definition. </returns> </member> <member name="P:System.Reflection.Emit.EnumBuilder.AssemblyQualifiedName"> <summary> Returns the full path of this enum qualified by the display name of the parent assembly. </summary> <returns> Read-only. The full path of this enum qualified by the display name of the parent assembly. </returns> <exception cref="T:System.NotSupportedException"> If <see cref="M:System.Reflection.Emit.EnumBuilder.CreateType" /> has not been called previously. </exception> </member> <member name="P:System.Reflection.Emit.EnumBuilder.BaseType"> <summary> Returns the parent <see cref="T:System.Type" /> of this type which is always <see cref="T:System.Enum" />. </summary> <returns> Read-only. The parent <see cref="T:System.Type" /> of this type. </returns> </member> <member name="M:System.Reflection.Emit.EnumBuilder.CreateType"> <summary> Creates a <see cref="T:System.Type" /> object for this enum. </summary> <returns> A <see cref="T:System.Type" /> object for this enum. </returns> <exception cref="T:System.InvalidOperationException"> This type has been previously created. -or- The enclosing type has not been created. </exception> </member> <member name="P:System.Reflection.Emit.EnumBuilder.DeclaringType"> <summary> Returns the type that declared this <see cref="T:System.Reflection.Emit.EnumBuilder" />. </summary> <returns> Read-only. The type that declared this <see cref="T:System.Reflection.Emit.EnumBuilder" />. </returns> </member> <member name="M:System.Reflection.Emit.EnumBuilder.DefineLiteral(System.String,System.Object)"> <summary> Defines the named static field in an enumeration type with the specified constant value. </summary> <returns> The defined field. </returns> <param name="literalName"> The name of the static field. </param> <param name="literalValue"> The constant value of the literal. </param> </member> <member name="P:System.Reflection.Emit.EnumBuilder.FullName"> <summary> Returns the full path of this enum. </summary> <returns> Read-only. The full path of this enum. </returns> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetConstructors(System.Reflection.BindingFlags)"> <summary> Returns an array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing the public and non-public constructors defined for this class, as specified. </summary> <returns> Returns an array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing the specified constructors defined for this class. If no constructors are defined, an empty array is returned. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetCustomAttributes(System.Boolean)"> <summary> Returns all the custom attributes defined for this constructor. </summary> <returns> Returns an array of objects representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.ConstructorBuilder" /> instance. </returns> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Returns the custom attributes identified by the given type. </summary> <returns> Returns an array of objects representing the attributes of this constructor that are of <see cref="T:System.Type" /><paramref name="attributeType" />. </returns> <param name="attributeType"> The Type object to which the custom attributes are applied. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetElementType"> <summary> Calling this method always throws <see cref="T:System.NotSupportedException" />. </summary> <returns> This method is not supported. No value is returned. </returns> <exception cref="T:System.NotSupportedException"> This method is not currently supported. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetEvent(System.String,System.Reflection.BindingFlags)"> <summary> Returns the event with the specified name. </summary> <returns> Returns an <see cref="T:System.Reflection.EventInfo" /> object representing the event declared or inherited by this type with the specified name. If there are no matches, null is returned. </returns> <param name="name"> The name of the event to get. </param> <param name="bindingAttr"> This invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetEvents"> <summary> Returns the events for the public events declared or inherited by this type. </summary> <returns> Returns an array of <see cref="T:System.Reflection.EventInfo" /> objects representing the public events declared or inherited by this type. An empty array is returned if there are no public events. </returns> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetEvents(System.Reflection.BindingFlags)"> <summary> Returns the public and non-public events that are declared by this type. </summary> <returns> Returns an array of <see cref="T:System.Reflection.EventInfo" /> objects representing the public and non-public events declared or inherited by this type. An empty array is returned if there are no events, as specified. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetField(System.String,System.Reflection.BindingFlags)"> <summary> Returns the field specified by the given name. </summary> <returns> Returns the <see cref="T:System.Reflection.FieldInfo" /> object representing the field declared or inherited by this type with the specified name and public or non-public modifier. If there are no matches, then null is returned. </returns> <param name="name"> The name of the field to get. </param> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetFields(System.Reflection.BindingFlags)"> <summary> Returns the public and non-public fields that are declared by this type. </summary> <returns> Returns an array of <see cref="T:System.Reflection.FieldInfo" /> objects representing the public and non-public fields declared or inherited by this type. An empty array is returned if there are no fields, as specified. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetInterface(System.String,System.Boolean)"> <summary> Returns the interface implemented (directly or indirectly) by this type, with the specified fully-qualified name. </summary> <returns> Returns a <see cref="T:System.Type" /> object representing the implemented interface. Returns null if no interface matching name is found. </returns> <param name="name"> The name of the interface. </param> <param name="ignoreCase"> If true, the search is case-insensitive. If false, the search is case-sensitive. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetInterfaceMap(System.Type)"> <summary> Returns an interface mapping for the interface requested. </summary> <returns> The requested interface mapping. </returns> <param name="interfaceType"> The type of the interface for which the interface mapping is to be retrieved. </param> <exception cref="T:System.ArgumentException"> The type does not implement the interface. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetInterfaces"> <summary> Returns an array of all the interfaces implemented on this a class and its base classes. </summary> <returns> Returns an array of <see cref="T:System.Type" /> objects representing the implemented interfaces. If none are defined, an empty array is returned. </returns> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)"> <summary> Returns all members with the specified name, type, and binding that are declared or inherited by this type. </summary> <returns> Returns an array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public and non-public members defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public members are returned. </returns> <param name="name"> The name of the member. </param> <param name="type"> The type of member that is to be returned. </param> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetMembers(System.Reflection.BindingFlags)"> <summary> Returns the specified members declared or inherited by this type,. </summary> <returns> Returns an array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public and non-public members declared or inherited by this type. An empty array is returned if there are no matching members. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetMethods(System.Reflection.BindingFlags)"> <summary> Returns all the public and non-public methods declared or inherited by this type, as specified. </summary> <returns> Returns an array of <see cref="T:System.Reflection.MethodInfo" /> objects representing the public and non-public methods defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public methods are returned. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetNestedType(System.String,System.Reflection.BindingFlags)"> <summary> Returns the specified nested type that is declared by this type. </summary> <returns> A <see cref="T:System.Type" /> object representing the nested type that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the nested type to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to conduct a case-sensitive search for public methods. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetNestedTypes(System.Reflection.BindingFlags)"> <summary> Returns the public and non-public nested types that are declared or inherited by this type. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing all the types nested within the current <see cref="T:System.Type" /> that match the specified binding constraints. An empty array of type <see cref="T:System.Type" />, if no types are nested within the current <see cref="T:System.Type" />, or if none of the nested types match the binding constraints. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.EnumBuilder.GetProperties(System.Reflection.BindingFlags)"> <summary> Returns all the public and non-public properties declared or inherited by this type, as specified. </summary> <returns> Returns an array of <see cref="T:System.Reflection.PropertyInfo" /> objects representing the public and non-public properties defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public properties are returned. </returns> <param name="bindingAttr"> This invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Reflection.Emit.EnumBuilder.GUID"> <summary> Returns the GUID of this enum. </summary> <returns> Read-only. The GUID of this enum. </returns> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])"> <summary> Invokes the specified member. The method that is to be invoked must be accessible and provide the most specific match with the specified argument list, under the contraints of the specified binder and invocation attributes. </summary> <returns> Returns the return value of the invoked member. </returns> <param name="name"> The name of the member to invoke. This can be a constructor, method, property, or field. A suitable invocation attribute must be specified. Note that it is possible to invoke the default member of a class by passing an empty string as the name of the member. </param> <param name="invokeAttr"> The invocation attribute. This must be a bit flag from BindingFlags. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If binder is null, the default binder is used. See <see cref="T:System.Reflection.Binder" />. </param> <param name="target"> The object on which to invoke the specified member. If the member is static, this parameter is ignored. </param> <param name="args"> An argument list. This is an array of objects that contains the number, order, and type of the parameters of the member to be invoked. If there are no parameters this should be null. </param> <param name="modifiers"> An array of the same length as <paramref name="args" /> with elements that represent the attributes associated with the arguments of the member to be invoked. A parameter has attributes associated with it in the metadata. They are used by various interoperability services. See the metadata specs for details such as this. </param> <param name="culture"> An instance of CultureInfo used to govern the coercion of types. If this is null, the CultureInfo for the current thread is used. (Note that this is necessary to, for example, convert a string that represents 1000 to a double value, since 1000 is represented differently by different cultures.) </param> <param name="namedParameters"> Each parameter in the <paramref name="namedParameters" /> array gets the value in the corresponding element in the <paramref name="args" /> array. If the length of <paramref name="args" /> is greater than the length of <paramref name="namedParameters" />, the remaining argument values are passed in order. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.EnumBuilder.IsDefined(System.Type,System.Boolean)"> <summary> Checks if the specified custom attribute type is defined. </summary> <returns>true if one or more instance of <paramref name="attributeType" /> is defined on this member; otherwise, false. </returns> <param name="attributeType"> The Type object to which the custom attributes are applied. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported in types that are not complete. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.MakeArrayType"></member> <member name="M:System.Reflection.Emit.EnumBuilder.MakeArrayType(System.Int32)"> <param name="rank"></param> </member> <member name="M:System.Reflection.Emit.EnumBuilder.MakeByRefType"></member> <member name="M:System.Reflection.Emit.EnumBuilder.MakePointerType"></member> <member name="P:System.Reflection.Emit.EnumBuilder.Module"> <summary> Retrieves the dynamic module that contains this <see cref="T:System.Reflection.Emit.EnumBuilder" /> definition. </summary> <returns> Read-only. The dynamic module that contains this <see cref="T:System.Reflection.Emit.EnumBuilder" /> definition. </returns> </member> <member name="P:System.Reflection.Emit.EnumBuilder.Name"> <summary> Returns the name of this enum. </summary> <returns> Read-only. The name of this enum. </returns> </member> <member name="P:System.Reflection.Emit.EnumBuilder.Namespace"> <summary> Returns the namespace of this enum. </summary> <returns> Read-only. The namespace of this enum. </returns> </member> <member name="P:System.Reflection.Emit.EnumBuilder.ReflectedType"> <summary> Returns the type that was used to obtain this <see cref="T:System.Reflection.Emit.EnumBuilder" />. </summary> <returns> Read-only. The type that was used to obtain this <see cref="T:System.Reflection.Emit.EnumBuilder" />. </returns> </member> <member name="M:System.Reflection.Emit.EnumBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Sets a custom attribute using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Sets a custom attribute using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class to define the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.System#Runtime#InteropServices#_EnumBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.System#Runtime#InteropServices#_EnumBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.System#Runtime#InteropServices#_EnumBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.EnumBuilder.System#Runtime#InteropServices#_EnumBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="P:System.Reflection.Emit.EnumBuilder.TypeHandle"> <summary> Retrieves the internal handle for this enum. </summary> <returns> Read-only. The internal handle for this enum. </returns> <exception cref="T:System.NotSupportedException"> This property is not currently supported. </exception> </member> <member name="P:System.Reflection.Emit.EnumBuilder.TypeToken"> <summary> Returns the internal metadata type token of this enum. </summary> <returns> Read-only. The type token of this enum. </returns> </member> <member name="P:System.Reflection.Emit.EnumBuilder.UnderlyingField"> <summary> Returns the underlying field for this enum. </summary> <returns> Read-only. The underlying field for this enum. </returns> </member> <member name="P:System.Reflection.Emit.EnumBuilder.UnderlyingSystemType"> <summary> Returns the underlying system type for this enum. </summary> <returns> Read-only. Returns the underlying system type. </returns> </member> <member name="T:System.Reflection.Emit.EventBuilder"> <summary> Defines events for a class. </summary> </member> <member name="M:System.Reflection.Emit.EventBuilder.AddOtherMethod(System.Reflection.Emit.MethodBuilder)"> <summary> Adds one of the "other" methods associated with this event. "Other" methods are methods other than the "on" and "raise" methods associated with an event. This function can be called many times to add as many "other" methods. </summary> <param name="mdBuilder"> A MethodBuilder object that represents the other method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mdBuilder" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="M:System.Reflection.Emit.EventBuilder.GetEventToken"> <summary> Returns the token for this event. </summary> <returns> Returns the EventToken for this event. </returns> </member> <member name="M:System.Reflection.Emit.EventBuilder.SetAddOnMethod(System.Reflection.Emit.MethodBuilder)"> <summary> Sets the method used to subscribe to this event. </summary> <param name="mdBuilder"> A MethodBuilder object that represents the method used to subscribe to this event. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mdBuilder" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="M:System.Reflection.Emit.EventBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Set a custom attribute using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="M:System.Reflection.Emit.EventBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Sets a custom attribute using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class to describe the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="M:System.Reflection.Emit.EventBuilder.SetRaiseMethod(System.Reflection.Emit.MethodBuilder)"> <summary> Sets the method used to raise this event. </summary> <param name="mdBuilder"> A MethodBuilder object that represents the method used to raise this event. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mdBuilder" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="M:System.Reflection.Emit.EventBuilder.SetRemoveOnMethod(System.Reflection.Emit.MethodBuilder)"> <summary> Sets the method used to unsubscribe to this event. </summary> <param name="mdBuilder"> A MethodBuilder object that represents the method used to unsubscribe to this event. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mdBuilder" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="M:System.Reflection.Emit.EventBuilder.System#Runtime#InteropServices#_EventBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.EventBuilder.System#Runtime#InteropServices#_EventBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.EventBuilder.System#Runtime#InteropServices#_EventBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.EventBuilder.System#Runtime#InteropServices#_EventBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="T:System.Reflection.Emit.EventToken"> <summary> Represents the Token returned by the metadata to represent an event. </summary> </member> <member name="F:System.Reflection.Emit.EventToken.Empty"> <summary> The default EventToken with <see cref="P:System.Reflection.Emit.EventToken.Token" /> value 0. </summary> </member> <member name="M:System.Reflection.Emit.EventToken.Equals(System.Object)"> <summary> Checks if the given object is an instance of EventToken and is equal to this instance. </summary> <returns> Returns true if <paramref name="obj" /> is an instance of EventToken and equals the current instance; otherwise, false. </returns> <param name="obj"> The object to be compared with this instance. </param> </member> <member name="M:System.Reflection.Emit.EventToken.Equals(System.Reflection.Emit.EventToken)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.EventToken" />. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Reflection.Emit.EventToken" /> to compare to the current instance. </param> </member> <member name="M:System.Reflection.Emit.EventToken.GetHashCode"> <summary> Generates the hash code for this event. </summary> <returns> Returns the hash code for this instance. </returns> </member> <member name="M:System.Reflection.Emit.EventToken.op_Equality(System.Reflection.Emit.EventToken,System.Reflection.Emit.EventToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.EventToken" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.EventToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.EventToken" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Reflection.Emit.EventToken.op_Inequality(System.Reflection.Emit.EventToken,System.Reflection.Emit.EventToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.EventToken" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.EventToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.EventToken" /> to compare to <paramref name="a" />. </param> </member> <member name="P:System.Reflection.Emit.EventToken.Token"> <summary> Retrieves the metadata token for this event. </summary> <returns> Read-only. Retrieves the metadata token for this event. </returns> </member> <member name="T:System.Reflection.Emit.FieldBuilder"> <summary> Defines and represents a field. This class cannot be inherited. </summary> </member> <member name="P:System.Reflection.Emit.FieldBuilder.Attributes"> <summary> Indicates the attributes of this field. This property is read-only. </summary> <returns> The attributes of this field. </returns> </member> <member name="P:System.Reflection.Emit.FieldBuilder.DeclaringType"> <summary> Indicates a reference to the <see cref="T:System.Type" /> object for the type that declares this field. This property is read-only. </summary> <returns> A reference to the <see cref="T:System.Type" /> object for the type that declares this field. </returns> </member> <member name="P:System.Reflection.Emit.FieldBuilder.FieldHandle"> <summary> Indicates the internal metadata handle for this field. This property is read-only. </summary> <returns> The internal metadata handle for this field. </returns> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="P:System.Reflection.Emit.FieldBuilder.FieldType"> <summary> Indicates the <see cref="T:System.Type" /> object that represents the type of this field. This property is read-only. </summary> <returns> The <see cref="T:System.Type" /> object that represents the type of this field. </returns> </member> <member name="M:System.Reflection.Emit.FieldBuilder.GetCustomAttributes(System.Boolean)"> <summary> Returns all the custom attributes defined for this field. </summary> <returns> An array of type <see cref="T:System.Object" /> representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.FieldBuilder" /> instance. </returns> <param name="inherit"> Controls inheritance of custom attributes from base classes. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Returns all the custom attributes defined for this field identified by the given type. </summary> <returns> An array of type <see cref="T:System.Object" /> representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.FieldBuilder" /> instance. </returns> <param name="attributeType"> The custom attribute type. </param> <param name="inherit"> Controls inheritance of custom attributes from base classes. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.GetToken"> <summary> Returns the token representing this field. </summary> <returns> Returns the <see cref="T:System.Reflection.Emit.FieldToken" /> object that represents the token for this field. </returns> </member> <member name="M:System.Reflection.Emit.FieldBuilder.GetValue(System.Object)"> <summary> Retrieves the value of the field supported by the given object. </summary> <returns> An <see cref="T:System.Object" /> containing the value of the field reflected by this instance. </returns> <param name="obj"> The object on which to access the field. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.IsDefined(System.Type,System.Boolean)"> <summary> Indicates whether an attribute having the specified type is defined on a field. </summary> <returns>true if one or more instance of <paramref name="attributeType" /> is defined on this field; otherwise, false. </returns> <param name="attributeType"> The type of the attribute. </param> <param name="inherit"> Controls inheritance of custom attributes from base classes. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. Retrieve the field using <see cref="M:System.Type.GetField(System.String,System.Reflection.BindingFlags)" /> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> on the returned <see cref="T:System.Reflection.FieldInfo" />. </exception> </member> <member name="P:System.Reflection.Emit.FieldBuilder.Module"> <summary> Gets the module in which the type that contains this field is being defined. </summary> <returns> A <see cref="T:System.Reflection.Module" /> that represents the dynamic module in which this field is being defined. </returns> </member> <member name="P:System.Reflection.Emit.FieldBuilder.Name"> <summary> Indicates the name of this field. This property is read-only. </summary> <returns> A <see cref="T:System.String" /> containing the name of this field. </returns> </member> <member name="P:System.Reflection.Emit.FieldBuilder.ReflectedType"> <summary> Indicates the reference to the <see cref="T:System.Type" /> object from which this object was obtained. This property is read-only. </summary> <returns> A reference to the <see cref="T:System.Type" /> object from which this instance was obtained. </returns> </member> <member name="M:System.Reflection.Emit.FieldBuilder.SetConstant(System.Object)"> <summary> Sets the default value of this field. </summary> <param name="defaultValue"> The new default value for this field. </param> <exception cref="T:System.InvalidOperationException"> The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> <exception cref="T:System.ArgumentException"> The field is not one of the supported types. -or- The type of <paramref name="defaultValue" /> does not match the type of the field. -or- The field is of type <see cref="T:System.Object" /> or other reference type, and <paramref name="defaultValue" /> is not null. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Sets a custom attribute using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The parent type of this field is complete. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Sets a custom attribute using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class to define the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The parent type of this field is complete. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.SetMarshal(System.Reflection.Emit.UnmanagedMarshal)"> <summary> Describes the native marshaling of the field. </summary> <param name="unmanagedMarshal"> A descriptor specifying the native marshalling of this field. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="unmanagedMarshal" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.SetOffset(System.Int32)"> <summary> Specifies the field layout. </summary> <param name="iOffset"> The offset of the field within the type containing this field. </param> <exception cref="T:System.InvalidOperationException"> The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="iOffset" /> is less than zero. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo)"> <summary> Sets the value of the field supported by the given object. </summary> <param name="obj"> The object on which to access the field. </param> <param name="val"> The value to assign to the field. </param> <param name="invokeAttr"> A member of IBinder that specifies the type of binding that is desired (for example, IBinder.CreateInstance, IBinder.ExactBinding). </param> <param name="binder"> A set of properties and enabling for binding, coercion of argument types, and invocation of members using reflection. If binder is null, then IBinder.DefaultBinding is used. </param> <param name="culture"> The software preferences of a particular culture. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.System#Runtime#InteropServices#_FieldBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.System#Runtime#InteropServices#_FieldBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.System#Runtime#InteropServices#_FieldBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.FieldBuilder.System#Runtime#InteropServices#_FieldBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="T:System.Reflection.Emit.FieldToken"> <summary> The FieldToken struct is an object representation of a token that represents a field. </summary> </member> <member name="F:System.Reflection.Emit.FieldToken.Empty"> <summary> The default FieldToken with <see cref="P:System.Reflection.Emit.FieldToken.Token" /> value 0. </summary> </member> <member name="M:System.Reflection.Emit.FieldToken.Equals(System.Object)"> <summary> Determines if an object is an instance of FieldToken and is equal to this instance. </summary> <returns> Returns true if <paramref name="obj" /> is an instance of FieldToken and is equal to this object; otherwise, false. </returns> <param name="obj"> The object to compare to this FieldToken. </param> </member> <member name="M:System.Reflection.Emit.FieldToken.Equals(System.Reflection.Emit.FieldToken)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.FieldToken" />. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Reflection.Emit.FieldToken" /> to compare to the current instance. </param> </member> <member name="M:System.Reflection.Emit.FieldToken.GetHashCode"> <summary> Generates the hash code for this field. </summary> <returns> Returns the hash code for this instance. </returns> </member> <member name="M:System.Reflection.Emit.FieldToken.op_Equality(System.Reflection.Emit.FieldToken,System.Reflection.Emit.FieldToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.FieldToken" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.FieldToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.FieldToken" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Reflection.Emit.FieldToken.op_Inequality(System.Reflection.Emit.FieldToken,System.Reflection.Emit.FieldToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.FieldToken" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.FieldToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.FieldToken" /> to compare to <paramref name="a" />. </param> </member> <member name="P:System.Reflection.Emit.FieldToken.Token"> <summary> Retrieves the metadata token for this field. </summary> <returns> Read-only. Retrieves the metadata token of this field. </returns> </member> <member name="T:System.Reflection.Emit.FlowControl"> <summary> Describes how an instruction alters the flow of control. </summary> </member> <member name="F:System.Reflection.Emit.FlowControl.Branch"> <summary> Branch instruction. </summary> </member> <member name="F:System.Reflection.Emit.FlowControl.Break"> <summary> Break instruction. </summary> </member> <member name="F:System.Reflection.Emit.FlowControl.Call"> <summary> Call instruction. </summary> </member> <member name="F:System.Reflection.Emit.FlowControl.Cond_Branch"> <summary> Conditional branch instruction. </summary> </member> <member name="F:System.Reflection.Emit.FlowControl.Meta"> <summary> Provides information about a subsequent instruction. For example, the Unaligned instruction of Reflection.Emit.Opcodes has FlowControl.Meta and specifies that the subsequent pointer instruction might be unaligned. </summary> </member> <member name="F:System.Reflection.Emit.FlowControl.Next"> <summary> Normal flow of control. </summary> </member> <member name="F:System.Reflection.Emit.FlowControl.Phi"> <summary> This enumerator value is reserved and should not be used. </summary> </member> <member name="F:System.Reflection.Emit.FlowControl.Return"> <summary> Return instruction. </summary> </member> <member name="F:System.Reflection.Emit.FlowControl.Throw"> <summary> Exception throw instruction. </summary> </member> <member name="T:System.Reflection.Emit.GenericTypeParameterBuilder"> <summary> Defines and creates generic type parameters for dynamically defined generic types and methods. This class cannot be inherited. </summary> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Assembly"> <summary> Gets an <see cref="T:System.Reflection.Assembly" /> object representing the dynamic assembly that contains the generic type definition the current type parameter belongs to. </summary> <returns> An <see cref="T:System.Reflection.Assembly" /> object representing the dynamic assembly that contains the generic type definition the current type parameter belongs to. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.AssemblyQualifiedName"> <summary> Gets null in all cases. </summary> <returns>null in all cases. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.BaseType"> <summary> Gets the base type constraint of the current generic type parameter. </summary> <returns> A <see cref="T:System.Type" /> object that represents the base type constraint of the generic type parameter, or null if the type parameter has no base type constraint. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.ContainsGenericParameters"> <summary> Gets true in all cases. </summary> <returns>true in all cases. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.DeclaringMethod"> <summary> Gets a <see cref="T:System.Reflection.MethodInfo" /> that represents the declaring method, if the current <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> represents a type parameter of a generic method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> that represents the declaring method, if the current <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> represents a type parameter of a generic method; otherwise, null. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.DeclaringType"> <summary> Gets the generic type definition or generic method definition to which the generic type parameter belongs. </summary> <returns> If the type parameter belongs to a generic type, a <see cref="T:System.Type" /> object representing that generic type; if the type parameter belongs to a generic method, a <see cref="T:System.Type" /> object representing that type that declared that generic method. </returns> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.Equals(System.Object)"> <summary> Tests whether the given object is an instance of EventToken and is equal to the current instance. </summary> <returns> Returns true if <paramref name="o" /> is an instance of EventToken and equals the current instance; otherwise, false. </returns> <param name="o"> The object to be compared with the current instance. </param> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.FullName"> <summary> Gets null in all cases. </summary> <returns>null in all cases. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GenericParameterPosition"> <summary> Gets the position of the type parameter in the type parameter list of the generic type or method that declared the parameter. </summary> <returns> The position of the type parameter in the type parameter list of the generic type or method that declared the parameter. </returns> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetCustomAttributes(System.Boolean)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetElementType"> <summary> Returns null in all cases. </summary> <returns>null in all cases. </returns> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetEvent(System.String,System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="name"> Not supported. </param> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetEvents"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetEvents(System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetField(System.String,System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="name"> Not supported. </param> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetGenericArguments"> <summary> Not valid for generic type parameters. </summary> <returns> Not valid for generic type parameters. </returns> <exception cref="T:System.InvalidOperationException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetGenericTypeDefinition"> <summary> Not valid for generic type parameters. </summary> <returns> Not valid for generic type parameters. </returns> <exception cref="T:System.InvalidOperationException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetHashCode"> <summary> Returns a 32-bit integer hash code for the current instance. </summary> <returns> A 32-bit integer hash code. </returns> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetInterface(System.String,System.Boolean)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="name"> The name of the interface. </param> <param name="ignoreCase">true to search without regard for case; false to make a case-sensitive search. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetInterfaceMap(System.Type)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="interfaceType"> A <see cref="T:System.Type" /> object that represents the interface type for which the mapping is to be retrieved. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetInterfaces"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="name"> Not supported. </param> <param name="type"> Not supported. </param> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetNestedType(System.String,System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="name"> Not supported. </param> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetNestedTypes(System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="bindingAttr"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GUID"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="name"> Not supported. </param> <param name="invokeAttr"> Not supported. </param> <param name="binder"> Not supported. </param> <param name="target"> Not supported. </param> <param name="args"> Not supported. </param> <param name="modifiers"> Not supported. </param> <param name="culture"> Not supported. </param> <param name="namedParameters"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsAssignableFrom(System.Type)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="c"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsDefined(System.Type,System.Boolean)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="attributeType"> Not supported. </param> <param name="inherit"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericParameter"> <summary> Gets true in all cases. </summary> <returns>true in all cases. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericType"> <summary> Returns false in all cases. </summary> <returns>false in all cases. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericTypeDefinition"> <summary> Gets false in all cases. </summary> <returns>false in all cases. </returns> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsSubclassOf(System.Type)"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <param name="c"> Not supported. </param> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeArrayType"> <summary> Returns the type of a one-dimensional array whose element type is the generic type parameter. </summary> <returns> A <see cref="T:System.Type" /> object that represents the type of a one-dimensional array whose element type is the generic type parameter. </returns> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeArrayType(System.Int32)"> <summary> Returns the type of an array whose element type is the generic type parameter, with the specified number of dimensions. </summary> <returns> A <see cref="T:System.Type" /> object that represents the type of an array whose element type is the generic type parameter, with the specified number of dimensions. </returns> <param name="rank"> The number of dimensions for the array. </param> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="rank" /> is not a valid number of dimensions. For example, its value is less than 1. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeByRefType"> <summary> Returns a <see cref="T:System.Type" /> object that represents the current generic type parameter when passed as a reference parameter. </summary> <returns> A <see cref="T:System.Type" /> object that represents the current generic type parameter when passed as a reference parameter. </returns> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeGenericType(System.Type[])"> <summary> Not valid for incomplete generic type parameters. </summary> <returns> This method is invalid for incomplete generic type parameters. </returns> <param name="typeArguments"> An array of type arguments. </param> <exception cref="T:System.InvalidOperationException"> In all cases. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakePointerType"> <summary> Returns a <see cref="T:System.Type" /> object that represents a pointer to the current generic type parameter. </summary> <returns> A <see cref="T:System.Type" /> object that represents a pointer to the current generic type parameter. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Module"> <summary> Gets the dynamic module that contains the generic type parameter. </summary> <returns> A <see cref="T:System.Reflection.Module" /> object that represents the dynamic module that contains the generic type parameter. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Name"> <summary> Gets the name of the generic type parameter. </summary> <returns> The name of the generic type parameter. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Namespace"> <summary> Gets null in all cases. </summary> <returns>null in all cases. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.ReflectedType"> <summary> Gets the <see cref="T:System.Type" /> object that was used to obtain the <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" />. </summary> <returns> The <see cref="T:System.Type" /> object that was used to obtain the <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" />. </returns> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetBaseTypeConstraint(System.Type)"> <summary> Sets the base type that a type must inherit in order to be substituted for the type parameter. </summary> <param name="baseTypeConstraint"> The <see cref="T:System.Type" /> that must be inherited by any type that is to be substituted for the type parameter. </param> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Sets a custom attribute using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> is null. -or- <paramref name="binaryAttribute" /> is a null reference. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Set a custom attribute using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class that defines the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="customBuilder" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetGenericParameterAttributes(System.Reflection.GenericParameterAttributes)"> <summary> Sets the variance characteristics and special constraints of the generic parameter, such as the parameterless constructor constraint. </summary> <param name="genericParameterAttributes"> A bitwise combination of <see cref="T:System.Reflection.GenericParameterAttributes" /> values that represent the variance characteristics and special constraints of the generic type parameter. </param> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetInterfaceConstraints(System.Type[])"> <summary> Sets the interfaces a type must implement in order to be substituted for the type parameter. </summary> <param name="interfaceConstraints"> An array of <see cref="T:System.Type" /> objects that represent the interfaces a type must implement in order to be substituted for the type parameter. </param> </member> <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.ToString"> <summary> Returns a string representation of the current generic type parameter. </summary> <returns> A string that contains the name of the generic type parameter. </returns> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.TypeHandle"> <summary> Not supported for incomplete generic type parameters. </summary> <returns> Not supported for incomplete generic type parameters. </returns> <exception cref="T:System.NotSupportedException"> In all cases. </exception> </member> <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.UnderlyingSystemType"> <summary> Gets the current generic type parameter. </summary> <returns> The current <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> object. </returns> </member> <member name="T:System.Reflection.Emit.ILGenerator"> <summary> Generates Microsoft intermediate language (MSIL) instructions. </summary> </member> <member name="M:System.Reflection.Emit.ILGenerator.BeginCatchBlock(System.Type)"> <summary> Begins a catch block. </summary> <param name="exceptionType"> The <see cref="T:System.Type" /> object that represents the exception. </param> <exception cref="T:System.ArgumentException"> The catch block is within a filtered exception. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="exceptionType" /> is null, and the exception filter block has not returned a value that indicates that finally blocks should be run until this catch block is located. </exception> <exception cref="T:System.NotSupportedException"> The Microsoft intermediate language (MSIL) being generated is not currently in an exception block. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.BeginExceptFilterBlock"> <summary> Begins an exception block for a filtered exception. </summary> <exception cref="T:System.NotSupportedException"> The Microsoft intermediate language (MSIL) being generated is not currently in an exception block. -or- This <see cref="T:System.Reflection.Emit.ILGenerator" /> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod" />. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.BeginExceptionBlock"> <summary> Begins an exception block for a non-filtered exception. </summary> <returns> The label for the end of the block. This will leave you in the correct place to execute finally blocks or to finish the try. </returns> </member> <member name="M:System.Reflection.Emit.ILGenerator.BeginFaultBlock"> <summary> Begins an exception fault block in the Microsoft intermediate language (MSIL) stream. </summary> <exception cref="T:System.NotSupportedException"> The MSIL being generated is not currently in an exception block. -or- This <see cref="T:System.Reflection.Emit.ILGenerator" /> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod" />. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.BeginFinallyBlock"> <summary> Begins a finally block in the Microsoft intermediate language (MSIL) instruction stream. </summary> <exception cref="T:System.NotSupportedException"> The MSIL being generated is not currently in an exception block. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.BeginScope"> <summary> Begins a lexical scope. </summary> <exception cref="T:System.NotSupportedException"> This <see cref="T:System.Reflection.Emit.ILGenerator" /> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod" />. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.DeclareLocal(System.Type)"> <summary> Declares a local variable of the specified type. </summary> <returns> The declared local variable. </returns> <param name="localType"> A <see cref="T:System.Type" /> object that represents the type of the local variable. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="localType" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been created by the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> method. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.DeclareLocal(System.Type,System.Boolean)"> <summary> Declares a local variable of the specified type, optionally pinning the object referred to by the variable. </summary> <returns> A <see cref="T:System.Reflection.Emit.LocalBuilder" /> object that represents the local variable. </returns> <param name="localType"> A <see cref="T:System.Type" /> object that represents the type of the local variable. </param> <param name="pinned">true to pin the object in memory; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="localType" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been created by the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> method. -or- The method body of the enclosing method has been created by the <see cref="M:System.Reflection.Emit.MethodBuilder.CreateMethodBody(System.Byte[],System.Int32)" /> method. </exception> <exception cref="T:System.NotSupportedException"> The method with which this <see cref="T:System.Reflection.Emit.ILGenerator" /> is associated is not represented by a <see cref="T:System.Reflection.Emit.MethodBuilder" />. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.DefineLabel"> <summary> Declares a new label. </summary> <returns> Returns a new label that can be used as a token for branching. </returns> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode)"> <summary> Puts the specified instruction onto the stream of instructions. </summary> <param name="opcode"> The Microsoft Intermediate Language (MSIL) instruction to be put onto the stream. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Byte)"> <summary> Puts the specified instruction and character argument onto the Microsoft intermediate language (MSIL) stream of instructions. </summary> <param name="opcode"> The MSIL instruction to be put onto the stream. </param> <param name="arg"> The character argument pushed onto the stream immediately after the instruction. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Double)"> <summary> Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions. </summary> <param name="opcode"> The MSIL instruction to be put onto the stream. Defined in the OpCodes enumeration. </param> <param name="arg"> The numerical argument pushed onto the stream immediately after the instruction. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Int16)"> <summary> Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. </param> <param name="arg"> The Int argument pushed onto the stream immediately after the instruction. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Int32)"> <summary> Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions. </summary> <param name="opcode"> The MSIL instruction to be put onto the stream. </param> <param name="arg"> The numerical argument pushed onto the stream immediately after the instruction. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Int64)"> <summary> Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions. </summary> <param name="opcode"> The MSIL instruction to be put onto the stream. </param> <param name="arg"> The numerical argument pushed onto the stream immediately after the instruction. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.ConstructorInfo)"> <summary> Puts the specified instruction and metadata token for the specified constructor onto the Microsoft intermediate language (MSIL) stream of instructions. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. </param> <param name="con"> A ConstructorInfo representing a constructor. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.Emit.Label)"> <summary> Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream and leaves space to include a label when fixes are done. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. </param> <param name="label"> The label to which to branch from this location. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.Emit.Label[])"> <summary> Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream and leaves space to include a label when fixes are done. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. </param> <param name="labels"> The array of label objects to which to branch from this location. All of the labels will be used. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.Emit.LocalBuilder)"> <summary> Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the index of the given local variable. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. </param> <param name="local"> A local variable. </param> <exception cref="T:System.ArgumentException"> The parent method of the <paramref name="local" /> parameter does not match the method associated with this <see cref="T:System.Reflection.Emit.ILGenerator" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="local" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="opcode" /> is a single-byte instruction, and <paramref name="local" /> represents a local variable with an index greater than Byte.MaxValue. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.Emit.SignatureHelper)"> <summary> Puts the specified instruction and a signature token onto the Microsoft intermediate language (MSIL) stream of instructions. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. </param> <param name="signature"> A helper for constructing a signature token. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="signature" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.FieldInfo)"> <summary> Puts the specified instruction and metadata token for the specified field onto the Microsoft intermediate language (MSIL) stream of instructions. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. </param> <param name="field"> A FieldInfo representing a field. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.MethodInfo)"> <summary> Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the metadata token for the given method. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. </param> <param name="meth"> A MethodInfo representing a method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="meth" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="meth" /> is a generic method for which the <see cref="P:System.Reflection.MethodInfo.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.SByte)"> <summary> Puts the specified instruction and character argument onto the Microsoft intermediate language (MSIL) stream of instructions. </summary> <param name="opcode"> The MSIL instruction to be put onto the stream. </param> <param name="arg"> The character argument pushed onto the stream immediately after the instruction. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Single)"> <summary> Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions. </summary> <param name="opcode"> The MSIL instruction to be put onto the stream. </param> <param name="arg"> The Single argument pushed onto the stream immediately after the instruction. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.String)"> <summary> Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the metadata token for the given string. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. </param> <param name="str"> The String to be emitted. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Type)"> <summary> Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the metadata token for the given type. </summary> <param name="opcode"> The MSIL instruction to be put onto the stream. </param> <param name="cls"> A Type. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="cls" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode,System.Reflection.MethodInfo,System.Type[])"> <summary> Puts a call or callvirt instruction onto the Microsoft intermediate language (MSIL) stream to call a varargs method. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. Must be <see cref="F:System.Reflection.Emit.OpCodes.Call" />, <see cref="F:System.Reflection.Emit.OpCodes.Callvirt" />, or <see cref="F:System.Reflection.Emit.OpCodes.Newobj" />. </param> <param name="methodInfo"> The varargs method to be called. </param> <param name="optionalParameterTypes"> The types of the optional arguments if the method is a varargs method; otherwise, null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="methodInfo" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The calling convention for the method is not varargs, but optional parameter types are supplied. This exception is thrown in the .NET Framework versions 1.0 and 1.1, In subsequent versions, no exception is thrown. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.EmitCalli(System.Reflection.Emit.OpCode,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[])"> <summary> Puts a <see cref="F:System.Reflection.Emit.OpCodes.Calli" /> instruction onto the Microsoft intermediate language (MSIL) stream, specifying a managed calling convention for the indirect call. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. Must be <see cref="F:System.Reflection.Emit.OpCodes.Calli" />. </param> <param name="callingConvention"> The managed calling convention to be used. </param> <param name="returnType"> The <see cref="T:System.Type" /> of the result. </param> <param name="parameterTypes"> The types of the required arguments to the instruction. </param> <param name="optionalParameterTypes"> The types of the optional arguments for varargs calls. </param> <exception cref="T:System.InvalidOperationException"> <paramref name="optionalParameterTypes" /> is not null, but <paramref name="callingConvention" /> does not include the <see cref="F:System.Reflection.CallingConventions.VarArgs" /> flag. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.EmitCalli(System.Reflection.Emit.OpCode,System.Runtime.InteropServices.CallingConvention,System.Type,System.Type[])"> <summary> Puts a <see cref="F:System.Reflection.Emit.OpCodes.Calli" /> instruction onto the Microsoft intermediate language (MSIL) stream, specifying an unmanaged calling convention for the indirect call. </summary> <param name="opcode"> The MSIL instruction to be emitted onto the stream. Must be <see cref="F:System.Reflection.Emit.OpCodes.Calli" />. </param> <param name="unmanagedCallConv"> The unmanaged calling convention to be used. </param> <param name="returnType"> The <see cref="T:System.Type" /> of the result. </param> <param name="parameterTypes"> The types of the required arguments to the instruction. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.EmitWriteLine(System.Reflection.Emit.LocalBuilder)"> <summary> Emits the Microsoft intermediate language (MSIL) necessary to call <see cref="Overload:System.Console.WriteLine" /> with the given local variable. </summary> <param name="localBuilder"> The local variable whose value is to be written to the console. </param> <exception cref="T:System.ArgumentException"> The type of <paramref name="localBuilder" /> is <see cref="T:System.Reflection.Emit.TypeBuilder" /> or <see cref="T:System.Reflection.Emit.EnumBuilder" />, which are not supported. -or- There is no overload of <see cref="Overload:System.Console.WriteLine" /> that accepts the type of <paramref name="localBuilder" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="localBuilder" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.EmitWriteLine(System.Reflection.FieldInfo)"> <summary> Emits the Microsoft intermediate language (MSIL) necessary to call <see cref="Overload:System.Console.WriteLine" /> with the given field. </summary> <param name="fld"> The field whose value is to be written to the console. </param> <exception cref="T:System.ArgumentException"> There is no overload of the <see cref="Overload:System.Console.WriteLine" /> method that accepts the type of the specified field. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="fld" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The type of the field is <see cref="T:System.Reflection.Emit.TypeBuilder" /> or <see cref="T:System.Reflection.Emit.EnumBuilder" />, which are not supported. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.EmitWriteLine(System.String)"> <summary> Emits the Microsoft intermediate language (MSIL) to call <see cref="Overload:System.Console.WriteLine" /> with a string. </summary> <param name="value"> The string to be printed. </param> </member> <member name="M:System.Reflection.Emit.ILGenerator.EndExceptionBlock"> <summary> Ends an exception block. </summary> <exception cref="T:System.InvalidOperationException"> The end exception block occurs in an unexpected place in the code stream. </exception> <exception cref="T:System.NotSupportedException"> The Microsoft intermediate language (MSIL) being generated is not currently in an exception block. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.EndScope"> <summary> Ends a lexical scope. </summary> <exception cref="T:System.NotSupportedException"> This <see cref="T:System.Reflection.Emit.ILGenerator" /> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod" />. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label)"> <summary> Marks the Microsoft intermediate language (MSIL) stream's current position with the given label. </summary> <param name="loc"> The label for which to set an index. </param> <exception cref="T:System.ArgumentException"> <paramref name="loc" /> represents an invalid index into the label array. -or- An index for <paramref name="loc" /> has already been defined. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.MarkSequencePoint(System.Diagnostics.SymbolStore.ISymbolDocumentWriter,System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Marks a sequence point in the Microsoft intermediate language (MSIL) stream. </summary> <param name="document"> The document for which the sequence point is being defined. </param> <param name="startLine"> The line where the sequence point begins. </param> <param name="startColumn"> The column in the line where the sequence point begins. </param> <param name="endLine"> The line where the sequence point ends. </param> <param name="endColumn"> The column in the line where the sequence point ends. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startLine" /> or <paramref name="endLine" /> is <= 0. </exception> <exception cref="T:System.NotSupportedException"> This <see cref="T:System.Reflection.Emit.ILGenerator" /> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod" />. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.System#Runtime#InteropServices#_ILGenerator#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array that receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.System#Runtime#InteropServices#_ILGenerator#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.System#Runtime#InteropServices#_ILGenerator#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.System#Runtime#InteropServices#_ILGenerator#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.ThrowException(System.Type)"> <summary> Emits an instruction to throw an exception. </summary> <param name="excType"> The class of the type of exception to throw. </param> <exception cref="T:System.ArgumentException"> <paramref name="excType" /> is not the <see cref="T:System.Exception" /> class or a derived class of <see cref="T:System.Exception" />. -or- The type does not have a default constructor. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="excType" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ILGenerator.UsingNamespace(System.String)"> <summary> Specifies the namespace to be used in evaluating locals and watches for the current active lexical scope. </summary> <param name="usingNamespace"> The namespace to be used in evaluating locals and watches for the current active lexical scope </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="usingNamespace" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="usingNamespace" /> is null. </exception> <exception cref="T:System.NotSupportedException"> This <see cref="T:System.Reflection.Emit.ILGenerator" /> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod" />. </exception> </member> <member name="T:System.Reflection.Emit.Label"> <summary> Represents a label in the instruction stream. Label is used in conjunction with the <see cref="T:System.Reflection.Emit.ILGenerator" /> class. </summary> </member> <member name="M:System.Reflection.Emit.Label.Equals(System.Object)"> <summary> Checks if the given object is an instance of Label and is equal to this instance. </summary> <returns> Returns true if <paramref name="obj" /> is an instance of Label and is equal to this object; otherwise, false. </returns> <param name="obj"> The object to compare with this Label instance. </param> </member> <member name="M:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.Label" />. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Reflection.Emit.Label" /> to compare to the current instance. </param> </member> <member name="M:System.Reflection.Emit.Label.GetHashCode"> <summary> Generates a hash code for this instance. </summary> <returns> Returns a hash code for this instance. </returns> </member> <member name="M:System.Reflection.Emit.Label.op_Equality(System.Reflection.Emit.Label,System.Reflection.Emit.Label)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.Label" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.Label" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.Label" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Reflection.Emit.Label.op_Inequality(System.Reflection.Emit.Label,System.Reflection.Emit.Label)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.Label" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.Label" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.Label" /> to compare to <paramref name="a" />. </param> </member> <member name="T:System.Reflection.Emit.LocalBuilder"> <summary> Represents a local variable within a method or constructor. </summary> </member> <member name="P:System.Reflection.Emit.LocalBuilder.IsPinned"> <summary> Gets a value indicating whether the object referred to by the local variable is pinned in memory. </summary> <returns>true if the object referred to by the local variable is pinned in memory; otherwise, false. </returns> </member> <member name="P:System.Reflection.Emit.LocalBuilder.LocalIndex"> <summary> Gets the zero-based index of the local variable within the method body. </summary> <returns> An integer value that represents the order of declaration of the local variable within the method body. </returns> </member> <member name="P:System.Reflection.Emit.LocalBuilder.LocalType"> <summary> Gets the type of the local variable. </summary> <returns> The <see cref="T:System.Type" /> of the local variable. </returns> </member> <member name="M:System.Reflection.Emit.LocalBuilder.SetLocalSymInfo(System.String)"> <summary> Sets the name of this local variable. </summary> <param name="name"> The name of the local variable. </param> <exception cref="T:System.InvalidOperationException"> The containing type has been created with <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- There is no symbolic writer defined for the containing module. </exception> <exception cref="T:System.NotSupportedException"> This local is defined in a dynamic method, rather than in a method of a dynamic type. </exception> </member> <member name="M:System.Reflection.Emit.LocalBuilder.SetLocalSymInfo(System.String,System.Int32,System.Int32)"> <summary> Sets the name and lexical scope of this local variable. </summary> <param name="name"> The name of the local variable. </param> <param name="startOffset"> The beginning offset of the lexical scope of the local variable. </param> <param name="endOffset"> The ending offset of the lexical scope of the local variable. </param> <exception cref="T:System.InvalidOperationException"> The containing type has been created with <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- There is no symbolic writer defined for the containing module. </exception> <exception cref="T:System.NotSupportedException"> This local is defined in a dynamic method, rather than in a method of a dynamic type. </exception> </member> <member name="M:System.Reflection.Emit.LocalBuilder.System#Runtime#InteropServices#_LocalBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.LocalBuilder.System#Runtime#InteropServices#_LocalBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.LocalBuilder.System#Runtime#InteropServices#_LocalBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.LocalBuilder.System#Runtime#InteropServices#_LocalBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="T:System.Reflection.Emit.MethodBuilder"> <summary> Defines and represents a method (or constructor) on a dynamic class. </summary> </member> <member name="M:System.Reflection.Emit.MethodBuilder.AddDeclarativeSecurity(System.Security.Permissions.SecurityAction,System.Security.PermissionSet)"> <summary> Adds declarative security to this method. </summary> <param name="action"> The security action to be taken (Demand, Assert, and so on). </param> <param name="pset"> The set of permissions the action applies to. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="action" /> is invalid (RequestMinimum, RequestOptional, and RequestRefuse are invalid). </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- The permission set <paramref name="pset" /> contains an action that was added earlier by <see cref="M:System.Reflection.Emit.MethodBuilder.AddDeclarativeSecurity(System.Security.Permissions.SecurityAction,System.Security.PermissionSet)" />. -or- For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="pset" /> is null. </exception> </member> <member name="P:System.Reflection.Emit.MethodBuilder.Attributes"> <summary> Retrieves the attributes for this method. </summary> <returns> Read-only. Retrieves the MethodAttributes for this method. </returns> </member> <member name="P:System.Reflection.Emit.MethodBuilder.CallingConvention"> <summary> Returns the calling convention of the method. </summary> <returns> Read-only. The calling convention of the method. </returns> </member> <member name="P:System.Reflection.Emit.MethodBuilder.ContainsGenericParameters"> <summary> Not supported for this type. </summary> <returns> Not supported. </returns> <exception cref="T:System.NotSupportedException"> The invoked method is not supported in the base class. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.CreateMethodBody(System.Byte[],System.Int32)"> <summary> Creates the body of the method using a supplied byte array of Microsoft intermediate language (MSIL) instructions. </summary> <param name="il"> An array containing valid MSIL instructions. If this parameter is null, the method's body is cleared. </param> <param name="count"> The number of valid bytes in the MSIL array. This value is ignored if MSIL is null. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="count" /> is not within the range of indexes of the supplied MSIL instruction array and <paramref name="il" /> is not null. </exception> <exception cref="T:System.InvalidOperationException"> The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- This method was called previously on this MethodBuilder with an <paramref name="il" /> argument that was not null. -or- For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="P:System.Reflection.Emit.MethodBuilder.DeclaringType"> <summary> Returns the type that declares this method. </summary> <returns> Read-only. The type that declares this method. </returns> </member> <member name="M:System.Reflection.Emit.MethodBuilder.DefineGenericParameters(System.String[])"> <summary> Sets the number of generic type parameters for the current method, specifies their names, and returns an array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects that can be used to define their constraints. </summary> <returns> An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects representing the type parameters of the generic method. </returns> <param name="names"> An array of strings that represent the names of the generic type parameters. </param> <exception cref="T:System.InvalidOperationException"> Generic type parameters have already been defined for this method. -or- The method has been completed already. -or- The <see cref="M:System.Reflection.Emit.MethodBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)" /> method has been called for the current method. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="names" /> is null. -or- An element of <paramref name="names" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="names" /> is an empty array. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.DefineParameter(System.Int32,System.Reflection.ParameterAttributes,System.String)"> <summary> Sets the parameter attributes and the name of a parameter of this method, or of the return value of this method. Returns a ParameterBuilder that can be used to apply custom attributes. </summary> <returns> Returns a ParameterBuilder object that represents a parameter of this method or the return value of this method. </returns> <param name="position"> The position of the parameter in the parameter list. Parameters are indexed beginning with the number 1 for the first parameter; the number 0 represents the return value of the method. </param> <param name="attributes"> The parameter attributes of the parameter. </param> <param name="strParamName"> The name of the parameter. The name can be the null string. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The method has no parameters. -or- <paramref name="position" /> is less than zero. -or- <paramref name="position" /> is greater than the number of the method's parameters. </exception> <exception cref="T:System.InvalidOperationException"> The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.Equals(System.Object)"> <summary> Determines whether the given object is equal to this instance. </summary> <returns>true if <paramref name="obj" /> is an instance of MethodBuilder and is equal to this object; otherwise, false. </returns> <param name="obj"> The object to compare with this MethodBuilder instance. </param> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetBaseDefinition"> <summary> Return the base implementation for a method. </summary> <returns> The base implementation of this method. </returns> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetCustomAttributes(System.Boolean)"> <summary> Returns all the custom attributes defined for this method. </summary> <returns> Returns an array of objects representing all the custom attributes of this method. </returns> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the custom attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> on the returned <see cref="T:System.Reflection.MethodInfo" />. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Returns the custom attributes identified by the given type. </summary> <returns> Returns an array of objects representing the attributes of this method that are of type <paramref name="attributeType" />. </returns> <param name="attributeType"> The custom attribute type. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the custom attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> on the returned <see cref="T:System.Reflection.MethodInfo" />. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetGenericArguments"> <summary> Returns an array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects that represent the type parameters of the method, if it is generic. </summary> <returns> An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects representing the type parameters, if the method is generic, or null if the method is not generic. </returns> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetGenericMethodDefinition"> <summary> Returns this method. </summary> <returns> The current instance of <see cref="T:System.Reflection.Emit.MethodBuilder" />. </returns> <exception cref="T:System.InvalidOperationException"> The current method is not generic. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property returns false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetHashCode"> <summary> Gets the hash code for this method. </summary> <returns> The hash code for this method. </returns> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetILGenerator"> <summary> Returns an ILGenerator for this method with a default Microsoft intermediate language (MSIL) stream size of 64 bytes. </summary> <returns> Returns an ILGenerator object for this method. </returns> <exception cref="T:System.InvalidOperationException"> The method should not have a body because of its <see cref="T:System.Reflection.MethodAttributes" /> or <see cref="T:System.Reflection.MethodImplAttributes" /> flags, for example because it has the <see cref="F:System.Reflection.MethodAttributes.PinvokeImpl" /> flag. -or- The method is a generic method, but not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetILGenerator(System.Int32)"> <summary> Returns an ILGenerator for this method with the specified Microsoft intermediate language (MSIL) stream size. </summary> <returns> Returns an ILGenerator object for this method. </returns> <param name="size"> The size of the MSIL stream, in bytes. </param> <exception cref="T:System.InvalidOperationException"> The method should not have a body because of its <see cref="T:System.Reflection.MethodAttributes" /> or <see cref="T:System.Reflection.MethodImplAttributes" /> flags, for example because it has the <see cref="F:System.Reflection.MethodAttributes.PinvokeImpl" /> flag. -or- The method is a generic method, but not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetMethodImplementationFlags"> <summary> Returns the implementation flags for the method. </summary> <returns> Returns the implementation flags for the method. </returns> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetModule"> <summary> Returns a reference to the module that contains this method. </summary> <returns> Returns a reference to the module that contains this method. </returns> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetParameters"> <summary> Returns the parameters of this method. </summary> <returns> An array of ParameterInfo objects that represent the parameters of the method. </returns> <exception cref="T:System.NotSupportedException"> This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> and call GetParameters on the returned <see cref="T:System.Reflection.MethodInfo" />. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.GetToken"> <summary> Returns the MethodToken that represents the token for this method. </summary> <returns> Returns the MethodToken of this method. </returns> </member> <member name="P:System.Reflection.Emit.MethodBuilder.InitLocals"> <summary> Gets or sets a Boolean value that specifies whether the local variables in this method are zero initialized. The default value of this property is true. </summary> <returns>true if the local variables in this method should be zero initialized; otherwise false. </returns> <exception cref="T:System.InvalidOperationException"> For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. (Get or set.) </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Dynamically invokes the method reflected by this instance on the given object, passing along the specified parameters, and under the constraints of the given binder. </summary> <returns> Returns an object containing the return value of the invoked method. </returns> <param name="obj"> The object on which to invoke the specified method. If the method is static, this parameter is ignored. </param> <param name="invokeAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, NonPublic, and so on. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If binder is null, the default binder is used. For more details, see <see cref="T:System.Reflection.Binder" />. </param> <param name="parameters"> An argument list. This is an array of arguments with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters this should be null. </param> <param name="culture"> An instance of <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. (Note that this is necessary to, for example, convert a <see cref="T:System.String" /> that represents 1000 to a <see cref="T:System.Double" /> value, since 1000 is represented differently by different cultures.) </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> and call <see cref="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])" /> on the returned <see cref="T:System.Reflection.MethodInfo" />. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.IsDefined(System.Type,System.Boolean)"> <summary> Checks if the specified custom attribute type is defined. </summary> <returns>true if the specified custom attribute type is defined; otherwise, false. </returns> <param name="attributeType"> The custom attribute type. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the custom attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> on the returned <see cref="T:System.Reflection.MethodInfo" />. </exception> </member> <member name="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"> <summary> Gets a value indicating whether the method is a generic method. </summary> <returns>true if the method is generic; otherwise, false. </returns> </member> <member name="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"> <summary> Gets a value indicating whether the current <see cref="T:System.Reflection.Emit.MethodBuilder" /> object represents the definition of a generic method. </summary> <returns>true if the current <see cref="T:System.Reflection.Emit.MethodBuilder" /> object represents the definition of a generic method; otherwise, false. </returns> </member> <member name="M:System.Reflection.Emit.MethodBuilder.MakeGenericMethod(System.Type[])"> <summary> Returns a generic method constructed from the current generic method definition using the specified generic type arguments. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> representing the generic method constructed from the current generic method definition using the specified generic type arguments. </returns> <param name="typeArguments"> An array of <see cref="T:System.Type" /> objects that represent the type arguments for the generic method. </param> </member> <member name="P:System.Reflection.Emit.MethodBuilder.MethodHandle"> <summary> Retrieves the internal handle for the method. Use this handle to access the underlying metadata handle. </summary> <returns> Read-only. The internal handle for the method. Use this handle to access the underlying metadata handle. </returns> <exception cref="T:System.NotSupportedException"> This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> and call <see cref="P:System.Reflection.MethodBase.MethodHandle" /> on the returned <see cref="T:System.Reflection.MethodInfo" />. </exception> </member> <member name="P:System.Reflection.Emit.MethodBuilder.Module"> <summary> Gets the module in which the current method is being defined. </summary> <returns> The <see cref="T:System.Reflection.Module" /> in which the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is being defined. </returns> </member> <member name="P:System.Reflection.Emit.MethodBuilder.Name"> <summary> Retrieves the name of this method. </summary> <returns> Read-only. Retrieves a string containing the simple name of this method. </returns> </member> <member name="P:System.Reflection.Emit.MethodBuilder.ReflectedType"> <summary> Retrieves the class that was used in reflection to obtain this object. </summary> <returns> Read-only. The type used to obtain this method. </returns> </member> <member name="P:System.Reflection.Emit.MethodBuilder.ReturnParameter"> <summary> Gets a <see cref="T:System.Reflection.ParameterInfo" /> object that contains information about the return type of the method, such as whether the return type has custom modifiers. </summary> <returns> A <see cref="T:System.Reflection.ParameterInfo" /> object that contains information about the return type. </returns> <exception cref="T:System.InvalidOperationException"> The declaring type has not been created. </exception> </member> <member name="P:System.Reflection.Emit.MethodBuilder.ReturnTypeCustomAttributes"> <summary> Returns the custom attributes of the method's return type. </summary> <returns> Read-only. The custom attributes of the method's return type. </returns> </member> <member name="M:System.Reflection.Emit.MethodBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Sets a custom attribute using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Sets a custom attribute using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class to describe the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="customBuilder" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)"> <summary> Sets the implementation flags for this method. </summary> <param name="attributes"> The implementation flags to set. </param> <exception cref="T:System.InvalidOperationException"> The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.SetMarshal(System.Reflection.Emit.UnmanagedMarshal)"> <summary> Sets marshaling information for the return type of this method. </summary> <param name="unmanagedMarshal"> Marshaling information for the return type of this method. </param> <exception cref="T:System.InvalidOperationException"> The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.SetParameters(System.Type[])"> <summary> Sets the number and types of parameters for a method. </summary> <param name="parameterTypes"> An array of <see cref="T:System.Type" /> objects representing the parameter types. </param> <exception cref="T:System.InvalidOperationException"> The current method is generic, but is not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.SetReturnType(System.Type)"> <summary> Sets the return type of the method. </summary> <param name="returnType"> A <see cref="T:System.Type" /> object that represents the return type of the method. </param> <exception cref="T:System.InvalidOperationException"> The current method is generic, but is not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.SetSignature(System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])"> <summary> Sets the method signature, including the return type, the parameter types, and the required and optional custom modifiers of the return type and parameter types. </summary> <param name="returnType"> The return type of the method. </param> <param name="returnTypeRequiredCustomModifiers"> An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no required custom modifiers, specify null. </param> <param name="returnTypeOptionalCustomModifiers"> An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no optional custom modifiers, specify null. </param> <param name="parameterTypes"> The types of the parameters of the method. </param> <param name="parameterTypeRequiredCustomModifiers"> An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays. </param> <param name="parameterTypeOptionalCustomModifiers"> An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays. </param> <exception cref="T:System.InvalidOperationException"> The current method is generic, but is not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.SetSymCustomAttribute(System.String,System.Byte[])"> <summary> Set a symbolic custom attribute using a blob. </summary> <param name="name"> The name of the symbolic custom attribute. </param> <param name="data"> The byte blob that represents the value of the symbolic custom attribute. </param> <exception cref="T:System.InvalidOperationException"> The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- The module that contains this method is not a debug module. -or- For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception> </member> <member name="P:System.Reflection.Emit.MethodBuilder.Signature"> <summary> Retrieves the signature of the method. </summary> <returns> Read-only. A String containing the signature of the method reflected by this MethodBase instance. </returns> </member> <member name="M:System.Reflection.Emit.MethodBuilder.System#Runtime#InteropServices#_MethodBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array that receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.System#Runtime#InteropServices#_MethodBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.System#Runtime#InteropServices#_MethodBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.System#Runtime#InteropServices#_MethodBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DispIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.MethodBuilder.ToString"> <summary> Returns this MethodBuilder instance as a string. </summary> <returns> Returns a string containing the name, attributes, method signature, exceptions, and local signature of this method followed by the current Microsoft intermediate language (MSIL) stream. </returns> </member> <member name="T:System.Reflection.Emit.MethodRental"> <summary> Provides a fast way to swap method body implementation given a method of a class. </summary> </member> <member name="F:System.Reflection.Emit.MethodRental.JitImmediate"> <summary> Specifies that the method should be just-in-time (JIT) compiled immediately. </summary> </member> <member name="F:System.Reflection.Emit.MethodRental.JitOnDemand"> <summary> Specifies that the method should be just-in-time (JIT) compiled when needed. </summary> </member> <member name="M:System.Reflection.Emit.MethodRental.SwapMethodBody(System.Type,System.Int32,System.IntPtr,System.Int32,System.Int32)"> <summary> Swaps the body of a method. </summary> <param name="cls"> The class containing the method. </param> <param name="methodtoken"> The token for the method. </param> <param name="rgIL"> A pointer to the method. This should include the method header. </param> <param name="methodSize"> The size of the new method body in bytes. </param> <param name="flags"> Flags that control the swapping. See the definitions of the constants. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="cls" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The type <paramref name="cls" /> is not complete. </exception> <exception cref="T:System.ArgumentException"> <paramref name="methodSize" /> is less than one or greater than 4128767 (3effff hex). </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.MethodRental.System#Runtime#InteropServices#_MethodRental#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.MethodRental.System#Runtime#InteropServices#_MethodRental#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.MethodRental.System#Runtime#InteropServices#_MethodRental#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.MethodRental.System#Runtime#InteropServices#_MethodRental#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="T:System.Reflection.Emit.MethodToken"> <summary> The MethodToken struct is an object representation of a token that represents a method. </summary> </member> <member name="F:System.Reflection.Emit.MethodToken.Empty"> <summary> The default MethodToken with <see cref="P:System.Reflection.Emit.MethodToken.Token" /> value 0. </summary> </member> <member name="M:System.Reflection.Emit.MethodToken.Equals(System.Object)"> <summary> Tests whether the given object is equal to this MethodToken object. </summary> <returns>true if <paramref name="obj" /> is an instance of MethodToken and is equal to this object; otherwise, false. </returns> <param name="obj"> The object to compare to this object. </param> </member> <member name="M:System.Reflection.Emit.MethodToken.Equals(System.Reflection.Emit.MethodToken)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.MethodToken" />. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Reflection.Emit.MethodToken" /> to compare to the current instance. </param> </member> <member name="M:System.Reflection.Emit.MethodToken.GetHashCode"> <summary> Returns the generated hash code for this method. </summary> <returns> Returns the hash code for this instance. </returns> </member> <member name="M:System.Reflection.Emit.MethodToken.op_Equality(System.Reflection.Emit.MethodToken,System.Reflection.Emit.MethodToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.MethodToken" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.MethodToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.MethodToken" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Reflection.Emit.MethodToken.op_Inequality(System.Reflection.Emit.MethodToken,System.Reflection.Emit.MethodToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.MethodToken" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.MethodToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.MethodToken" /> to compare to <paramref name="a" />. </param> </member> <member name="P:System.Reflection.Emit.MethodToken.Token"> <summary> Returns the metadata token for this method. </summary> <returns> Read-only. Returns the metadata token for this method. </returns> </member> <member name="T:System.Reflection.Emit.ModuleBuilder"> <summary> Defines and represents a module in a dynamic assembly. </summary> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions"> <summary> Completes the global function definitions and global data definitions for this dynamic module. </summary> <exception cref="T:System.InvalidOperationException"> This method was called previously. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineDocument(System.String,System.Guid,System.Guid,System.Guid)"> <summary> Defines a document for source. </summary> <returns> An ISymbolDocumentWriter object representing the defined document. </returns> <param name="url"> The URL for the document. </param> <param name="language"> The GUID that identifies the document language. This can be <see cref="F:System.Guid.Empty" />. </param> <param name="languageVendor"> The GUID that identifies the document language vendor. This can be <see cref="F:System.Guid.Empty" />. </param> <param name="documentType"> The GUID that identifies the document type. This can be <see cref="F:System.Guid.Empty" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="url" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> This method is called on a dynamic module that is not a debug module. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineEnum(System.String,System.Reflection.TypeAttributes,System.Type)"> <summary> Defines an enumeration type that is a value type with a single non-static field called <paramref name="value__" /> of the specified type. </summary> <returns> Returns the defined enumeration. </returns> <param name="name"> The full path of the enumeration type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="visibility"> The type attributes for the enumeration. The attributes are any bits defined by <see cref="F:System.Reflection.TypeAttributes.VisibilityMask" />. </param> <param name="underlyingType"> The underlying type for the enumeration. This must be a built-in integer type. See .NET Framework Class Library Overview. </param> <exception cref="T:System.ArgumentException"> Attributes other than visibility attributes are provided. -or- An enum with the given name exists in the parent assembly of this module. -or- When the visibility attributes are incorrect for the scope of the enum. For example, if <see cref="F:System.Reflection.TypeAttributes.NestedPublic" /> is specified as the <paramref name="visibility" /> but the enum is not a nested type. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineGlobalMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])"> <summary> Defines a global method given its name, attributes, calling convention, return type, and parameter types. </summary> <returns> Returns the defined global method. </returns> <param name="name"> The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the method. Must include <see cref="F:System.Reflection.MethodAttributes.Static" />. </param> <param name="callingConvention"> The calling convention for the method. </param> <param name="returnType"> The return type of the method. </param> <param name="parameterTypes"> The types of the method's parameters. </param> <exception cref="T:System.ArgumentException"> The method is not static. That is, <paramref name="attributes" /> does not include <see cref="F:System.Reflection.MethodAttributes.Static" />. -or- An element in the <see cref="T:System.Type" /> array is null. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineGlobalMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])"> <summary> Defines a global method given its name, attributes, calling convention, return type, custom modifiers for the return type, parameter types, and custom modifiers for the parameter types. </summary> <returns> Returns the defined global method. </returns> <param name="name"> The name of the method. <paramref name="name" /> cannot contain embedded null characters. </param> <param name="attributes"> The attributes of the method. Must include <see cref="F:System.Reflection.MethodAttributes.Static" />. </param> <param name="callingConvention"> The calling convention for the method. </param> <param name="returnType"> The return type of the method. </param> <param name="requiredReturnTypeCustomModifiers"> An array of types representing the required custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the return type has no required custom modifiers, specify null. </param> <param name="optionalReturnTypeCustomModifiers"> An array of types representing the optional custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the return type has no optional custom modifiers, specify null. </param> <param name="parameterTypes"> The types of the method's parameters. </param> <param name="requiredParameterTypeCustomModifiers"> An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter of the global method. If a particular argument has no required custom modifiers, specify null instead of an array of types. If the global method has no arguments, or if none of the arguments have required custom modifiers, specify null instead of an array of arrays. </param> <param name="optionalParameterTypeCustomModifiers"> An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter. If a particular argument has no optional custom modifiers, specify null instead of an array of types. If the global method has no arguments, or if none of the arguments have optional custom modifiers, specify null instead of an array of arrays. </param> <exception cref="T:System.ArgumentException"> The method is not static. That is, <paramref name="attributes" /> does not include <see cref="F:System.Reflection.MethodAttributes.Static" />. -or- An element in the <see cref="T:System.Type" /> array is null. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> method has been previously called. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineGlobalMethod(System.String,System.Reflection.MethodAttributes,System.Type,System.Type[])"> <summary> Defines a global method given its name, attributes, return type, and parameter types. </summary> <returns> Returns the defined global method. </returns> <param name="name"> The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the method. Must include <see cref="F:System.Reflection.MethodAttributes.Static" />. </param> <param name="returnType"> The return type of the method. </param> <param name="parameterTypes"> The types of the method's parameters. </param> <exception cref="T:System.ArgumentException"> The method is not static. That is, <paramref name="attributes" /> does not include <see cref="F:System.Reflection.MethodAttributes.Static" />. -or- The length of <paramref name="name" /> is zero -or- An element in the <see cref="T:System.Type" /> array is null. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineInitializedData(System.String,System.Byte[],System.Reflection.FieldAttributes)"> <summary> Defines an initialized data field in the .sdata section of the portable executable (PE) file. </summary> <returns> A field to reference the data. </returns> <param name="name"> The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="data"> The blob of data. </param> <param name="attributes"> The attributes for the field. The default is Static. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. -or- The size of <paramref name="data" /> is less than or equal to zero or greater than or equal to 0x3f0000. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="data" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineManifestResource(System.String,System.IO.Stream,System.Reflection.ResourceAttributes)"> <summary> Defines a manifest resource blob to be embedded in the dynamic assembly. </summary> <param name="name"> The case-sensitive name for the resource. </param> <param name="stream"> A stream that contains the bytes for the resource. </param> <param name="attribute"> A <see cref="T:System.Reflection.ResourceAttributes" /> value that specifies whether the resource is public or private. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="stream" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is a zero-length string. </exception> <exception cref="T:System.InvalidOperationException"> The dynamic assembly that contains the current module is transient; that is, no file name was specified when <see cref="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicModule(System.String,System.String)" /> was called. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefinePInvokeMethod(System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)"> <summary> Defines a PInvoke method given its name, the name of the DLL in which the method is defined, the attributes of the method, the calling convention of the method, the return type of the method, the types of the parameters of the method, and the PInvoke flags. </summary> <returns> The defined PInvoke method. </returns> <param name="name"> The name of the PInvoke method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="dllName"> The name of the DLL in which the PInvoke method is defined. </param> <param name="attributes"> The attributes of the method. </param> <param name="callingConvention"> The method's calling convention. </param> <param name="returnType"> The method's return type. </param> <param name="parameterTypes"> The types of the method's parameters. </param> <param name="nativeCallConv"> The native calling convention. </param> <param name="nativeCharSet"> The method's native character set. </param> <exception cref="T:System.ArgumentException"> The method is not static or if the containing type is an interface. -or- The method is abstract. -or- The method was previously defined. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="dllName" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /></exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefinePInvokeMethod(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)"> <summary> Defines a PInvoke method given its name, the name of the DLL in which the method is defined, the attributes of the method, the calling convention of the method, the return type of the method, the types of the parameters of the method, and the PInvoke flags. </summary> <returns> The defined PInvoke method. </returns> <param name="name"> The name of the PInvoke method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="dllName"> The name of the DLL in which the PInvoke method is defined. </param> <param name="entryName"> The name of the entry point in the DLL. </param> <param name="attributes"> The attributes of the method. </param> <param name="callingConvention"> The method's calling convention. </param> <param name="returnType"> The method's return type. </param> <param name="parameterTypes"> The types of the method's parameters. </param> <param name="nativeCallConv"> The native calling convention. </param> <param name="nativeCharSet"> The method's native character set. </param> <exception cref="T:System.ArgumentException"> The method is not static or if the containing type is an interface or if the method is abstract of if the method was previously defined. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="dllName" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /></exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineResource(System.String,System.String)"> <summary> Defines the named managed embedded resource to be stored in this module. </summary> <returns> Returns a resource writer for the defined resource. </returns> <param name="name"> The name of the resource. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="description"> The description of the resource. </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> This module is transient. -or- The containing assembly is not persistable. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineResource(System.String,System.String,System.Reflection.ResourceAttributes)"> <summary> Defines the named managed embedded resource with the given attributes that is to be stored in this module. </summary> <returns> Returns a resource writer for the defined resource. </returns> <param name="name"> The name of the resource. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="description"> The description of the resource. </param> <param name="attribute"> The resource attributes. </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> This module is transient. -or- The containing assembly is not persistable. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String)"> <summary> Constructs a TypeBuilder for a type with the specified name. </summary> <returns> Returns the created TypeBuilder. </returns> <param name="name"> The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <exception cref="T:System.ArgumentException"> A type with the given name exists in the parent assembly of this module. -or- Nested type attributes are set on a type that is not nested. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes)"> <summary> Constructs a TypeBuilder given the type name and the type attributes. </summary> <returns> Returns a TypeBuilder created with all of the requested attributes. </returns> <param name="name"> The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attributes of the defined type. </param> <exception cref="T:System.ArgumentException"> A type with the given name exists in the parent assembly of this module. -or- Nested type attributes are set on a type that is not nested. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type)"> <summary> Constructs a TypeBuilder given type name, its attributes, and the type that the defined type extends. </summary> <returns> Returns a TypeBuilder created with all of the requested attributes. </returns> <param name="name"> The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attribute to be associated with the type. </param> <param name="parent"> The Type that the defined type extends. </param> <exception cref="T:System.ArgumentException"> A type with the given name exists in the parent assembly of this module. -or- Nested type attributes are set on a type that is not nested. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Int32)"> <summary> Constructs a TypeBuilder given the type name, the attributes, the type that the defined type extends, and the total size of the type. </summary> <returns> Returns a TypeBuilder object. </returns> <param name="name"> The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attributes of the defined type. </param> <param name="parent"> The Type that the defined type extends. </param> <param name="typesize"> The total size of the type. </param> <exception cref="T:System.ArgumentException"> A type with the given name exists in the parent assembly of this module. -or- Nested type attributes are set on a type that is not nested. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize)"> <summary> Constructs a TypeBuilder given the type name, the attributes, the type that the defined type extends, and the packing size of the type. </summary> <returns> Returns a TypeBuilder object. </returns> <param name="name"> The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attributes of the defined type. </param> <param name="parent"> The Type that the defined type extends. </param> <param name="packsize"> The packing size of the type. </param> <exception cref="T:System.ArgumentException"> A type with the given name exists in the parent assembly of this module. -or- Nested type attributes are set on a type that is not nested. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize,System.Int32)"> <summary> Constructs a TypeBuilder given the type name, attributes, the type that the defined type extends, the packing size of the defined type, and the total size of the defined type. </summary> <returns> Returns a TypeBuilder created with all of the requested attributes. </returns> <param name="name"> The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attributes of the defined type. </param> <param name="parent"> The type that the defined type extends. </param> <param name="packingSize"> The packing size of the type. </param> <param name="typesize"> The total size of the type. </param> <exception cref="T:System.ArgumentException"> A type with the given name exists in the parent assembly of this module. -or- Nested type attributes are set on a type that is not nested. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[])"> <summary> Constructs a TypeBuilder given the type name, attributes, the type that the defined type extends, and the interfaces that the defined type implements. </summary> <returns> Returns a TypeBuilder created with all of the requested attributes. </returns> <param name="name"> The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attributes to be associated with the type. </param> <param name="parent"> The type that the defined type extends. </param> <param name="interfaces"> The list of interfaces that the type implements. </param> <exception cref="T:System.ArgumentException"> A type with the given name exists in the parent assembly of this module. -or- Nested type attributes are set on a type that is not nested. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineUninitializedData(System.String,System.Int32,System.Reflection.FieldAttributes)"> <summary> Defines an uninitialized data field in the .sdata section of the portable executable (PE) file. </summary> <returns> A field to reference the data. </returns> <param name="name"> The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="size"> The size of the data field. </param> <param name="attributes"> The attributes for the field. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. -or- <paramref name="size" /> is less than or equal to zero or greater than or equal to 0x003f0000. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineUnmanagedResource(System.Byte[])"> <summary> Defines an unmanaged embedded resource given an opaque blob of bytes. </summary> <param name="resource"> An opaque blob that represents an unmanaged resource </param> <exception cref="T:System.ArgumentException"> An unmanaged resource has already been defined in the module's assembly. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="resource" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.DefineUnmanagedResource(System.String)"> <summary> Defines an unmanaged resource given the name of Win32 resource file. </summary> <param name="resourceFileName"> The name of the unmanaged resource file </param> <exception cref="T:System.ArgumentException"> An unmanaged resource has already been defined in the module's assembly. -or- <paramref name="resourceFileName" /> is the empty string (""). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="resourceFileName" /> is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> <paramref name="resourceFileName" /> is not found -or- <paramref name="resourceFileName" /> is a directory </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Reflection.Emit.ModuleBuilder.FullyQualifiedName"> <summary> Gets a String representing the fully-qualified name and path to this module. </summary> <returns> The fully-qualified module name. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetArrayMethod(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])"> <summary> Returns the named method on an array class. </summary> <returns> The named method on an array class. </returns> <param name="arrayClass"> An array class. </param> <param name="methodName"> The name of a method on the array class. </param> <param name="callingConvention"> The method's calling convention. </param> <param name="returnType"> The return type of the method. </param> <param name="parameterTypes"> The types of the method's parameters. </param> <exception cref="T:System.ArgumentException"> <paramref name="arrayClass" /> is not an array. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="arrayClass" /> or <paramref name="methodName" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetArrayMethodToken(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])"> <summary> Returns the token for the named method on an array class. </summary> <returns> The token for the named method on an array class. </returns> <param name="arrayClass"> The Type object for the array. </param> <param name="methodName"> A string containing the name of the method. </param> <param name="callingConvention"> The calling convention for the method. </param> <param name="returnType"> The return type of the method. </param> <param name="parameterTypes"> The types of the parameters of the method. </param> <exception cref="T:System.ArgumentException"> <paramref name="arrayClass" /> is not an array. -or- Length of <paramref name="methodName" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="arrayClass" /> or <paramref name="methodName" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetConstructorToken(System.Reflection.ConstructorInfo)"> <summary> Returns the token used to identify the specified constructor within this module. </summary> <returns> Returns the token used to identify the constructor represented by <paramref name="con" /> within this module. </returns> <param name="con"> A ConstructorInfo object representing the constructor to get a token for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetFieldToken(System.Reflection.FieldInfo)"> <summary> Returns the token used to identify the specified field within this module. </summary> <returns> Returns the token used to identify the field represented by <paramref name="con" /> within this module. </returns> <param name="field"> A FieldInfo object representing the field to get a token for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetMethodToken(System.Reflection.MethodInfo)"> <summary> Returns the token used to identify the specified method within this module. </summary> <returns> Returns the token used to identify the method represented by method within this module. </returns> <param name="method"> A MethodToken object representing the method to get a token for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="method" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The declaring type for the method is not in this module. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetSignatureToken(System.Byte[],System.Int32)"> <summary> Defines a signature token specified by the character array and signature length. </summary> <returns> A SignatureToken for the defined signature. </returns> <param name="sigBytes"> The signature blob. </param> <param name="sigLength"> The length of the signature blob. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sigBytes" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetSignatureToken(System.Reflection.Emit.SignatureHelper)"> <summary> Defines a signature token using the given SignatureHelper object. </summary> <returns> A SignatureToken for the defined signature. </returns> <param name="sigHelper"> A reference to a SignatureHelper. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sigHelper" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetStringConstant(System.String)"> <summary> Returns the token of the given string in the module’s constant pool. </summary> <returns> Returns the StringToken of the string added to the constant pool. </returns> <param name="str"> The string to add to the module's constant pool. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="str" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetSymWriter"> <summary> Returns the symbol writer associated with this dynamic module. </summary> <returns> Returns the symbol writer associated with this dynamic module. </returns> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetType(System.String)"> <summary> Gets the named type defined in the module. </summary> <returns> The requested type. Returns null if the type is not found. </returns> <param name="className"> The name of the <see cref="T:System.Type" /> to get. </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="className" /> is zero or if length of <paramref name="className" /> is greater than 1023. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="className" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The requested <see cref="T:System.Type" /> is non-public and the caller does not have <see cref="T:System.Security.Permissions.ReflectionPermission" /> to reflect non-public objects outside the current assembly. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> A class initializer is invoked and throws an exception. </exception> <exception cref="T:System.TypeLoadException"> An error is encountered while loading the <see cref="T:System.Type" />. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetType(System.String,System.Boolean)"> <summary> Gets the named type defined in the module optionally ignoring the case of the type name. </summary> <returns> The requested type. Returns null if the type is not found. </returns> <param name="className"> The name of the <see cref="T:System.Type" /> to get. </param> <param name="ignoreCase"> If true, the search is case-insensitive. If false, the search is case-sensitive. </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="className" /> is zero. -or- The length of <paramref name="className" /> is greater than 1023. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="className" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The requested <see cref="T:System.Type" /> is non-public and the caller does not have <see cref="T:System.Security.Permissions.ReflectionPermission" /> to reflect non-public objects outside the current assembly. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> A class initializer is invoked and throws an exception. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetType(System.String,System.Boolean,System.Boolean)"> <summary> Gets the named type defined in the module optionally ignoring the case of the type name. Optionally throws an exception if the type is not found. </summary> <returns> A <see cref="T:System.Type" /> object representing the specified type, if the type is declared in this module; otherwise, null. </returns> <param name="className"> The name of the <see cref="T:System.Type" /> to get. </param> <param name="throwOnError">true to throw an exception if the type cannot be found; false to return null. </param> <param name="ignoreCase"> If true, the search is case-insensitive. If false, the search is case-sensitive. </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="className" /> is zero. -or- The length of <paramref name="className" /> is greater than 1023. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="className" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The requested <see cref="T:System.Type" /> is non-public and the caller does not have <see cref="T:System.Security.Permissions.ReflectionPermission" /> to reflect non-public objects outside the current assembly. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> A class initializer is invoked and throws an exception. </exception> <exception cref="T:System.TypeLoadException"> <paramref name="throwOnError" /> is true and the specified type is not found. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetTypes"> <summary> Returns all the classes defined within this module. </summary> <returns> An array of type Type containing classes defined within the module that is reflected by this instance. </returns> <exception cref="T:System.Reflection.ReflectionTypeLoadException"> One or more classes in a module could not be loaded. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetTypeToken(System.String)"> <summary> Returns the token used to identify the type given its name. </summary> <returns> Returns the TypeToken used to identify the type given by name within this module. </returns> <param name="name"> A string representing the name of the class, including the namespace. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is the empty string (""). -or- <paramref name="name" /> represents a ByRef type. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- The type specified by <paramref name="name" /> could not be found. </exception> <exception cref="T:System.InvalidOperationException"> This is a non-transient module that references a transient module. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.GetTypeToken(System.Type)"> <summary> Returns the token used to identify the specified type within this module. </summary> <returns> Returns the TypeToken used to identify the given type within this module. </returns> <param name="type"> The type object that represents the class type. </param> <exception cref="T:System.ArgumentException"> <paramref name="type" /> is a ByRef type. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> A non-transient module that references a transient module. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.IsTransient"> <summary> Checks if this dynamic module is transient. </summary> <returns> Returns true if this dynamic module is transient; otherwise, false. </returns> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Set a custom attribute using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Set a custom attribute using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class to define the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.SetSymCustomAttribute(System.String,System.Byte[])"> <summary> This method does nothing. </summary> <param name="name"> The name of the custom attribute </param> <param name="data"> An opaque blob of bytes that represents the value of the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="url" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.SetUserEntryPoint(System.Reflection.MethodInfo)"> <summary> Sets the user entry point. </summary> <param name="entryPoint"> The user entry point. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="entryPoint" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> This method is called on a dynamic module that is not a debug module. -or- <paramref name="entryPoint" /> is not contained in this dynamic module. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.System#Runtime#InteropServices#_ModuleBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.System#Runtime#InteropServices#_ModuleBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.System#Runtime#InteropServices#_ModuleBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.ModuleBuilder.System#Runtime#InteropServices#_ModuleBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="T:System.Reflection.Emit.OpCode"> <summary> Describes a Microsoft intermediate language (MSIL) instruction. </summary> </member> <member name="M:System.Reflection.Emit.OpCode.Equals(System.Object)"> <summary> Tests whether the given object is equal to this Opcode. </summary> <returns>true if <paramref name="obj" /> is an instance of Opcode and is equal to this object; otherwise, false. </returns> <param name="obj"> The object to compare to this object. </param> </member> <member name="M:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.OpCode" />. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Reflection.Emit.OpCode" /> to compare to the current instance. </param> </member> <member name="P:System.Reflection.Emit.OpCode.FlowControl"> <summary> The flow control characteristics of the Microsoft intermediate language (MSIL) instruction. </summary> <returns> Read-only. The type of flow control. </returns> </member> <member name="M:System.Reflection.Emit.OpCode.GetHashCode"> <summary> Returns the generated hash code for this Opcode. </summary> <returns> Returns the hash code for this instance. </returns> </member> <member name="P:System.Reflection.Emit.OpCode.Name"> <summary> The name of the Microsoft intermediate language (MSIL) instruction. </summary> <returns> Read-only. The name of the MSIL instruction. </returns> </member> <member name="M:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode,System.Reflection.Emit.OpCode)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.OpCode" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.OpCode" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.OpCode" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Reflection.Emit.OpCode.op_Inequality(System.Reflection.Emit.OpCode,System.Reflection.Emit.OpCode)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.OpCode" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.OpCode" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.OpCode" /> to compare to <paramref name="a" />. </param> </member> <member name="P:System.Reflection.Emit.OpCode.OpCodeType"> <summary> The type of Microsoft intermediate language (MSIL) instruction. </summary> <returns> Read-only. The type of Microsoft intermediate language (MSIL) instruction. </returns> </member> <member name="P:System.Reflection.Emit.OpCode.OperandType"> <summary> The operand type of an Microsoft intermediate language (MSIL) instruction. </summary> <returns> Read-only. The operand type of an MSIL instruction. </returns> </member> <member name="P:System.Reflection.Emit.OpCode.Size"> <summary> The size of the Microsoft intermediate language (MSIL) instruction. </summary> <returns> Read-only. The size of the MSIL instruction. </returns> </member> <member name="P:System.Reflection.Emit.OpCode.StackBehaviourPop"> <summary> How the Microsoft intermediate language (MSIL) instruction pops the stack. </summary> <returns> Read-only. The way the MSIL instruction pops the stack. </returns> </member> <member name="P:System.Reflection.Emit.OpCode.StackBehaviourPush"> <summary> How the Microsoft intermediate language (MSIL) instruction pushes operand onto the stack. </summary> <returns> Read-only. The way the MSIL instruction pushes operand onto the stack. </returns> </member> <member name="M:System.Reflection.Emit.OpCode.ToString"> <summary> Returns this Opcode as a <see cref="T:System.String" />. </summary> <returns> Returns a <see cref="T:System.String" /> containing the name of this Opcode. </returns> </member> <member name="P:System.Reflection.Emit.OpCode.Value"> <summary> The value of the immediate operand of the Microsoft intermediate language (MSIL) instruction. </summary> <returns> Read-only. The value of the immediate operand of the MSIL instruction. </returns> </member> <member name="T:System.Reflection.Emit.OpCodes"> <summary> Provides field representations of the Microsoft Intermediate Language (MSIL) instructions for emission by the <see cref="T:System.Reflection.Emit.ILGenerator" /> class members (such as <see cref="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode)" />). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Add"> <summary> Adds two values and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Add_Ovf"> <summary> Adds two integers, performs an overflow check, and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Add_Ovf_Un"> <summary> Adds two unsigned integer values, performs an overflow check, and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.And"> <summary> Computes the bitwise AND of two values and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Arglist"> <summary> Returns an unmanaged pointer to the argument list of the current method. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Beq"> <summary> Transfers control to a target instruction if two values are equal. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Beq_S"> <summary> Transfers control to a target instruction (short form) if two values are equal. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Bge"> <summary> Transfers control to a target instruction if the first value is greater than or equal to the second value. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Bge_S"> <summary> Transfers control to a target instruction (short form) if the first value is greater than or equal to the second value. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Bge_Un"> <summary> Transfers control to a target instruction if the first value is greater than the second value, when comparing unsigned integer values or unordered float values. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Bge_Un_S"> <summary> Transfers control to a target instruction (short form) if the first value is greater than the second value, when comparing unsigned integer values or unordered float values. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Bgt"> <summary> Transfers control to a target instruction if the first value is greater than the second value. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Bgt_S"> <summary> Transfers control to a target instruction (short form) if the first value is greater than the second value. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Bgt_Un"> <summary> Transfers control to a target instruction if the first value is greater than the second value, when comparing unsigned integer values or unordered float values. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Bgt_Un_S"> <summary> Transfers control to a target instruction (short form) if the first value is greater than the second value, when comparing unsigned integer values or unordered float values. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ble"> <summary> Transfers control to a target instruction if the first value is less than or equal to the second value. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ble_S"> <summary> Transfers control to a target instruction (short form) if the first value is less than or equal to the second value. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ble_Un"> <summary> Transfers control to a target instruction if the first value is less than or equal to the second value, when comparing unsigned integer values or unordered float values. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ble_Un_S"> <summary> Transfers control to a target instruction (short form) if the first value is less than or equal to the second value, when comparing unsigned integer values or unordered float values. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Blt"> <summary> Transfers control to a target instruction if the first value is less than the second value. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Blt_S"> <summary> Transfers control to a target instruction (short form) if the first value is less than the second value. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Blt_Un"> <summary> Transfers control to a target instruction if the first value is less than the second value, when comparing unsigned integer values or unordered float values. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Blt_Un_S"> <summary> Transfers control to a target instruction (short form) if the first value is less than the second value, when comparing unsigned integer values or unordered float values. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Bne_Un"> <summary> Transfers control to a target instruction when two unsigned integer values or unordered float values are not equal. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Bne_Un_S"> <summary> Transfers control to a target instruction (short form) when two unsigned integer values or unordered float values are not equal. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Box"> <summary> Converts a value type to an object reference (type O). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Br"> <summary> Unconditionally transfers control to a target instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Br_S"> <summary> Unconditionally transfers control to a target instruction (short form). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Break"> <summary> Signals the Common Language Infrastructure (CLI) to inform the debugger that a break point has been tripped. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Brfalse"> <summary> Transfers control to a target instruction if <paramref name="value" /> is false, a null reference (Nothing in Visual Basic), or zero. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Brfalse_S"> <summary> Transfers control to a target instruction if <paramref name="value" /> is false, a null reference, or zero. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Brtrue"> <summary> Transfers control to a target instruction if <paramref name="value" /> is true, not null, or non-zero. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Brtrue_S"> <summary> Transfers control to a target instruction (short form) if <paramref name="value" /> is true, not null, or non-zero. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Call"> <summary> Calls the method indicated by the passed method descriptor. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Calli"> <summary> Calls the method indicated on the evaluation stack (as a pointer to an entry point) with arguments described by a calling convention. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Callvirt"> <summary> Calls a late-bound method on an object, pushing the return value onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Castclass"> <summary> Attempts to cast an object passed by reference to the specified class. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ceq"> <summary> Compares two values. If they are equal, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Cgt"> <summary> Compares two values. If the first value is greater than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Cgt_Un"> <summary> Compares two unsigned or unordered values. If the first value is greater than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ckfinite"> <summary> Throws <see cref="T:System.ArithmeticException" /> if value is not a finite number. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Clt"> <summary> Compares two values. If the first value is less than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Clt_Un"> <summary> Compares the unsigned or unordered values <paramref name="value1" /> and <paramref name="value2" />. If <paramref name="value1" /> is less than <paramref name="value2" />, then the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Constrained"> <summary> Constrains the type on which a virtual method call is made. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_I"> <summary> Converts the value on top of the evaluation stack to native int. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_I1"> <summary> Converts the value on top of the evaluation stack to int8, then extends (pads) it to int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_I2"> <summary> Converts the value on top of the evaluation stack to int16, then extends (pads) it to int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_I4"> <summary> Converts the value on top of the evaluation stack to int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_I8"> <summary> Converts the value on top of the evaluation stack to int64. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I"> <summary> Converts the signed value on top of the evaluation stack to signed native int, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I_Un"> <summary> Converts the unsigned value on top of the evaluation stack to signed native int, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I1"> <summary> Converts the signed value on top of the evaluation stack to signed int8 and extends it to int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I1_Un"> <summary> Converts the unsigned value on top of the evaluation stack to signed int8 and extends it to int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I2"> <summary> Converts the signed value on top of the evaluation stack to signed int16 and extending it to int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I2_Un"> <summary> Converts the unsigned value on top of the evaluation stack to signed int16 and extends it to int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I4"> <summary> Converts the signed value on top of the evaluation stack to signed int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I4_Un"> <summary> Converts the unsigned value on top of the evaluation stack to signed int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I8"> <summary> Converts the signed value on top of the evaluation stack to signed int64, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I8_Un"> <summary> Converts the unsigned value on top of the evaluation stack to signed int64, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U"> <summary> Converts the signed value on top of the evaluation stack to unsigned native int, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U_Un"> <summary> Converts the unsigned value on top of the evaluation stack to unsigned native int, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U1"> <summary> Converts the signed value on top of the evaluation stack to unsigned int8 and extends it to int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U1_Un"> <summary> Converts the unsigned value on top of the evaluation stack to unsigned int8 and extends it to int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U2"> <summary> Converts the signed value on top of the evaluation stack to unsigned int16 and extends it to int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U2_Un"> <summary> Converts the unsigned value on top of the evaluation stack to unsigned int16 and extends it to int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U4"> <summary> Converts the signed value on top of the evaluation stack to unsigned int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U4_Un"> <summary> Converts the unsigned value on top of the evaluation stack to unsigned int32, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U8"> <summary> Converts the signed value on top of the evaluation stack to unsigned int64, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U8_Un"> <summary> Converts the unsigned value on top of the evaluation stack to unsigned int64, throwing <see cref="T:System.OverflowException" /> on overflow. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_R_Un"> <summary> Converts the unsigned integer value on top of the evaluation stack to float32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_R4"> <summary> Converts the value on top of the evaluation stack to float32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_R8"> <summary> Converts the value on top of the evaluation stack to float64. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_U"> <summary> Converts the value on top of the evaluation stack to unsigned native int, and extends it to native int. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_U1"> <summary> Converts the value on top of the evaluation stack to unsigned int8, and extends it to int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_U2"> <summary> Converts the value on top of the evaluation stack to unsigned int16, and extends it to int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_U4"> <summary> Converts the value on top of the evaluation stack to unsigned int32, and extends it to int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Conv_U8"> <summary> Converts the value on top of the evaluation stack to unsigned int64, and extends it to int64. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Cpblk"> <summary> Copies a specified number bytes from a source address to a destination address. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Cpobj"> <summary> Copies the value type located at the address of an object (type &, * or native int) to the address of the destination object (type &, * or native int). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Div"> <summary> Divides two values and pushes the result as a floating-point (type F) or quotient (type int32) onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Div_Un"> <summary> Divides two unsigned integer values and pushes the result (int32) onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Dup"> <summary> Copies the current topmost value on the evaluation stack, and then pushes the copy onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Endfilter"> <summary> Transfers control from the filter clause of an exception back to the Common Language Infrastructure (CLI) exception handler. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Endfinally"> <summary> Transfers control from the fault or finally clause of an exception block back to the Common Language Infrastructure (CLI) exception handler. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Initblk"> <summary> Initializes a specified block of memory at a specific address to a given size and initial value. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Initobj"> <summary> Initializes each field of the value type at a specified address to a null reference or a 0 of the appropriate primitive type. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Isinst"> <summary> Tests whether an object reference (type O) is an instance of a particular class. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Jmp"> <summary> Exits current method and jumps to specified method. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldarg"> <summary> Loads an argument (referenced by a specified index value) onto the stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldarg_0"> <summary> Loads the argument at index 0 onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldarg_1"> <summary> Loads the argument at index 1 onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldarg_2"> <summary> Loads the argument at index 2 onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldarg_3"> <summary> Loads the argument at index 3 onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldarg_S"> <summary> Loads the argument (referenced by a specified short form index) onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldarga"> <summary> Load an argument address onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldarga_S"> <summary> Load an argument address, in short form, onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4"> <summary> Pushes a supplied value of type int32 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_0"> <summary> Pushes the integer value of 0 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_1"> <summary> Pushes the integer value of 1 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_2"> <summary> Pushes the integer value of 2 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_3"> <summary> Pushes the integer value of 3 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_4"> <summary> Pushes the integer value of 4 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_5"> <summary> Pushes the integer value of 5 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_6"> <summary> Pushes the integer value of 6 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_7"> <summary> Pushes the integer value of 7 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_8"> <summary> Pushes the integer value of 8 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_M1"> <summary> Pushes the integer value of -1 onto the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_S"> <summary> Pushes the supplied int8 value onto the evaluation stack as an int32, short form. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_I8"> <summary> Pushes a supplied value of type int64 onto the evaluation stack as an int64. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_R4"> <summary> Pushes a supplied value of type float32 onto the evaluation stack as type F (float). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldc_R8"> <summary> Pushes a supplied value of type float64 onto the evaluation stack as type F (float). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem"> <summary> Loads the element at a specified array index onto the top of the evaluation stack as the type specified in the instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_I"> <summary> Loads the element with type native int at a specified array index onto the top of the evaluation stack as a native int. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_I1"> <summary> Loads the element with type int8 at a specified array index onto the top of the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_I2"> <summary> Loads the element with type int16 at a specified array index onto the top of the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_I4"> <summary> Loads the element with type int32 at a specified array index onto the top of the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_I8"> <summary> Loads the element with type int64 at a specified array index onto the top of the evaluation stack as an int64. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_R4"> <summary> Loads the element with type float32 at a specified array index onto the top of the evaluation stack as type F (float). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_R8"> <summary> Loads the element with type float64 at a specified array index onto the top of the evaluation stack as type F (float). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_Ref"> <summary> Loads the element containing an object reference at a specified array index onto the top of the evaluation stack as type O (object reference). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_U1"> <summary> Loads the element with type unsigned int8 at a specified array index onto the top of the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_U2"> <summary> Loads the element with type unsigned int16 at a specified array index onto the top of the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelem_U4"> <summary> Loads the element with type unsigned int32 at a specified array index onto the top of the evaluation stack as an int32. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldelema"> <summary> Loads the address of the array element at a specified array index onto the top of the evaluation stack as type & (managed pointer). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldfld"> <summary> Finds the value of a field in the object whose reference is currently on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldflda"> <summary> Finds the address of a field in the object whose reference is currently on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldftn"> <summary> Pushes an unmanaged pointer (type native int) to the native code implementing a specific method onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_I"> <summary> Loads a value of type native int as a native int onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_I1"> <summary> Loads a value of type int8 as an int32 onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_I2"> <summary> Loads a value of type int16 as an int32 onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_I4"> <summary> Loads a value of type int32 as an int32 onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_I8"> <summary> Loads a value of type int64 as an int64 onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_R4"> <summary> Loads a value of type float32 as a type F (float) onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_R8"> <summary> Loads a value of type float64 as a type F (float) onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_Ref"> <summary> Loads an object reference as a type O (object reference) onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_U1"> <summary> Loads a value of type unsigned int8 as an int32 onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_U2"> <summary> Loads a value of type unsigned int16 as an int32 onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldind_U4"> <summary> Loads a value of type unsigned int32 as an int32 onto the evaluation stack indirectly. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldlen"> <summary> Pushes the number of elements of a zero-based, one-dimensional array onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldloc"> <summary> Loads the local variable at a specific index onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldloc_0"> <summary> Loads the local variable at index 0 onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldloc_1"> <summary> Loads the local variable at index 1 onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldloc_2"> <summary> Loads the local variable at index 2 onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldloc_3"> <summary> Loads the local variable at index 3 onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldloc_S"> <summary> Loads the local variable at a specific index onto the evaluation stack, short form. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldloca"> <summary> Loads the address of the local variable at a specific index onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldloca_S"> <summary> Loads the address of the local variable at a specific index onto the evaluation stack, short form. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldnull"> <summary> Pushes a null reference (type O) onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldobj"> <summary> Copies the value type object pointed to by an address to the top of the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldsfld"> <summary> Pushes the value of a static field onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldsflda"> <summary> Pushes the address of a static field onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldstr"> <summary> Pushes a new object reference to a string literal stored in the metadata. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldtoken"> <summary> Converts a metadata token to its runtime representation, pushing it onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ldvirtftn"> <summary> Pushes an unmanaged pointer (type native int) to the native code implementing a particular virtual method associated with a specified object onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Leave"> <summary> Exits a protected region of code, unconditionally transferring control to a specific target instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Leave_S"> <summary> Exits a protected region of code, unconditionally transferring control to a target instruction (short form). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Localloc"> <summary> Allocates a certain number of bytes from the local dynamic memory pool and pushes the address (a transient pointer, type *) of the first allocated byte onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Mkrefany"> <summary> Pushes a typed reference to an instance of a specific type onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Mul"> <summary> Multiplies two values and pushes the result on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Mul_Ovf"> <summary> Multiplies two integer values, performs an overflow check, and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Mul_Ovf_Un"> <summary> Multiplies two unsigned integer values, performs an overflow check, and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Neg"> <summary> Negates a value and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Newarr"> <summary> Pushes an object reference to a new zero-based, one-dimensional array whose elements are of a specific type onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Newobj"> <summary> Creates a new object or a new instance of a value type, pushing an object reference (type O) onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Nop"> <summary> Fills space if opcodes are patched. No meaningful operation is performed although a processing cycle can be consumed. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Not"> <summary> Computes the bitwise complement of the integer value on top of the stack and pushes the result onto the evaluation stack as the same type. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Or"> <summary> Compute the bitwise complement of the two integer values on top of the stack and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Pop"> <summary> Removes the value currently on top of the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Prefix1"> <summary> This is a reserved instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Prefix2"> <summary> This is a reserved instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Prefix3"> <summary> This is a reserved instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Prefix4"> <summary> This is a reserved instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Prefix5"> <summary> This is a reserved instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Prefix6"> <summary> This is a reserved instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Prefix7"> <summary> This is a reserved instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Prefixref"> <summary> This is a reserved instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Readonly"> <summary> Specifies that the subsequent array address operation performs no type check at run time, and that it returns a managed pointer whose mutability is restricted. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Refanytype"> <summary> Retrieves the type token embedded in a typed reference. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Refanyval"> <summary> Retrieves the address (type &) embedded in a typed reference. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Rem"> <summary> Divides two values and pushes the remainder onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Rem_Un"> <summary> Divides two unsigned values and pushes the remainder onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Ret"> <summary> Returns from the current method, pushing a return value (if present) from the callee's evaluation stack onto the caller's evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Rethrow"> <summary> Rethrows the current exception. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Shl"> <summary> Shifts an integer value to the left (in zeroes) by a specified number of bits, pushing the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Shr"> <summary> Shifts an integer value (in sign) to the right by a specified number of bits, pushing the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Shr_Un"> <summary> Shifts an unsigned integer value (in zeroes) to the right by a specified number of bits, pushing the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Sizeof"> <summary> Pushes the size, in bytes, of a supplied value type onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Starg"> <summary> Stores the value on top of the evaluation stack in the argument slot at a specified index. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Starg_S"> <summary> Stores the value on top of the evaluation stack in the argument slot at a specified index, short form. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stelem"> <summary> Replaces the array element at a given index with the value on the evaluation stack, whose type is specified in the instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stelem_I"> <summary> Replaces the array element at a given index with the native int value on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stelem_I1"> <summary> Replaces the array element at a given index with the int8 value on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stelem_I2"> <summary> Replaces the array element at a given index with the int16 value on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stelem_I4"> <summary> Replaces the array element at a given index with the int32 value on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stelem_I8"> <summary> Replaces the array element at a given index with the int64 value on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stelem_R4"> <summary> Replaces the array element at a given index with the float32 value on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stelem_R8"> <summary> Replaces the array element at a given index with the float64 value on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stelem_Ref"> <summary> Replaces the array element at a given index with the object ref value (type O) on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stfld"> <summary> Replaces the value stored in the field of an object reference or pointer with a new value. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stind_I"> <summary> Stores a value of type native int at a supplied address. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stind_I1"> <summary> Stores a value of type int8 at a supplied address. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stind_I2"> <summary> Stores a value of type int16 at a supplied address. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stind_I4"> <summary> Stores a value of type int32 at a supplied address. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stind_I8"> <summary> Stores a value of type int64 at a supplied address. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stind_R4"> <summary> Stores a value of type float32 at a supplied address. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stind_R8"> <summary> Stores a value of type float64 at a supplied address. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stind_Ref"> <summary> Stores a object reference value at a supplied address. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stloc"> <summary> Pops the current value from the top of the evaluation stack and stores it in a the local variable list at a specified index. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stloc_0"> <summary> Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 0. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stloc_1"> <summary> Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 1. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stloc_2"> <summary> Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 2. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stloc_3"> <summary> Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 3. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stloc_S"> <summary> Pops the current value from the top of the evaluation stack and stores it in a the local variable list at <paramref name="index" /> (short form). </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stobj"> <summary> Copies a value of a specified type from the evaluation stack into a supplied memory address. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Stsfld"> <summary> Replaces the value of a static field with a value from the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Sub"> <summary> Subtracts one value from another and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Sub_Ovf"> <summary> Subtracts one integer value from another, performs an overflow check, and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Sub_Ovf_Un"> <summary> Subtracts one unsigned integer value from another, performs an overflow check, and pushes the result onto the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Switch"> <summary> Implements a jump table. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Tailcall"> <summary> Performs a postfixed method call instruction such that the current method's stack frame is removed before the actual call instruction is executed. </summary> </member> <member name="M:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode)"> <summary> Returns true or false if the supplied opcode takes a single byte argument. </summary> <returns>True or false. </returns> <param name="inst"> An instance of an Opcode object. </param> </member> <member name="F:System.Reflection.Emit.OpCodes.Throw"> <summary> Throws the exception object currently on the evaluation stack. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Unaligned"> <summary> Indicates that an address currently atop the evaluation stack might not be aligned to the natural size of the immediately following ldind, stind, ldfld, stfld, ldobj, stobj, initblk, or cpblk instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Unbox"> <summary> Converts the boxed representation of a value type to its unboxed form. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Unbox_Any"> <summary> Converts the boxed representation of a type specified in the instruction to its unboxed form. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Volatile"> <summary> Specifies that an address currently atop the evaluation stack might be volatile, and the results of reading that location cannot be cached or that multiple stores to that location cannot be suppressed. </summary> </member> <member name="F:System.Reflection.Emit.OpCodes.Xor"> <summary> Computes the bitwise XOR of the top two values on the evaluation stack, pushing the result onto the evaluation stack. </summary> </member> <member name="T:System.Reflection.Emit.OpCodeType"> <summary> Describes the types of the Microsoft intermediate language (MSIL) instructions. </summary> </member> <member name="F:System.Reflection.Emit.OpCodeType.Annotation"> <summary> This enumerator value is reserved and should not be used. </summary> </member> <member name="F:System.Reflection.Emit.OpCodeType.Macro"> <summary> These are Microsoft intermediate language (MSIL) instructions that are used as a synonym for other MSIL instructions. For example, ldarg.0 represents the ldarg instruction with an argument of 0. </summary> </member> <member name="F:System.Reflection.Emit.OpCodeType.Nternal"> <summary> Describes a reserved Microsoft intermediate language (MSIL) instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodeType.Objmodel"> <summary> Describes a Microsoft intermediate language (MSIL) instruction that applies to objects. </summary> </member> <member name="F:System.Reflection.Emit.OpCodeType.Prefix"> <summary> Describes a prefix instruction that modifies the behavior of the following instruction. </summary> </member> <member name="F:System.Reflection.Emit.OpCodeType.Primitive"> <summary> Describes a built-in instruction. </summary> </member> <member name="T:System.Reflection.Emit.OperandType"> <summary> Describes the operand type of Microsoft intermediate language (MSIL) instruction. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineBrTarget"> <summary> The operand is a 32-bit integer branch target. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineField"> <summary> The operand is a 32-bit metadata token. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineI"> <summary> The operand is a 32-bit integer. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineI8"> <summary> The operand is a 64-bit integer. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineMethod"> <summary> The operand is a 32-bit metadata token. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineNone"> <summary> No operand. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlinePhi"> <summary> The operand is reserved and should not be used. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineR"> <summary> The operand is a 64-bit IEEE floating point number. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineSig"> <summary> The operand is a 32-bit metadata signature token. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineString"> <summary> The operand is a 32-bit metadata string token. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineSwitch"> <summary> The operand is the 32-bit integer argument to a switch instruction. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineTok"> <summary> The operand is a FieldRef, MethodRef, or TypeRef token. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineType"> <summary> The operand is a 32-bit metadata token. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.InlineVar"> <summary> The operand is 16-bit integer containing the ordinal of a local variable or an argument. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.ShortInlineBrTarget"> <summary> The operand is an 8-bit integer branch target. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.ShortInlineI"> <summary> The operand is an 8-bit integer. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.ShortInlineR"> <summary> The operand is a 32-bit IEEE floating point number. </summary> </member> <member name="F:System.Reflection.Emit.OperandType.ShortInlineVar"> <summary> The operand is an 8-bit integer containing the ordinal of a local variable or an argumenta. </summary> </member> <member name="T:System.Reflection.Emit.PackingSize"> <summary> Specifies one of two factors that determine the memory alignment of fields when a type is marshaled. </summary> </member> <member name="F:System.Reflection.Emit.PackingSize.Unspecified"> <summary> The packing size is not specified. </summary> </member> <member name="F:System.Reflection.Emit.PackingSize.Size1"> <summary> The packing size is 1 byte. </summary> </member> <member name="F:System.Reflection.Emit.PackingSize.Size2"> <summary> The packing size is 2 bytes. </summary> </member> <member name="F:System.Reflection.Emit.PackingSize.Size4"> <summary> The packing size is 4 bytes. </summary> </member> <member name="F:System.Reflection.Emit.PackingSize.Size8"> <summary> The packing size is 8 bytes. </summary> </member> <member name="F:System.Reflection.Emit.PackingSize.Size16"> <summary> The packing size is 16 bytes. </summary> </member> <member name="F:System.Reflection.Emit.PackingSize.Size32"> <summary> The packing size is 32 bytes. </summary> </member> <member name="F:System.Reflection.Emit.PackingSize.Size64"> <summary> The packing size is 64 bytes. </summary> </member> <member name="F:System.Reflection.Emit.PackingSize.Size128"> <summary> The packing size is 128 bytes. </summary> </member> <member name="T:System.Reflection.Emit.ParameterBuilder"> <summary> Creates or associates parameter information. </summary> </member> <member name="P:System.Reflection.Emit.ParameterBuilder.Attributes"> <summary> Retrieves the attributes for this parameter. </summary> <returns> Read-only. Retrieves the attributes for this parameter. </returns> </member> <member name="M:System.Reflection.Emit.ParameterBuilder.GetToken"> <summary> Retrieves the token for this parameter. </summary> <returns> Returns the token for this parameter. </returns> </member> <member name="P:System.Reflection.Emit.ParameterBuilder.IsIn"> <summary> Retrieves whether this is an input parameter. </summary> <returns> Read-only. Retrieves whether this is an input parameter. </returns> </member> <member name="P:System.Reflection.Emit.ParameterBuilder.IsOptional"> <summary> Retrieves whether this parameter is optional. </summary> <returns> Read-only. Specifies whether this parameter is optional. </returns> </member> <member name="P:System.Reflection.Emit.ParameterBuilder.IsOut"> <summary> Retrieves whether this parameter is an output parameter. </summary> <returns> Read-only. Retrieves whether this parameter is an output parameter. </returns> </member> <member name="P:System.Reflection.Emit.ParameterBuilder.Name"> <summary> Retrieves the name of this parameter. </summary> <returns> Read-only. Retrieves the name of this parameter. </returns> </member> <member name="P:System.Reflection.Emit.ParameterBuilder.Position"> <summary> Retrieves the signature position for this parameter. </summary> <returns> Read-only. Retrieves the signature position for this parameter. </returns> </member> <member name="M:System.Reflection.Emit.ParameterBuilder.SetConstant(System.Object)"> <summary> Sets the default value of the parameter. </summary> <param name="defaultValue"> The default value of this parameter. </param> <exception cref="T:System.ArgumentException"> The parameter is not one of the supported types. -or- The type of <paramref name="defaultValue" /> does not match the type of the parameter. -or- The parameter is of type <see cref="T:System.Object" /> or other reference type, and <paramref name="defaultValue" /> is not null. </exception> </member> <member name="M:System.Reflection.Emit.ParameterBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Set a custom attribute using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ParameterBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Set a custom attribute using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class to define the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ParameterBuilder.SetMarshal(System.Reflection.Emit.UnmanagedMarshal)"> <summary> Specifies the marshaling for this parameter. </summary> <param name="unmanagedMarshal"> The marshaling information for this parameter. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="unmanagedMarshal" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.ParameterBuilder.System#Runtime#InteropServices#_ParameterBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.ParameterBuilder.System#Runtime#InteropServices#_ParameterBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.ParameterBuilder.System#Runtime#InteropServices#_ParameterBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.ParameterBuilder.System#Runtime#InteropServices#_ParameterBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="T:System.Reflection.Emit.ParameterToken"> <summary> The ParameterToken struct is an opaque representation of the token returned by the metadata to represent a parameter. </summary> </member> <member name="F:System.Reflection.Emit.ParameterToken.Empty"> <summary> The default ParameterToken with <see cref="P:System.Reflection.Emit.ParameterToken.Token" /> value 0. </summary> </member> <member name="M:System.Reflection.Emit.ParameterToken.Equals(System.Object)"> <summary> Checks if the given object is an instance of ParameterToken and is equal to this instance. </summary> <returns>true if <paramref name="obj" /> is an instance of ParameterToken and equals the current instance; otherwise, false. </returns> <param name="obj"> The object to compare to this object. </param> </member> <member name="M:System.Reflection.Emit.ParameterToken.Equals(System.Reflection.Emit.ParameterToken)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.ParameterToken" />. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Reflection.Emit.ParameterToken" /> to compare to the current instance. </param> </member> <member name="M:System.Reflection.Emit.ParameterToken.GetHashCode"> <summary> Generates the hash code for this parameter. </summary> <returns> Returns the hash code for this parameter. </returns> </member> <member name="M:System.Reflection.Emit.ParameterToken.op_Equality(System.Reflection.Emit.ParameterToken,System.Reflection.Emit.ParameterToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.ParameterToken" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.ParameterToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.ParameterToken" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Reflection.Emit.ParameterToken.op_Inequality(System.Reflection.Emit.ParameterToken,System.Reflection.Emit.ParameterToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.ParameterToken" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.ParameterToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.ParameterToken" /> to compare to <paramref name="a" />. </param> </member> <member name="P:System.Reflection.Emit.ParameterToken.Token"> <summary> Retrieves the metadata token for this parameter. </summary> <returns> Read-only. Retrieves the metadata token for this parameter. </returns> </member> <member name="T:System.Reflection.Emit.PEFileKinds"> <summary> Specifies the type of the portable executable (PE) file. </summary> </member> <member name="F:System.Reflection.Emit.PEFileKinds.Dll"> <summary> The portable executable (PE) file is a DLL. </summary> </member> <member name="F:System.Reflection.Emit.PEFileKinds.ConsoleApplication"> <summary> The application is a console (not a Windows-based) application. </summary> </member> <member name="F:System.Reflection.Emit.PEFileKinds.WindowApplication"> <summary> The application is a Windows-based application. </summary> </member> <member name="T:System.Reflection.Emit.PropertyBuilder"> <summary> Defines the properties for a type. </summary> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.AddOtherMethod(System.Reflection.Emit.MethodBuilder)"> <summary> Adds one of the other methods associated with this property. </summary> <param name="mdBuilder"> A MethodBuilder object that represents the other method. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mdBuilder" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="P:System.Reflection.Emit.PropertyBuilder.Attributes"> <summary> Gets the attributes for this property. </summary> <returns> Attributes of this property. </returns> </member> <member name="P:System.Reflection.Emit.PropertyBuilder.CanRead"> <summary> Gets a value indicating whether the property can be read. </summary> <returns>true if this property can be read; otherwise, false. </returns> </member> <member name="P:System.Reflection.Emit.PropertyBuilder.CanWrite"> <summary> Gets a value indicating whether the property can be written to. </summary> <returns>true if this property can be written to; otherwise, false. </returns> </member> <member name="P:System.Reflection.Emit.PropertyBuilder.DeclaringType"> <summary> Gets the class that declares this member. </summary> <returns> The Type object for the class that declares this member. </returns> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.GetAccessors(System.Boolean)"> <summary> Returns an array of the public and non-public get and set accessors on this property. </summary> <returns> An array of type MethodInfo containing the matching public or non-public accessors, or an empty array if matching accessors do not exist on this property. </returns> <param name="nonPublic"> Indicates whether non-public methods should be returned in the MethodInfo array. true if non-public methods are to be included; otherwise, false. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.GetCustomAttributes(System.Boolean)"> <summary> Returns an array of all the custom attributes for this property. </summary> <returns> An array of all the custom attributes. </returns> <param name="inherit"> If true, walks up this property's inheritance chain to find the custom attributes </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Returns an array of custom attributes identified by <see cref="T:System.Type" />. </summary> <returns> An array of custom attributes defined on this reflected member, or null if no attributes are defined on this member. </returns> <param name="attributeType"> An array of custom attributes identified by type. </param> <param name="inherit"> If true, walks up this property's inheritance chain to find the custom attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.GetGetMethod(System.Boolean)"> <summary> Returns the public and non-public get accessor for this property. </summary> <returns> A MethodInfo object representing the get accessor for this property, if <paramref name="nonPublic" /> is true. Returns null if <paramref name="nonPublic" /> is false and the get accessor is non-public, or if <paramref name="nonPublic" /> is true but no get accessors exist. </returns> <param name="nonPublic"> Indicates whether non-public get accessors should be returned. true if non-public methods are to be included; otherwise, false. </param> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.GetIndexParameters"> <summary> Returns an array of all the index parameters for the property. </summary> <returns> An array of type ParameterInfo containing the parameters for the indexes. </returns> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.GetSetMethod(System.Boolean)"> <summary> Returns the set accessor for this property. </summary> <returns> Value Condition A <see cref="T:System.Reflection.MethodInfo" /> object representing the Set method for this property. The set accessor is public. <paramref name="nonPublic" /> is true and non-public methods can be returned. null <paramref name="nonPublic" /> is true, but the property is read-only. <paramref name="nonPublic" /> is false and the set accessor is non-public. </returns> <param name="nonPublic"> Indicates whether the accessor should be returned if it is non-public. true if non-public methods are to be included; otherwise, false. </param> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.GetValue(System.Object,System.Object[])"> <summary> Gets the value of the indexed property by calling the property's getter method. </summary> <returns> The value of the specified indexed property. </returns> <param name="obj"> The object whose property value will be returned. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Gets the value of a property having the specified binding, index, and CultureInfo. </summary> <returns> The property value for <paramref name="obj" />. </returns> <param name="obj"> The object whose property value will be returned. </param> <param name="invokeAttr"> The invocation attribute. This must be a bit flag from BindingFlags : InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member is to be invoked, the Static flag of BindingFlags must be set. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> <param name="culture"> The CultureInfo object that represents the culture for which the resource is to be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.IsDefined(System.Type,System.Boolean)"> <summary> Indicates whether one or more instance of <paramref name="attributeType" /> is defined on this property. </summary> <returns>true if one or more instance of <paramref name="attributeType" /> is defined on this property; otherwise false. </returns> <param name="attributeType"> The Type object to which the custom attributes are applied. </param> <param name="inherit"> Specifies whether to walk up this property's inheritance chain to find the custom attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="P:System.Reflection.Emit.PropertyBuilder.Module"> <summary> Gets the module in which the type that declares the current property is being defined. </summary> <returns> The <see cref="T:System.Reflection.Module" /> in which the type that declares the current property is defined. </returns> </member> <member name="P:System.Reflection.Emit.PropertyBuilder.Name"> <summary> Gets the name of this member. </summary> <returns> A <see cref="T:System.String" /> containing the name of this member. </returns> </member> <member name="P:System.Reflection.Emit.PropertyBuilder.PropertyToken"> <summary> Retrieves the token for this property. </summary> <returns> Read-only. Retrieves the token for this property. </returns> </member> <member name="P:System.Reflection.Emit.PropertyBuilder.PropertyType"> <summary> Gets the type of the field of this property. </summary> <returns> The type of this property. </returns> </member> <member name="P:System.Reflection.Emit.PropertyBuilder.ReflectedType"> <summary> Gets the class object that was used to obtain this instance of MemberInfo. </summary> <returns> The Type object through which this MemberInfo object was obtained. </returns> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.SetConstant(System.Object)"> <summary> Sets the default value of this property. </summary> <param name="defaultValue"> The default value of this property. </param> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> <exception cref="T:System.ArgumentException"> The property is not one of the supported types. -or- The type of <paramref name="defaultValue" /> does not match the type of the property. -or- The property is of type <see cref="T:System.Object" /> or other reference type, and <paramref name="defaultValue" /> is not null. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Set a custom attribute using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Set a custom attribute using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class to define the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="customBuilder" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> if <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.SetGetMethod(System.Reflection.Emit.MethodBuilder)"> <summary> Sets the method that gets the property value. </summary> <param name="mdBuilder"> A MethodBuilder object that represents the method that gets the property value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mdBuilder" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.SetSetMethod(System.Reflection.Emit.MethodBuilder)"> <summary> Sets the method that sets the property value. </summary> <param name="mdBuilder"> A MethodBuilder object that represents the method that sets the property value. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mdBuilder" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.SetValue(System.Object,System.Object,System.Object[])"> <summary> Sets the value of the property with optional index values for index properties. </summary> <param name="obj"> The object whose property value will be set. </param> <param name="value"> The new value for this property. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Sets the property value for the given object to the given value. </summary> <param name="obj"> The object whose property value will be returned. </param> <param name="value"> The new value for this property. </param> <param name="invokeAttr"> The invocation attribute. This must be a bit flag from BindingFlags : InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member is to be invoked, the Static flag of BindingFlags must be set. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> <param name="culture"> The CultureInfo object that represents the culture for which the resource is to be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.System#Runtime#InteropServices#_PropertyBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.System#Runtime#InteropServices#_PropertyBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.System#Runtime#InteropServices#_PropertyBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="M:System.Reflection.Emit.PropertyBuilder.System#Runtime#InteropServices#_PropertyBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> The method is called late-bound using the COM IDispatch interface. </exception> </member> <member name="T:System.Reflection.Emit.PropertyToken"> <summary> The PropertyToken struct is an opaque representation of the Token returned by the metadata to represent a property. </summary> </member> <member name="F:System.Reflection.Emit.PropertyToken.Empty"> <summary> The default PropertyToken with <see cref="P:System.Reflection.Emit.PropertyToken.Token" /> value 0. </summary> </member> <member name="M:System.Reflection.Emit.PropertyToken.Equals(System.Object)"> <summary> Checks if the given object is an instance of PropertyToken and is equal to this instance. </summary> <returns>true if <paramref name="obj" /> is an instance of PropertyToken and equals the current instance; otherwise, false. </returns> <param name="obj"> The object to this object. </param> </member> <member name="M:System.Reflection.Emit.PropertyToken.Equals(System.Reflection.Emit.PropertyToken)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.PropertyToken" />. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Reflection.Emit.PropertyToken" /> to compare to the current instance. </param> </member> <member name="M:System.Reflection.Emit.PropertyToken.GetHashCode"> <summary> Generates the hash code for this property. </summary> <returns> Returns the hash code for this property. </returns> </member> <member name="M:System.Reflection.Emit.PropertyToken.op_Equality(System.Reflection.Emit.PropertyToken,System.Reflection.Emit.PropertyToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.PropertyToken" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.PropertyToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.PropertyToken" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Reflection.Emit.PropertyToken.op_Inequality(System.Reflection.Emit.PropertyToken,System.Reflection.Emit.PropertyToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.PropertyToken" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.PropertyToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.PropertyToken" /> to compare to <paramref name="a" />. </param> </member> <member name="P:System.Reflection.Emit.PropertyToken.Token"> <summary> Retrieves the metadata token for this property. </summary> <returns> Read-only. Retrieves the metadata token for this instance. </returns> </member> <member name="T:System.Reflection.Emit.SignatureHelper"> <summary> Provides methods for building signatures. </summary> </member> <member name="M:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type)"> <summary> Adds an argument to the signature. </summary> <param name="clsArgument"> The type of the argument. </param> <exception cref="T:System.ArgumentException"> The signature has already been finished. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="clsArgument" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type,System.Boolean)"> <summary> Adds an argument of the specified type to the signature, specifying whether the argument is pinned. </summary> <param name="argument"> The argument type. </param> <param name="pinned">true if the argument is pinned; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="argument" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type,System.Type[],System.Type[])"> <summary> Adds an argument to the signature, with the specified custom modifiers. </summary> <param name="argument"> The argument type. </param> <param name="requiredCustomModifiers"> An array of types representing the required custom modifiers for the argument, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the argument has no required custom modifiers, specify null. </param> <param name="optionalCustomModifiers"> An array of types representing the optional custom modifiers for the argument, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the argument has no optional custom modifiers, specify null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="argument" /> is null. -or- An element of <paramref name="requiredCustomModifiers" /> or <paramref name="optionalCustomModifiers" /> is null. </exception> <exception cref="T:System.ArgumentException"> The signature has already been finished. -or- One of the specified custom modifiers is an array type. -or- One of the specified custom modifiers is an open generic type. That is, the <see cref="P:System.Type.ContainsGenericParameters" /> property is true for the custom modifier. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[],System.Type[][],System.Type[][])"> <summary> Adds a set of arguments to the signature, with the specified custom modifiers. </summary> <param name="arguments"> The types of the arguments to be added. </param> <param name="requiredCustomModifiers"> An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding argument, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If a particular argument has no required custom modifiers, specify null instead of an array of types. If none of the arguments have required custom modifiers, specify null instead of an array of arrays. </param> <param name="optionalCustomModifiers"> An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding argument, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If a particular argument has no optional custom modifiers, specify null instead of an array of types. If none of the arguments have optional custom modifiers, specify null instead of an array of arrays. </param> <exception cref="T:System.ArgumentNullException"> An element of <paramref name="arguments" /> is null. -or- One of the specified custom modifiers is null. (However, null can be specified for the array of custom modifiers for any argument.) </exception> <exception cref="T:System.ArgumentException"> The signature has already been finished. -or- One of the specified custom modifiers is an array type. -or- One of the specified custom modifiers is an open generic type. That is, the <see cref="P:System.Type.ContainsGenericParameters" /> property is true for the custom modifier. -or- The size of <paramref name="requiredCustomModifiers" /> or <paramref name="optionalCustomModifiers" /> does not equal the size of <paramref name="arguments" />. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.AddSentinel"> <summary> Marks the end of a vararg fixed part. This is only used if the caller is creating a vararg signature call site. </summary> </member> <member name="M:System.Reflection.Emit.SignatureHelper.Equals(System.Object)"> <summary> Checks if this instance is equal to the given object. </summary> <returns>true if the given object is a SignatureHelper and represents the same signature; otherwise, false. </returns> <param name="obj"> The object with which this instance should be compared. </param> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module)"> <summary> Returns a signature helper for a field. </summary> <returns> The SignatureHelper object for a field. </returns> <param name="mod"> The dynamic module that contains the field for which the SignatureHelper is requested. </param> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetHashCode"> <summary> Creates and returns a hash code for this instance. </summary> <returns> Returns the hash code based on the name. </returns> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper"> <summary> Returns a signature helper for a local variable. </summary> <returns> A <see cref="T:System.Reflection.Emit.SignatureHelper" /> for a local variable. </returns> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module)"> <summary> Returns a signature helper for a local variable. </summary> <returns> The SignatureHelper object for a local variable. </returns> <param name="mod"> The dynamic module that contains the local variable for which the SignatureHelper is requested. </param> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions,System.Type)"> <summary> Returns a signature helper for a method given the method's calling convention and return type. </summary> <returns> The SignatureHelper object for a method. </returns> <param name="callingConvention"> The calling convention of the method. </param> <param name="returnType"> The return type of the method, or null for a void return type (Sub procedure in Visual Basic). </param> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module,System.Reflection.CallingConventions,System.Type)"> <summary> Returns a signature helper for a method given the method's module, calling convention, and return type. </summary> <returns> The SignatureHelper object for a method. </returns> <param name="mod"> The <see cref="T:System.Reflection.Emit.ModuleBuilder" /> that contains the method for which the SignatureHelper is requested. </param> <param name="callingConvention"> The calling convention of the method. </param> <param name="returnType"> The return type of the method, or null for a void return type (Sub procedure in Visual Basic). </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mod" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="mod" /> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder" />. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module,System.Runtime.InteropServices.CallingConvention,System.Type)"> <summary> Returns a signature helper for a method given the method's module, unmanaged calling convention, and return type. </summary> <returns> The SignatureHelper object for a method. </returns> <param name="mod"> The <see cref="T:System.Reflection.Emit.ModuleBuilder" /> that contains the method for which the SignatureHelper is requested. </param> <param name="unmanagedCallConv"> The unmanaged calling convention of the method. </param> <param name="returnType"> The return type of the method, or null for a void return type (Sub procedure in Visual Basic). </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mod" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="mod" /> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder" />. -or- <paramref name="unmanagedCallConv" /> is an unknown unmanaged calling convention. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module,System.Type,System.Type[])"> <summary> Returns a signature helper for a method with a standard calling convention, given the method's module, return type, and argument types. </summary> <returns> The SignatureHelper object for a method. </returns> <param name="mod"> The <see cref="T:System.Reflection.Emit.ModuleBuilder" /> that contains the method for which the SignatureHelper is requested. </param> <param name="returnType"> The return type of the method, or null for a void return type (Sub procedure in Visual Basic). </param> <param name="parameterTypes"> The types of the arguments of the method, or null if the method has no arguments. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mod" /> is null. -or- An element of <paramref name="parameterTypes" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="mod" /> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder" />. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Runtime.InteropServices.CallingConvention,System.Type)"> <summary> Returns a signature helper for a method given the method's unmanaged calling convention and return type. </summary> <returns> The SignatureHelper object for a method. </returns> <param name="unmanagedCallingConvention"> The unmanaged calling convention of the method. </param> <param name="returnType"> The return type of the method, or null for a void return type (Sub procedure in Visual Basic). </param> <exception cref="T:System.ArgumentException"> <paramref name="unmanagedCallConv" /> is an unknown unmanaged calling convention. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetPropertySigHelper(System.Reflection.Module,System.Type,System.Type[])"> <summary> Returns a signature helper for a property, given the dynamic module that contains the property, the property type, and the property arguments. </summary> <returns> A <see cref="T:System.Reflection.Emit.SignatureHelper" /> object for a property. </returns> <param name="mod"> The <see cref="T:System.Reflection.Emit.ModuleBuilder" /> that contains the property for which the <see cref="T:System.Reflection.Emit.SignatureHelper" /> is requested. </param> <param name="returnType"> The property type. </param> <param name="parameterTypes"> The argument types, or null if the property has no arguments. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mod" /> is null. -or- An element of <paramref name="parameterTypes" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="mod" /> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder" />. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetPropertySigHelper(System.Reflection.Module,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])"> <summary> Returns a signature helper for a property, given the dynamic module that contains the property, the property type, the property arguments, and custom modifiers for the return type and arguments. </summary> <returns> A <see cref="T:System.Reflection.Emit.SignatureHelper" /> object for a property. </returns> <param name="mod"> The <see cref="T:System.Reflection.Emit.ModuleBuilder" /> that contains the property for which the <see cref="T:System.Reflection.Emit.SignatureHelper" /> is requested. </param> <param name="returnType"> The property type. </param> <param name="requiredReturnTypeCustomModifiers"> An array of types representing the required custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the return type has no required custom modifiers, specify null. </param> <param name="optionalReturnTypeCustomModifiers"> An array of types representing the optional custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the return type has no optional custom modifiers, specify null. </param> <param name="parameterTypes"> The types of the property's arguments, or null if the property has no arguments. </param> <param name="requiredParameterTypeCustomModifiers"> An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding argument of the property. If a particular argument has no required custom modifiers, specify null instead of an array of types. If the property has no arguments, or if none of the arguments have required custom modifiers, specify null instead of an array of arrays. </param> <param name="optionalParameterTypeCustomModifiers"> An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding argument of the property. If a particular argument has no optional custom modifiers, specify null instead of an array of types. If the property has no arguments, or if none of the arguments have optional custom modifiers, specify null instead of an array of arrays. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mod" /> is null. -or- An element of <paramref name="parameterTypes" /> is null. -or- One of the specified custom modifiers is null. (However, null can be specified for the array of custom modifiers for any argument.) </exception> <exception cref="T:System.ArgumentException"> The signature has already been finished. -or- <paramref name="mod" /> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder" />. -or- One of the specified custom modifiers is an array type. -or- One of the specified custom modifiers is an open generic type. That is, the <see cref="P:System.Type.ContainsGenericParameters" /> property is true for the custom modifier. -or- The size of <paramref name="requiredParameterTypeCustomModifiers" /> or <paramref name="optionalParameterTypeCustomModifiers" /> does not equal the size of <paramref name="parameterTypes" />. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetSignature"> <summary> Adds the end token to the signature and marks the signature as finished, so no further tokens can be added. </summary> <returns> Returns a byte array made up of the full signature. </returns> </member> <member name="M:System.Reflection.Emit.SignatureHelper.System#Runtime#InteropServices#_SignatureHelper#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.System#Runtime#InteropServices#_SignatureHelper#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.System#Runtime#InteropServices#_SignatureHelper#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.System#Runtime#InteropServices#_SignatureHelper#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.ToString"> <summary> Returns a string representing the signature arguments. </summary> <returns> Returns a string representing the arguments of this signature. </returns> </member> <member name="T:System.Reflection.Emit.SignatureToken"> <summary> Represents the Token returned by the metadata to represent a signature. </summary> </member> <member name="F:System.Reflection.Emit.SignatureToken.Empty"> <summary> The default SignatureToken with <see cref="P:System.Reflection.Emit.SignatureToken.Token" /> value 0. </summary> </member> <member name="M:System.Reflection.Emit.SignatureToken.Equals(System.Object)"> <summary> Checks if the given object is an instance of SignatureToken and is equal to this instance. </summary> <returns>true if <paramref name="obj" /> is an instance of SignatureToken and is equal to this object; otherwise, false. </returns> <param name="obj"> The object to compare with this SignatureToken. </param> </member> <member name="M:System.Reflection.Emit.SignatureToken.Equals(System.Reflection.Emit.SignatureToken)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.SignatureToken" />. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Reflection.Emit.SignatureToken" /> to compare to the current instance. </param> </member> <member name="M:System.Reflection.Emit.SignatureToken.GetHashCode"> <summary> Generates the hash code for this signature. </summary> <returns> Returns the hash code for this signature. </returns> </member> <member name="M:System.Reflection.Emit.SignatureToken.op_Equality(System.Reflection.Emit.SignatureToken,System.Reflection.Emit.SignatureToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.SignatureToken" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.SignatureToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.SignatureToken" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Reflection.Emit.SignatureToken.op_Inequality(System.Reflection.Emit.SignatureToken,System.Reflection.Emit.SignatureToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.SignatureToken" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.SignatureToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.SignatureToken" /> to compare to <paramref name="a" />. </param> </member> <member name="P:System.Reflection.Emit.SignatureToken.Token"> <summary> Retrieves the metadata token for the local variable signature for this method. </summary> <returns> Read-only. Retrieves the metadata token of this signature. </returns> </member> <member name="T:System.Reflection.Emit.StackBehaviour"> <summary> Describes how values are pushed onto a stack or popped off a stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Pop0"> <summary> No values are popped off the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Pop1"> <summary> Pops one value off the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Pop1_pop1"> <summary> Pops 1 value off the stack for the first operand, and 1 value of the stack for the second operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popi"> <summary> Pops a 32-bit integer off the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popi_pop1"> <summary> Pops a 32-bit integer off the stack for the first operand, and a value off the stack for the second operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popi_popi"> <summary> Pops a 32-bit integer off the stack for the first operand, and a 32-bit integer off the stack for the second operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popi_popi8"> <summary> Pops a 32-bit integer off the stack for the first operand, and a 64-bit integer off the stack for the second operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popi_popi_popi"> <summary> Pops a 32-bit integer off the stack for the first operand, a 32-bit integer off the stack for the second operand, and a 32-bit integer off the stack for the third operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popi_popr4"> <summary> Pops a 32-bit integer off the stack for the first operand, and a 32-bit floating point number off the stack for the second operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popi_popr8"> <summary> Pops a 32-bit integer off the stack for the first operand, and a 64-bit floating point number off the stack for the second operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popref"> <summary> Pops a reference off the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popref_pop1"> <summary> Pops a reference off the stack for the first operand, and a value off the stack for the second operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi"> <summary> Pops a reference off the stack for the first operand, and a 32-bit integer off the stack for the second operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_popi"> <summary> Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a value off the stack for the third operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_popi8"> <summary> Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a 64-bit integer off the stack for the third operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_popr4"> <summary> Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a 32-bit integer off the stack for the third operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_popr8"> <summary> Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a 64-bit floating point number off the stack for the third operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_popref"> <summary> Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a reference off the stack for the third operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Push0"> <summary> No values are pushed onto the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Push1"> <summary> Pushes one value onto the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Push1_push1"> <summary> Pushes 1 value onto the stack for the first operand, and 1 value onto the stack for the second operand. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Pushi"> <summary> Pushes a 32-bit integer onto the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Pushi8"> <summary> Pushes a 64-bit integer onto the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Pushr4"> <summary> Pushes a 32-bit floating point number onto the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Pushr8"> <summary> Pushes a 64-bit floating point number onto the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Pushref"> <summary> Pushes a reference onto the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Varpop"> <summary> Pops a variable off the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Varpush"> <summary> Pushes a variable onto the stack. </summary> </member> <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_pop1"> <summary> Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a 32-bit integer off the stack for the third operand. </summary> </member> <member name="T:System.Reflection.Emit.StringToken"> <summary> Represents a token that represents a string. </summary> </member> <member name="M:System.Reflection.Emit.StringToken.Equals(System.Object)"> <summary> Checks if the given object is an instance of StringToken and is equal to this instance. </summary> <returns>true if <paramref name="obj" /> is an instance of StringToken and is equal to this object; otherwise, false. </returns> <param name="obj"> The object to compare with this StringToken. </param> </member> <member name="M:System.Reflection.Emit.StringToken.Equals(System.Reflection.Emit.StringToken)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.StringToken" />. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Reflection.Emit.StringToken" /> to compare to the current instance. </param> </member> <member name="M:System.Reflection.Emit.StringToken.GetHashCode"> <summary> Returns the hash code for this string. </summary> <returns> Returns the underlying string token. </returns> </member> <member name="M:System.Reflection.Emit.StringToken.op_Equality(System.Reflection.Emit.StringToken,System.Reflection.Emit.StringToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.StringToken" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.StringToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.StringToken" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Reflection.Emit.StringToken.op_Inequality(System.Reflection.Emit.StringToken,System.Reflection.Emit.StringToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.StringToken" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.StringToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.StringToken" /> to compare to <paramref name="a" />. </param> </member> <member name="P:System.Reflection.Emit.StringToken.Token"> <summary> Retrieves the metadata token for this string. </summary> <returns> Read-only. Retrieves the metadata token of this string. </returns> </member> <member name="T:System.Reflection.Emit.TypeBuilder"> <summary> Defines and creates new instances of classes during run time. </summary> </member> <member name="M:System.Reflection.Emit.TypeBuilder.AddDeclarativeSecurity(System.Security.Permissions.SecurityAction,System.Security.PermissionSet)"> <summary> Adds declarative security to this type. </summary> <param name="action"> The security action to be taken such as Demand, Assert, and so on. </param> <param name="pset"> The set of permissions the action applies to. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="action" /> is invalid (RequestMinimum, RequestOptional, and RequestRefuse are invalid). </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- The permission set <paramref name="pset" /> contains an action that was added earlier by AddDeclarativeSecurity. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="pset" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.AddInterfaceImplementation(System.Type)"> <summary> Adds an interface that this type implements. </summary> <param name="interfaceType"> The interface that this type implements. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="interfaceType" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="P:System.Reflection.Emit.TypeBuilder.Assembly"> <summary> Retrieves the dynamic assembly that contains this type definition. </summary> <returns> Read-only. Retrieves the dynamic assembly that contains this type definition. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.AssemblyQualifiedName"> <summary> Returns the full name of this type qualified by the display name of the assembly. </summary> <returns> Read-only. The full name of this type qualified by the display name of the assembly. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.BaseType"> <summary> Retrieves the base type of this type. </summary> <returns> Read-only. Retrieves the base type of this type. </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.CreateType"> <summary> Creates a <see cref="T:System.Type" /> object for the class. After defining fields and methods on the class, CreateType is called in order to load its Type object. </summary> <returns> Returns the new <see cref="T:System.Type" /> object for this class. </returns> <exception cref="T:System.InvalidOperationException"> The enclosing type has not been created. -or- This type is non-abstract and contains an abstract method. -or- This type is not an abstract class or an interface and has a method without a method body. </exception> <exception cref="T:System.NotSupportedException"> The type contains invalid Microsoft intermediate language (MSIL) code. -or- The branch target is specified using a 1-byte offset, but the target is at a distance greater than 127 bytes from the branch. </exception> <exception cref="T:System.TypeLoadException"> The type cannot be loaded. For example, it contains a static method that has the calling convention <see cref="F:System.Reflection.CallingConventions.HasThis" />. </exception> </member> <member name="P:System.Reflection.Emit.TypeBuilder.DeclaringMethod"> <summary> Gets the method that declared the current generic type parameter. </summary> <returns> A <see cref="T:System.Reflection.MethodBase" /> that represents the method that declared the current type, if the current type is a generic type parameter; otherwise, null. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.DeclaringType"> <summary> Returns the type that declared this type. </summary> <returns> Read-only. The type that declared this type. </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineConstructor(System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[])"> <summary> Adds a new constructor to the type, with the given attributes and signature. </summary> <returns> The defined constructor. </returns> <param name="attributes"> The attributes of the constructor. </param> <param name="callingConvention"> The calling convention of the constructor. </param> <param name="parameterTypes"> The parameter types of the constructor. </param> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineConstructor(System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[],System.Type[][],System.Type[][])"> <summary> Adds a new constructor to the type, with the given attributes, signature, and custom modifiers. </summary> <returns> The defined constructor. </returns> <param name="attributes"> The attributes of the constructor. </param> <param name="callingConvention"> The calling convention of the constructor. </param> <param name="parameterTypes"> The parameter types of the constructor. </param> <param name="requiredCustomModifiers"> An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays. </param> <param name="optionalCustomModifiers"> An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays. </param> <exception cref="T:System.ArgumentException"> The size of <paramref name="requiredCustomModifiers" /> or <paramref name="optionalCustomModifiers" /> does not equal the size of <paramref name="parameterTypes" />. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineDefaultConstructor(System.Reflection.MethodAttributes)"> <summary> Defines the default constructor. The constructor defined here will simply call the default constructor of the parent. </summary> <returns> Returns the constructor. </returns> <param name="attributes"> A MethodAttributes object representing the attributes to be applied to the constructor. </param> <exception cref="T:System.NotSupportedException"> The parent type (base type) does not have a default constructor. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineEvent(System.String,System.Reflection.EventAttributes,System.Type)"> <summary> Adds a new event to the type, with the given name, attributes and event type. </summary> <returns> The defined event. </returns> <param name="name"> The name of the event. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the event. </param> <param name="eventtype"> The type of the event. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- <paramref name="eventtype" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineField(System.String,System.Type,System.Reflection.FieldAttributes)"> <summary> Adds a new field to the type, with the given name, attributes, and field type. </summary> <returns> The defined field. </returns> <param name="fieldName"> The name of the field. <paramref name="fieldName" /> cannot contain embedded nulls. </param> <param name="type"> The type of the field </param> <param name="attributes"> The attributes of the field. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="fieldName" /> is zero. -or- <paramref name="type" /> is System.Void. -or- A total size was specified for the parent class of this field. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="fieldName" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineField(System.String,System.Type,System.Type[],System.Type[],System.Reflection.FieldAttributes)"> <summary> Adds a new field to the type, with the given name, attributes, field type, and custom modifiers. </summary> <returns> The defined field. </returns> <param name="fieldName"> The name of the field. <paramref name="fieldName" /> cannot contain embedded nulls. </param> <param name="type"> The type of the field </param> <param name="requiredCustomModifiers"> An array of types representing the required custom modifiers for the field, such as <see cref="T:Microsoft.VisualC.IsConstModifier" />. </param> <param name="optionalCustomModifiers"> An array of types representing the optional custom modifiers for the field, such as <see cref="T:Microsoft.VisualC.IsConstModifier" />. </param> <param name="attributes"> The attributes of the field. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="fieldName" /> is zero. -or- <paramref name="type" /> is System.Void. -or- A total size was specified for the parent class of this field. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="fieldName" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineGenericParameters(System.String[])"> <summary> Defines the generic type parameters for the current type, specifying their number and their names, and returns an array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects that can be used to set their constraints. </summary> <returns> An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects that can be used to define the constraints of the generic type parameters for the current type. </returns> <param name="names"> An array of names for the generic type parameters. </param> <exception cref="T:System.InvalidOperationException"> Generic type parameters have already been defined for this type. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="names" /> is null. -or- An element of <paramref name="names" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="names" /> is an empty array. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineInitializedData(System.String,System.Byte[],System.Reflection.FieldAttributes)"> <summary> Defines initialized data field in the .sdata section of the portable executable (PE) file. </summary> <returns> A field to reference the data. </returns> <param name="name"> The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="data"> The blob of data. </param> <param name="attributes"> The attributes for the field. </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="name" /> is zero. -or- The size of the data is less than or equal to zero, or greater than or equal to 0x3f0000. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="data" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been previously called. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes)"> <summary> Adds a new method to the type, with the specified name and method attributes. </summary> <returns> A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the newly defined method. </returns> <param name="name"> The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the method. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. -or- The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions)"> <summary> Adds a new method to the type, with the specified name, method attributes, and calling convention. </summary> <returns> A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the newly defined method. </returns> <param name="name"> The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the method. </param> <param name="callingConvention"> The calling convention of the method. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. -or- The type of the parent of this method is an interface and this method is not virtual (Overridable in Visual Basic). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])"> <summary> Adds a new method to the type, with the specified name, method attributes, calling convention, and method signature. </summary> <returns> A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the newly defined method. </returns> <param name="name"> The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the method. </param> <param name="callingConvention"> The calling convention of the method. </param> <param name="returnType"> The return type of the method. </param> <param name="parameterTypes"> The types of the parameters of the method. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. -or- The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])"> <summary> Adds a new method to the type, with the specified name, method attributes, calling convention, method signature, and custom modifiers. </summary> <returns> A <see cref="T:System.Reflection.Emit.MethodBuilder" /> object representing the newly added method. </returns> <param name="name"> The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the method. </param> <param name="callingConvention"> The calling convention of the method. </param> <param name="returnType"> The return type of the method. </param> <param name="returnTypeRequiredCustomModifiers"> An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no required custom modifiers, specify null. </param> <param name="returnTypeOptionalCustomModifiers"> An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no optional custom modifiers, specify null. </param> <param name="parameterTypes"> The types of the parameters of the method. </param> <param name="parameterTypeRequiredCustomModifiers"> An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays. </param> <param name="parameterTypeOptionalCustomModifiers"> An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. -or- The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic). -or- The size of <paramref name="parameterTypeRequiredCustomModifiers" /> or <paramref name="parameterTypeOptionalCustomModifiers" /> does not equal the size of <paramref name="parameterTypes" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Type,System.Type[])"> <summary> Adds a new method to the type, with the specified name, method attributes, and method signature. </summary> <returns> The defined method. </returns> <param name="name"> The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the method. </param> <param name="returnType"> The return type of the method. </param> <param name="parameterTypes"> The types of the parameters of the method. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. -or- The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic). </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethodOverride(System.Reflection.MethodInfo,System.Reflection.MethodInfo)"> <summary> Specifies a given method body that implements a given method declaration, potentially with a different name. </summary> <param name="methodInfoBody"> The method body to be used. This should be a MethodBuilder object. </param> <param name="methodInfoDeclaration"> The method whose declaration is to be used. </param> <exception cref="T:System.ArgumentException"> <paramref name="methodInfoBody" /> does not belong to this class. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="methodInfoBody" /> or <paramref name="methodInfoDeclaration" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- The declaring type of <paramref name="methodInfoBody" /> is not the type represented by this <see cref="T:System.Reflection.Emit.TypeBuilder" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String)"> <summary> Defines a nested type, given its name. </summary> <returns> The defined nested type. </returns> <param name="name"> The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes)"> <summary> Defines a nested type, given its name and attributes. </summary> <returns> The defined nested type. </returns> <param name="name"> The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attributes of the type. </param> <exception cref="T:System.ArgumentException"> The nested attribute is not specified. -or- This type is sealed. -or- This type is an array. -or- This type is an interface, but the nested type is not an interface. -or- The length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type)"> <summary> Defines a nested type, given its name, attributes, and the type that it extends. </summary> <returns> The defined nested type. </returns> <param name="name"> The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attributes of the type. </param> <param name="parent"> The type that the nested type extends. </param> <exception cref="T:System.ArgumentException"> The nested attribute is not specified. -or- This type is sealed. -or- This type is an array. -or- This type is an interface, but the nested type is not an interface. -or- The length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Int32)"> <summary> Defines a nested type, given its name, attributes, the total size of the type, and the type that it extends. </summary> <returns> The defined nested type. </returns> <param name="name"> The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attributes of the type. </param> <param name="parent"> The type that the nested type extends. </param> <param name="typeSize"> The total size of the type. </param> <exception cref="T:System.ArgumentException"> The nested attribute is not specified. -or- This type is sealed. -or- This type is an array. -or- This type is an interface, but the nested type is not an interface. -or- The length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize)"> <summary> Defines a nested type, given its name, attributes, the type that it extends, and the packing size. </summary> <returns> The defined nested type. </returns> <param name="name"> The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attributes of the type. </param> <param name="parent"> The type that the nested type extends. </param> <param name="packSize"> The packing size of the type. </param> <exception cref="T:System.ArgumentException"> The nested attribute is not specified. -or- This type is sealed. -or- This type is an array. -or- This type is an interface, but the nested type is not an interface. -or- The length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[])"> <summary> Defines a nested type, given its name, attributes, the type that it extends, and the interfaces that it implements. </summary> <returns> The defined nested type. </returns> <param name="name"> The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attr"> The attributes of the type. </param> <param name="parent"> The type that the nested type extends. </param> <param name="interfaces"> The interfaces that the nested type implements. </param> <exception cref="T:System.ArgumentException"> The nested attribute is not specified. -or- This type is sealed. -or- This type is an array. -or- This type is an interface, but the nested type is not an interface. -or- The length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- An element of the <paramref name="interfaces" /> array is null. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefinePInvokeMethod(System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)"> <summary> Defines a PInvoke method given its name, the name of the DLL in which the method is defined, the attributes of the method, the calling convention of the method, the return type of the method, the types of the parameters of the method, and the PInvoke flags. </summary> <returns> The defined PInvoke method. </returns> <param name="name"> The name of the PInvoke method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="dllName"> The name of the DLL in which the PInvoke method is defined. </param> <param name="attributes"> The attributes of the method. </param> <param name="callingConvention"> The method's calling convention. </param> <param name="returnType"> The method's return type. </param> <param name="parameterTypes"> The types of the method's parameters. </param> <param name="nativeCallConv"> The native calling convention. </param> <param name="nativeCharSet"> The method's native character set. </param> <exception cref="T:System.ArgumentException"> The method is not static. -or- The parent type is an interface. -or- The method is abstract. -or- The method was previously defined. -or- The length of <paramref name="name" /> or <paramref name="dllName" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="dllName" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefinePInvokeMethod(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)"> <summary> Defines a PInvoke method given its name, the name of the DLL in which the method is defined, the name of the entry point, the attributes of the method, the calling convention of the method, the return type of the method, the types of the parameters of the method, and the PInvoke flags. </summary> <returns> The defined PInvoke method. </returns> <param name="name"> The name of the PInvoke method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="dllName"> The name of the DLL in which the PInvoke method is defined. </param> <param name="entryName"> The name of the entry point in the DLL. </param> <param name="attributes"> The attributes of the method. </param> <param name="callingConvention"> The method's calling convention. </param> <param name="returnType"> The method's return type. </param> <param name="parameterTypes"> The types of the method's parameters. </param> <param name="nativeCallConv"> The native calling convention. </param> <param name="nativeCharSet"> The method's native character set. </param> <exception cref="T:System.ArgumentException"> The method is not static. -or- The parent type is an interface. -or- The method is abstract. -or- The method was previously defined. -or- The length of <paramref name="name" />, <paramref name="dllName" />, or <paramref name="entryName" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" />, <paramref name="dllName" />, or <paramref name="entryName" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefinePInvokeMethod(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)"> <summary> Defines a PInvoke method given its name, the name of the DLL in which the method is defined, the name of the entry point, the attributes of the method, the calling convention of the method, the return type of the method, the types of the parameters of the method, the PInvoke flags, and custom modifiers for the parameters and return type. </summary> <returns> A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the defined PInvoke method. </returns> <param name="name"> The name of the PInvoke method. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="dllName"> The name of the DLL in which the PInvoke method is defined. </param> <param name="entryName"> The name of the entry point in the DLL. </param> <param name="attributes"> The attributes of the method. </param> <param name="callingConvention"> The method's calling convention. </param> <param name="returnType"> The method's return type. </param> <param name="returnTypeRequiredCustomModifiers"> An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no required custom modifiers, specify null. </param> <param name="returnTypeOptionalCustomModifiers"> An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no optional custom modifiers, specify null. </param> <param name="parameterTypes"> The types of the method's parameters. </param> <param name="parameterTypeRequiredCustomModifiers"> An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays. </param> <param name="parameterTypeOptionalCustomModifiers"> An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays. </param> <param name="nativeCallConv"> The native calling convention. </param> <param name="nativeCharSet"> The method's native character set. </param> <exception cref="T:System.ArgumentException"> The method is not static. -or- The parent type is an interface. -or- The method is abstract. -or- The method was previously defined. -or- The length of <paramref name="name" />, <paramref name="dllName" />, or <paramref name="entryName" /> is zero. -or- The size of <paramref name="parameterTypeRequiredCustomModifiers" /> or <paramref name="parameterTypeOptionalCustomModifiers" /> does not equal the size of <paramref name="parameterTypes" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" />, <paramref name="dllName" />, or <paramref name="entryName" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Type,System.Type[])"> <summary> Adds a new property to the type, with the given name and property signature. </summary> <returns> The defined property. </returns> <param name="name"> The name of the property. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the property. </param> <param name="returnType"> The return type of the property. </param> <param name="parameterTypes"> The types of the parameters of the property. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- Any of the elements of the <paramref name="parameterTypes" /> array is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])"> <summary> Adds a new property to the type, with the given name, property signature, and custom modifiers. </summary> <returns> The defined property. </returns> <param name="name"> The name of the property. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the property. </param> <param name="returnType"> The return type of the property. </param> <param name="returnTypeRequiredCustomModifiers"> An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the property. If the return type has no required custom modifiers, specify null. </param> <param name="returnTypeOptionalCustomModifiers"> An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the property. If the return type has no optional custom modifiers, specify null. </param> <param name="parameterTypes"> The types of the parameters of the property. </param> <param name="parameterTypeRequiredCustomModifiers"> An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays. </param> <param name="parameterTypeOptionalCustomModifiers"> An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null -or- Any of the elements of the <paramref name="parameterTypes" /> array is null</exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineTypeInitializer"> <summary> Defines the initializer for this type. </summary> <returns> Returns a type initializer. </returns> <exception cref="T:System.InvalidOperationException"> The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineUninitializedData(System.String,System.Int32,System.Reflection.FieldAttributes)"> <summary> Defines an uninitialized data field in the .sdata section of the portable executable (PE) file. </summary> <returns> A field to reference the data. </returns> <param name="name"> The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="size"> The size of the data field. </param> <param name="attributes"> The attributes for the field. </param> <exception cref="T:System.ArgumentException"> Length of <paramref name="name" /> is zero. -or- <paramref name="size" /> is less than or equal to zero, or greater than or equal to 0x003f0000. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="P:System.Reflection.Emit.TypeBuilder.FullName"> <summary> Retrieves the full path of this type. </summary> <returns> Read-only. Retrieves the full path of this type. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.GenericParameterAttributes"> <summary> Gets a value that indicates the covariance and special constraints of the current generic type parameter. </summary> <returns> A bitwise combination of <see cref="T:System.Reflection.GenericParameterAttributes" /> values that describes the covariance and special constraints of the current generic type parameter. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.GenericParameterPosition"> <summary> Gets the position of a type parameter in the type parameter list of the generic type that declared the parameter. </summary> <returns> If the current <see cref="T:System.Reflection.Emit.TypeBuilder" /> object represents a generic type parameter, the position of the type parameter in the type parameter list of the generic type that declared the parameter; otherwise, undefined. </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetConstructor(System.Type,System.Reflection.ConstructorInfo)"> <summary> Returns the constructor of the specified constructed generic type that corresponds to the specified constructor of the generic type definition. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> object that represents the constructor of <paramref name="type" /> corresponding to <paramref name="constructor" />, which specifies a constructor belonging to the generic type definition of <paramref name="type" />. </returns> <param name="type"> The constructed generic type whose constructor is returned. </param> <param name="constructor"> A constructor on the generic type definition of <paramref name="type" />, which specifies which constructor of <paramref name="type" /> to return. </param> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not represent a generic type. -or- <paramref name="type" /> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder" />. -or- The declaring type of <paramref name="constructor" /> is not a generic type definition. -or- The declaring type of <paramref name="constructor" /> is not the generic type definition of <paramref name="type" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetConstructors(System.Reflection.BindingFlags)"> <summary> Returns an array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing the public and non-public constructors defined for this class, as specified. </summary> <returns> Returns an array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing the specified constructors defined for this class. If no constructors are defined, an empty array is returned. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> as in InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetCustomAttributes(System.Boolean)"> <summary> Returns all the custom attributes defined for this type. </summary> <returns> Returns an array of objects representing all the custom attributes of this type. </returns> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported for incomplete types. Retrieve the type using <see cref="M:System.Type.GetType" /> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> on the returned <see cref="T:System.Type" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Returns all the custom attributes of the current type that are assignable to a specified type. </summary> <returns> An array of custom attributes defined on the current type. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported for incomplete types. Retrieve the type using <see cref="M:System.Type.GetType" /> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> on the returned <see cref="T:System.Type" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="attributeType" /> is null. </exception> <exception cref="T:System.ArgumentException"> The type must be a type provided by the underlying runtime system. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetElementType"> <summary> Calling this method always throws <see cref="T:System.NotSupportedException" />. </summary> <returns> This method is not supported. No value is returned. </returns> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetEvent(System.String,System.Reflection.BindingFlags)"> <summary> Returns the event with the specified name. </summary> <returns> An <see cref="T:System.Reflection.EventInfo" /> object representing the event declared or inherited by this type with the specified name, or null if there are no matches. </returns> <param name="name"> The name of the event to search for. </param> <param name="bindingAttr"> A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values that limits the search. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetEvents"> <summary> Returns the public events declared or inherited by this type. </summary> <returns> Returns an array of <see cref="T:System.Reflection.EventInfo" /> objects representing the public events declared or inherited by this type. An empty array is returned if there are no public events. </returns> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetEvents(System.Reflection.BindingFlags)"> <summary> Returns the public and non-public events that are declared by this type. </summary> <returns> Returns an array of <see cref="T:System.Reflection.EventInfo" /> objects representing the events declared or inherited by this type that match the specified binding flags. An empty array is returned if there are no matching events. </returns> <param name="bindingAttr"> A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values that limits the search. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetField(System.String,System.Reflection.BindingFlags)"> <summary> Returns the field specified by the given name. </summary> <returns> Returns the <see cref="T:System.Reflection.FieldInfo" /> object representing the field declared or inherited by this type with the specified name and public or non-public modifier. If there are no matches then null is returned. </returns> <param name="name"> The name of the field to get. </param> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> as in InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetField(System.Type,System.Reflection.FieldInfo)"> <summary> Returns the field of the specified constructed generic type that corresponds to the specified field of the generic type definition. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object that represents the field of <paramref name="type" /> corresponding to <paramref name="field" />, which specifies a field belonging to the generic type definition of <paramref name="type" />. </returns> <param name="type"> The constructed generic type whose field is returned. </param> <param name="field"> A field on the generic type definition of <paramref name="type" />, which specifies which field of <paramref name="type" /> to return. </param> <exception cref="T:System.ArgumentException"> <paramref name="type" /> does not represent a generic type. -or- <paramref name="type" /> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder" />. -or- The declaring type of <paramref name="field" /> is not a generic type definition. -or- The declaring type of <paramref name="field" /> is not the generic type definition of <paramref name="type" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetFields(System.Reflection.BindingFlags)"> <summary> Returns the public and non-public fields that are declared by this type. </summary> <returns> Returns an array of <see cref="T:System.Reflection.FieldInfo" /> objects representing the public and non-public fields declared or inherited by this type. An empty array is returned if there are no fields, as specified. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetGenericArguments"> <summary> Returns an array of <see cref="T:System.Type" /> objects representing the type arguments of a generic type or the type parameters of a generic type definition. </summary> <returns> An array of <see cref="T:System.Type" /> objects. The elements of the array represent the type arguments of a generic type or the type parameters of a generic type definition. </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetGenericTypeDefinition"> <summary> Returns a <see cref="T:System.Type" /> object that represents a generic type definition from which the current type can be obtained. </summary> <returns> A <see cref="T:System.Type" /> object representing a generic type definition from which the current type can be obtained. </returns> <exception cref="T:System.InvalidOperationException"> The current type is not generic. That is, <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> returns false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetInterface(System.String,System.Boolean)"> <summary> Returns the interface implemented (directly or indirectly) by this class with the fully qualified name matching the given interface name. </summary> <returns> Returns a <see cref="T:System.Type" /> object representing the implemented interface. Returns null if no interface matching name is found. </returns> <param name="name"> The name of the interface. </param> <param name="ignoreCase"> If true, the search is case-insensitive. If false, the search is case-sensitive. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetInterfaceMap(System.Type)"> <summary> Returns an interface mapping for the requested interface. </summary> <returns> Returns the requested interface mapping. </returns> <param name="interfaceType"> The <see cref="T:System.Type" /> of the interface for which the mapping is to be retrieved. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetInterfaces"> <summary> Returns an array of all the interfaces implemented on this type and its base types. </summary> <returns> Returns an array of <see cref="T:System.Type" /> objects representing the implemented interfaces. If none are defined, an empty array is returned. </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)"> <summary> Returns all the public and non-public members declared or inherited by this type, as specified. </summary> <returns> Returns an array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public and non-public members defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public members are returned. </returns> <param name="name"> The name of the member. </param> <param name="type"> The type of the member to return. </param> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, as in InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetMembers(System.Reflection.BindingFlags)"> <summary> Returns the members for the public and non-public members declared or inherited by this type. </summary> <returns> Returns an array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public and non-public members declared or inherited by this type. An empty array is returned if there are no matching members. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetMethod(System.Type,System.Reflection.MethodInfo)"> <summary> Returns the method of the specified constructed generic type that corresponds to the specified method of the generic type definition. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object that represents the method of <paramref name="type" /> corresponding to <paramref name="method" />, which specifies a method belonging to the generic type definition of <paramref name="type" />. </returns> <param name="type"> The constructed generic type whose method is returned. </param> <param name="method"> A method on the generic type definition of <paramref name="type" />, which specifies which method of <paramref name="type" /> to return. </param> <exception cref="T:System.ArgumentException"> <paramref name="method" /> is a generic method that is not a generic method definition. -or- <paramref name="type" /> does not represent a generic type. -or- <paramref name="type" /> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder" />. -or- The declaring type of <paramref name="method" /> is not a generic type definition. -or- The declaring type of <paramref name="method" /> is not the generic type definition of <paramref name="type" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetMethods(System.Reflection.BindingFlags)"> <summary> Returns all the public and non-public methods declared or inherited by this type, as specified. </summary> <returns> Returns an array of <see cref="T:System.Reflection.MethodInfo" /> objects representing the public and non-public methods defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public methods are returned. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> as in InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetNestedType(System.String,System.Reflection.BindingFlags)"> <summary> Returns the public and non-public nested types that are declared by this type. </summary> <returns> A <see cref="T:System.Type" /> object representing the nested type that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the nested type to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to conduct a case-sensitive search for public methods. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetNestedTypes(System.Reflection.BindingFlags)"> <summary> Returns the public and non-public nested types that are declared or inherited by this type. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing all the types nested within the current <see cref="T:System.Type" /> that match the specified binding constraints. An empty array of type <see cref="T:System.Type" />, if no types are nested within the current <see cref="T:System.Type" />, or if none of the nested types match the binding constraints. </returns> <param name="bindingAttr"> This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, as in InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.TypeBuilder.GetProperties(System.Reflection.BindingFlags)"> <summary> Returns all the public and non-public properties declared or inherited by this type, as specified. </summary> <returns> Returns an array of PropertyInfo objects representing the public and non-public properties defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public properties are returned. </returns> <param name="bindingAttr"> This invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, NonPublic, and so on. </param> <exception cref="T:System.NotSupportedException"> This method is not implemented for incomplete types. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Reflection.Emit.TypeBuilder.GUID"> <summary> Retrieves the GUID of this type. </summary> <returns> Read-only. Retrieves the GUID of this type </returns> <exception cref="T:System.NotSupportedException"> This method is not currently supported for incomplete types. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])"> <summary> Invokes the specified member. The method that is to be invoked must be accessible and provide the most specific match with the specified argument list, under the constraints of the specified binder and invocation attributes. </summary> <returns> Returns the return value of the invoked member. </returns> <param name="name"> The name of the member to invoke. This can be a constructor, method, property, or field. A suitable invocation attribute must be specified. Note that it is possible to invoke the default member of a class by passing an empty string as the name of the member. </param> <param name="invokeAttr"> The invocation attribute. This must be a bit flag from BindingFlags. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If binder is null, the default binder is used. See <see cref="T:System.Reflection.Binder" />. </param> <param name="target"> The object on which to invoke the specified member. If the member is static, this parameter is ignored. </param> <param name="args"> An argument list. This is an array of Objects that contains the number, order, and type of the parameters of the member to be invoked. If there are no parameters this should be null. </param> <param name="modifiers"> An array of the same length as <paramref name="args" /> with elements that represent the attributes associated with the arguments of the member to be invoked. A parameter has attributes associated with it in the metadata. They are used by various interoperability services. See the metadata specs for more details. </param> <param name="culture"> An instance of CultureInfo used to govern the coercion of types. If this is null, the CultureInfo for the current thread is used. (Note that this is necessary to, for example, convert a String that represents 1000 to a Double value, since 1000 is represented differently by different cultures.) </param> <param name="namedParameters"> Each parameter in the <paramref name="namedParameters" /> array gets the value in the corresponding element in the <paramref name="args" /> array. If the length of <paramref name="args" /> is greater than the length of <paramref name="namedParameters" />, the remaining argument values are passed in order. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported for incomplete types. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Reflection.Emit.TypeBuilder.IsAssignableFrom(System.Type)"> <summary> Determines whether an instance of the current <see cref="T:System.Type" /> can be assigned from an instance of the specified Type. </summary> <returns>true if the <paramref name="c" /> parameter and the current <see cref="T:System.Type" /> represent the same type, or if the current Type is in the inheritance hierarchy of <paramref name="c" />, or if the current Type is an interface that <paramref name="c" /> supports. false if none of these conditions are the case, or if <paramref name="c" /> is a null reference (Nothing in Visual Basic). </returns> <param name="c"> The Type to compare with the current Type. </param> </member> <member name="M:System.Reflection.Emit.TypeBuilder.IsCreated"> <summary> Returns a value that indicates whether the current dynamic type has been created. </summary> <returns>true if the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> method has been called; otherwise, false. </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.IsDefined(System.Type,System.Boolean)"> <summary> Determines whether a custom attribute is applied to the current type. </summary> <returns>true if one or more instances of <paramref name="attributeType" />, or an attribute derived from <paramref name="attributeType" />, is defined on this type; otherwise, false. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> <exception cref="T:System.NotSupportedException"> This method is not currently supported for incomplete types. Retrieve the type using <see cref="M:System.Type.GetType" /> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> on the returned <see cref="T:System.Type" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="attributeType" /> is not defined. </exception> </member> <member name="P:System.Reflection.Emit.TypeBuilder.IsGenericParameter"> <summary> Gets a value indicating whether the current type is a generic type parameter. </summary> <returns>true if the current <see cref="T:System.Reflection.Emit.TypeBuilder" /> object represents a generic type parameter; otherwise, false. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.IsGenericType"> <summary> Gets a value indicating whether the current type is a generic type. </summary> <returns>true if the type represented by the current <see cref="T:System.Reflection.Emit.TypeBuilder" /> object is generic; otherwise, false. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"> <summary> Gets a value indicating whether the current <see cref="T:System.Reflection.Emit.TypeBuilder" /> represents a generic type definition from which other generic types can be constructed. </summary> <returns>true if this <see cref="T:System.Reflection.Emit.TypeBuilder" /> object represents a generic type definition; otherwise, false. </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.IsSubclassOf(System.Type)"> <summary> Determines whether this type is derived from a specified type. </summary> <returns> Read-only. Returns true if this type is the same as the type <paramref name="c" />, or is a subtype of type <paramref name="c" />; otherwise, false. </returns> <param name="c"> A <see cref="T:System.Type" /> that is to be checked. </param> </member> <member name="M:System.Reflection.Emit.TypeBuilder.MakeArrayType"> <summary> Returns a <see cref="T:System.Type" /> object that represents a one-dimensional array of the current type, with a lower bound of zero. </summary> <returns> A <see cref="T:System.Type" /> object representing a one-dimensional array type whose element type is the current type, with a lower bound of zero. </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32)"> <summary> Returns a <see cref="T:System.Type" /> object that represents an array of the current type, with the specified number of dimensions. </summary> <returns> A <see cref="T:System.Type" /> object that represents a one-dimensional array of the current type. </returns> <param name="rank"> The number of dimensions for the array. </param> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="rank" /> is not a valid array dimension. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.MakeByRefType"> <summary> Returns a <see cref="T:System.Type" /> object that represents the current type when passed as a ref parameter (ByRef in Visual Basic). </summary> <returns> A <see cref="T:System.Type" /> object that represents the current type when passed as a ref parameter (ByRef in Visual Basic). </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[])"> <summary> Substitutes the elements of an array of types for the type parameters of the current generic type definition, and returns the resulting constructed type. </summary> <returns> A <see cref="T:System.Type" /> representing the constructed type formed by substituting the elements of <paramref name="typeArguments" /> for the type parameters of the current generic type. </returns> <param name="typeArguments"> An array of types to be substituted for the type parameters of the current generic type definition. </param> <exception cref="T:System.InvalidOperationException"> The current type does not represent the definition of a generic type. That is, <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> returns false. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="typeArguments" /> is null. -or- Any element of <paramref name="typeArguments" /> is null. </exception> <exception cref="T:System.ArgumentException"> The number of elements in <paramref name="typeArguments" /> is not the same as the number of type parameters in the current generic type definition. -or- Any element of <paramref name="typeArguments" /> does not satisfy the constraints specified for the corresponding type parameter of the current generic type. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.MakePointerType"> <summary> Returns a <see cref="T:System.Type" /> object that represents the type of an unmanaged pointer to the current type. </summary> <returns> A <see cref="T:System.Type" /> object that represents the type of an unmanaged pointer to the current type. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.Module"> <summary> Retrieves the dynamic module that contains this type definition. </summary> <returns> Read-only. Retrieves the dynamic module that contains this type definition. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.Name"> <summary> Retrieves the name of this type. </summary> <returns> Read-only. Retrieves the <see cref="T:System.String" /> name of this type. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.Namespace"> <summary> Retrieves the namespace where this TypeBuilder is defined. </summary> <returns> Read-only. Retrieves the namespace where this TypeBuilder is defined. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.PackingSize"> <summary> Retrieves the packing size of this type. </summary> <returns> Read-only. Retrieves the packing size of this type. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.ReflectedType"> <summary> Returns the type that was used to obtain this type. </summary> <returns> Read-only. The type that was used to obtain this type. </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])"> <summary> Sets a custom attribute using a specified custom attribute blob. </summary> <param name="con"> The constructor for the custom attribute. </param> <param name="binaryAttribute"> A byte blob representing the attributes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)"> <summary> Set a custom attribute using a custom attribute builder. </summary> <param name="customBuilder"> An instance of a helper class to define the custom attribute. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="customBuilder" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.SetParent(System.Type)"> <summary> Sets the base type of the type currently under construction. </summary> <param name="parent"> The new base type. </param> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. -or- <paramref name="parent" /> is null, and the current instance represents an interface whose attributes do not include <see cref="F:System.Reflection.TypeAttributes.Abstract" />. -or- For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception> <exception cref="T:System.ArgumentException"> <paramref name="parent" /> is an interface. This exception condition is new in the .NET Framework version 2.0. </exception> </member> <member name="P:System.Reflection.Emit.TypeBuilder.Size"> <summary> Retrieves the total size of a type. </summary> <returns> Read-only. Retrieves this type’s total size. </returns> </member> <member name="M:System.Reflection.Emit.TypeBuilder.System#Runtime#InteropServices#_TypeBuilder#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.System#Runtime#InteropServices#_TypeBuilder#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.System#Runtime#InteropServices#_TypeBuilder#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.System#Runtime#InteropServices#_TypeBuilder#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.ToString"> <summary> Returns the name of the type excluding the namespace. </summary> <returns> Read-only. The name of the type excluding the namespace. </returns> </member> <member name="P:System.Reflection.Emit.TypeBuilder.TypeHandle"> <summary> Not supported in dynamic modules. </summary> <returns> Read-only. </returns> <exception cref="T:System.NotSupportedException"> Not supported in dynamic modules. </exception> </member> <member name="P:System.Reflection.Emit.TypeBuilder.TypeToken"> <summary> Returns the type token of this type. </summary> <returns> Read-only. Returns the TypeToken of this type. </returns> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="P:System.Reflection.Emit.TypeBuilder.UnderlyingSystemType"> <summary> Returns the underlying system type for this TypeBuilder. </summary> <returns> Read-only. Returns the underlying system type. </returns> <exception cref="T:System.InvalidOperationException"> This type is an enumeration, but there is no underlying system type. </exception> </member> <member name="F:System.Reflection.Emit.TypeBuilder.UnspecifiedTypeSize"> <summary> Represents that total size for the type is not specified. </summary> </member> <member name="T:System.Reflection.Emit.TypeToken"> <summary> Represents the Token returned by the metadata to represent a type. </summary> </member> <member name="F:System.Reflection.Emit.TypeToken.Empty"> <summary> The default TypeToken with <see cref="P:System.Reflection.Emit.TypeToken.Token" /> value 0. </summary> </member> <member name="M:System.Reflection.Emit.TypeToken.Equals(System.Object)"> <summary> Checks if the given object is an instance of TypeToken and is equal to this instance. </summary> <returns>true if <paramref name="obj" /> is an instance of TypeToken and is equal to this object; otherwise, false. </returns> <param name="obj"> The object to compare with this TypeToken. </param> </member> <member name="M:System.Reflection.Emit.TypeToken.Equals(System.Reflection.Emit.TypeToken)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.TypeToken" />. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Reflection.Emit.TypeToken" /> to compare to the current instance. </param> </member> <member name="M:System.Reflection.Emit.TypeToken.GetHashCode"> <summary> Generates the hash code for this type. </summary> <returns> Returns the hash code for this type. </returns> </member> <member name="M:System.Reflection.Emit.TypeToken.op_Equality(System.Reflection.Emit.TypeToken,System.Reflection.Emit.TypeToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.TypeToken" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.TypeToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.TypeToken" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Reflection.Emit.TypeToken.op_Inequality(System.Reflection.Emit.TypeToken,System.Reflection.Emit.TypeToken)"> <summary> Indicates whether two <see cref="T:System.Reflection.Emit.TypeToken" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Reflection.Emit.TypeToken" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Reflection.Emit.TypeToken" /> to compare to <paramref name="a" />. </param> </member> <member name="P:System.Reflection.Emit.TypeToken.Token"> <summary> Retrieves the metadata token for this class. </summary> <returns> Read-only. Retrieves the metadata token of this type. </returns> </member> <member name="T:System.Reflection.Emit.UnmanagedMarshal"> <summary> Represents the class that describes how to marshal a field from managed to unmanaged code. This class cannot be inherited. </summary> </member> <member name="P:System.Reflection.Emit.UnmanagedMarshal.BaseType"> <summary> Gets an unmanaged base type. This property is read-only. </summary> <returns> An UnmanagedType object. </returns> <exception cref="T:System.ArgumentException"> The unmanaged type is not an LPArray or a SafeArray. </exception> </member> <member name="M:System.Reflection.Emit.UnmanagedMarshal.DefineByValArray(System.Int32)"> <summary> Specifies a fixed-length array (ByValArray) to marshal to unmanaged code. </summary> <returns> An <see cref="T:System.Reflection.Emit.UnmanagedMarshal" /> object. </returns> <param name="elemCount"> The number of elements in the fixed-length array. </param> <exception cref="T:System.ArgumentException"> The argument is not a simple native type. </exception> </member> <member name="M:System.Reflection.Emit.UnmanagedMarshal.DefineByValTStr(System.Int32)"> <summary> Specifies a string in a fixed array buffer (ByValTStr) to marshal to unmanaged code. </summary> <returns> An <see cref="T:System.Reflection.Emit.UnmanagedMarshal" /> object. </returns> <param name="elemCount"> The number of elements in the fixed array buffer. </param> <exception cref="T:System.ArgumentException"> The argument is not a simple native type. </exception> </member> <member name="M:System.Reflection.Emit.UnmanagedMarshal.DefineLPArray(System.Runtime.InteropServices.UnmanagedType)"> <summary> Specifies an LPArray to marshal to unmanaged code. The length of an LPArray is determined at runtime by the size of the actual marshaled array. </summary> <returns> An <see cref="T:System.Reflection.Emit.UnmanagedMarshal" /> object. </returns> <param name="elemType"> The unmanaged type to which to marshal the array. </param> <exception cref="T:System.ArgumentException"> The argument is not a simple native type. </exception> </member> <member name="M:System.Reflection.Emit.UnmanagedMarshal.DefineSafeArray(System.Runtime.InteropServices.UnmanagedType)"> <summary> Specifies a SafeArray to marshal to unmanaged code. </summary> <returns> An <see cref="T:System.Reflection.Emit.UnmanagedMarshal" /> object. </returns> <param name="elemType"> The base type or the UnmanagedType of each element of the array. </param> <exception cref="T:System.ArgumentException"> The argument is not a simple native type. </exception> </member> <member name="M:System.Reflection.Emit.UnmanagedMarshal.DefineUnmanagedMarshal(System.Runtime.InteropServices.UnmanagedType)"> <summary> Specifies a given type that is to be marshaled to unmanaged code. </summary> <returns> An <see cref="T:System.Reflection.Emit.UnmanagedMarshal" /> object. </returns> <param name="unmanagedType"> The unmanaged type to which the type is to be marshaled. </param> <exception cref="T:System.ArgumentException"> The argument is not a simple native type. </exception> </member> <member name="P:System.Reflection.Emit.UnmanagedMarshal.ElementCount"> <summary> Gets a number element. This property is read-only. </summary> <returns> An integer indicating the element count. </returns> <exception cref="T:System.ArgumentException"> The argument is not an unmanaged element count. </exception> </member> <member name="P:System.Reflection.Emit.UnmanagedMarshal.GetUnmanagedType"> <summary> Indicates an unmanaged type. This property is read-only. </summary> <returns> An <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> object. </returns> </member> <member name="P:System.Reflection.Emit.UnmanagedMarshal.IIDGuid"> <summary> Gets a GUID. This property is read-only. </summary> <returns> A <see cref="T:System.Guid" /> object. </returns> <exception cref="T:System.ArgumentException"> The argument is not a custom marshaler. </exception> </member> <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[])"> <summary> Initializes an anonymously hosted dynamic method, specifying the method name, return type, and parameter types. </summary> <param name="name"> The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param> <param name="returnType"> A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param> <param name="parameterTypes"> An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param> <exception cref="T:System.ArgumentException"> An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception> </member> <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[],System.Boolean)"> <summary> Initializes an anonymously hosted dynamic method, specifying the method name, return type, parameter types, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. </summary> <param name="name"> The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param> <param name="returnType"> A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param> <param name="parameterTypes"> An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param> <param name="restrictedSkipVisibility">true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method, with this restriction: the trust level of the assemblies that contain those types and members must be equal to or less than the trust level of the call stack that emits the dynamic method; otherwise, false. </param> <exception cref="T:System.ArgumentException"> An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception> </member> <member name="M:System.Reflection.Emit.SignatureHelper.GetPropertySigHelper(System.Reflection.Module,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])"> <summary> Returns a signature helper for a property, given the dynamic module that contains the property, the calling convention, the property type, the property arguments, and custom modifiers for the return type and arguments. </summary> <returns> A <see cref="T:System.Reflection.Emit.SignatureHelper" /> object for a property. </returns> <param name="mod"> The <see cref="T:System.Reflection.Emit.ModuleBuilder" /> that contains the property for which the <see cref="T:System.Reflection.Emit.SignatureHelper" /> is requested. </param> <param name="callingConvention"> The calling convention of the property accessors. </param> <param name="returnType"> The property type. </param> <param name="requiredReturnTypeCustomModifiers"> An array of types representing the required custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the return type has no required custom modifiers, specify null. </param> <param name="optionalReturnTypeCustomModifiers"> An array of types representing the optional custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the return type has no optional custom modifiers, specify null. </param> <param name="parameterTypes"> The types of the property's arguments, or null if the property has no arguments. </param> <param name="requiredParameterTypeCustomModifiers"> An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding argument of the property. If a particular argument has no required custom modifiers, specify null instead of an array of types. If the property has no arguments, or if none of the arguments have required custom modifiers, specify null instead of an array of arrays. </param> <param name="optionalParameterTypeCustomModifiers"> An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding argument of the property. If a particular argument has no optional custom modifiers, specify null instead of an array of types. If the property has no arguments, or if none of the arguments have optional custom modifiers, specify null instead of an array of arrays. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mod" /> is null. -or- An element of <paramref name="parameterTypes" /> is null. -or- One of the specified custom modifiers is null. (However, null can be specified for the array of custom modifiers for any argument.) </exception> <exception cref="T:System.ArgumentException"> The signature has already been finished. -or- <paramref name="mod" /> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder" />. -or- One of the specified custom modifiers is an array type. -or- One of the specified custom modifiers is an open generic type. That is, the <see cref="P:System.Type.ContainsGenericParameters" /> property is true for the custom modifier. -or- The size of <paramref name="requiredParameterTypeCustomModifiers" /> or <paramref name="optionalParameterTypeCustomModifiers" /> does not equal the size of <paramref name="parameterTypes" />. </exception> </member> <member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])"> <summary> Adds a new property to the type, with the given name, calling convention, property signature, and custom modifiers. </summary> <returns> The defined property. </returns> <param name="name"> The name of the property. <paramref name="name" /> cannot contain embedded nulls. </param> <param name="attributes"> The attributes of the property. </param> <param name="callingConvention"> The calling convention of the property accessors. </param> <param name="returnType"> The return type of the property. </param> <param name="returnTypeRequiredCustomModifiers"> An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the property. If the return type has no required custom modifiers, specify null. </param> <param name="returnTypeOptionalCustomModifiers"> An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the property. If the return type has no optional custom modifiers, specify null. </param> <param name="parameterTypes"> The types of the parameters of the property. </param> <param name="parameterTypeRequiredCustomModifiers"> An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays. </param> <param name="parameterTypeOptionalCustomModifiers"> An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays. </param> <exception cref="T:System.ArgumentException"> The length of <paramref name="name" /> is zero. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. -or- Any of the elements of the <paramref name="parameterTypes" /> array is null. </exception> <exception cref="T:System.InvalidOperationException"> The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception> </member> <member name="P:System.Reflection.Emit.MethodBuilder.ReturnType"> <summary> Gets the return type of the method represented by this <see cref="T:System.Reflection.Emit.MethodBuilder" />. </summary> <returns> The return type of the method. </returns> </member> <member name="T:System.Resources.IResourceReader"> <summary> Provides the base functionality to read data from resource files. </summary> </member> <member name="M:System.Resources.IResourceReader.Close"> <summary> Closes the resource reader after releasing any resources associated with it. </summary> </member> <member name="M:System.Resources.IResourceReader.GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> of the resources for this reader. </summary> <returns> A dictionary enumerator for the resources for this reader. </returns> </member> <member name="T:System.Resources.IResourceWriter"> <summary> Provides functionality to write resources to an output file or stream. </summary> </member> <member name="M:System.Resources.IResourceWriter.AddResource(System.String,System.Byte[])"> <summary> Adds an 8-bit unsigned integer array as a named resource to the list of resources to be written. </summary> <param name="name"> Name of a resource. </param> <param name="value"> Value of a resource as an 8-bit unsigned integer array. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Resources.IResourceWriter.AddResource(System.String,System.Object)"> <summary> Adds a named resource of type <see cref="T:System.Object" /> to the list of resources to be written. </summary> <param name="name"> The name of the resource. </param> <param name="value"> The value of the resource. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Resources.IResourceWriter.AddResource(System.String,System.String)"> <summary> Adds a named resource of type <see cref="T:System.String" /> to the list of resources to be written. </summary> <param name="name"> The name of the resource. </param> <param name="value"> The value of the resource. </param> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Resources.IResourceWriter.Close"> <summary> Closes the underlying resource file or stream, ensuring all the data has been written to the file. </summary> </member> <member name="M:System.Resources.IResourceWriter.Generate"> <summary> Writes all the resources added by the <see cref="M:System.Resources.IResourceWriter.AddResource(System.String,System.String)" /> method to the output file or stream. </summary> </member> <member name="T:System.Resources.MissingManifestResourceException"> <summary> The exception thrown if the main assembly does not contain the resources for the neutral culture, and they are required because of a missing appropriate satellite assembly. </summary> </member> <member name="M:System.Resources.MissingManifestResourceException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Resources.MissingManifestResourceException" /> class with default properties. </summary> </member> <member name="M:System.Resources.MissingManifestResourceException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.MissingManifestResourceException" /> class from serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination of the exception. </param> </member> <member name="M:System.Resources.MissingManifestResourceException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.MissingManifestResourceException" /> class with the specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Resources.MissingManifestResourceException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.MissingManifestResourceException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Resources.MissingSatelliteAssemblyException"> <summary> The exception that is thrown when the satellite assembly for the resources of the neutral culture is missing. </summary> </member> <member name="M:System.Resources.MissingSatelliteAssemblyException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Resources.MissingSatelliteAssemblyException" /> class with default properties. </summary> </member> <member name="M:System.Resources.MissingSatelliteAssemblyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.MissingSatelliteAssemblyException" /> class from serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination of the exception. </param> </member> <member name="M:System.Resources.MissingSatelliteAssemblyException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.MissingSatelliteAssemblyException" /> class with the specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Resources.MissingSatelliteAssemblyException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.MissingSatelliteAssemblyException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Resources.MissingSatelliteAssemblyException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.MissingSatelliteAssemblyException" /> class with a specified error message and the name of a neutral culture. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="cultureName"> The name of the neutral culture. </param> </member> <member name="P:System.Resources.MissingSatelliteAssemblyException.CultureName"> <summary> Gets the name of a neutral culture. </summary> <returns> A <see cref="T:System.String" /> object with the name of the neutral culture. </returns> </member> <member name="T:System.Resources.NeutralResourcesLanguageAttribute"> <summary> Informs the <see cref="T:System.Resources.ResourceManager" /> of the neutral culture of an assembly. This class cannot be inherited. </summary> </member> <member name="M:System.Resources.NeutralResourcesLanguageAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.NeutralResourcesLanguageAttribute" /> class. </summary> <param name="cultureName"> The name of the culture that the current assembly's neutral resources were written in. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="cultureName" /> parameter is null. </exception> </member> <member name="M:System.Resources.NeutralResourcesLanguageAttribute.#ctor(System.String,System.Resources.UltimateResourceFallbackLocation)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.NeutralResourcesLanguageAttribute" /> class with the specified ultimate resource fallback location. </summary> <param name="cultureName"> The name of the culture that the current assembly's neutral resources were written in. </param> <param name="location"> An <see cref="T:System.Resources.UltimateResourceFallbackLocation" /> enumeration value indicating the location from which to retrieve neutral fallback resources. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="cultureName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="location" /> is not a member of <see cref="T:System.Resources.UltimateResourceFallbackLocation" />. </exception> </member> <member name="P:System.Resources.NeutralResourcesLanguageAttribute.CultureName"> <summary> Gets the culture name. </summary> <returns> A <see cref="T:System.String" /> with the name of the default culture for the main assembly. </returns> </member> <member name="P:System.Resources.NeutralResourcesLanguageAttribute.Location"> <summary> Gets the location for the <see cref="T:System.Resources.ResourceManager" /> class to use to retrieve neutral resources by using the resource fallback process. </summary> <returns> The value of the <see cref="T:System.Resources.UltimateResourceFallbackLocation" /> enumeration that indicates the location (main assembly or satellite) from which to retrieve neutral resources. </returns> </member> <member name="T:System.Resources.ResourceManager"> <summary> Provides convenient access to culture-specific resources at run time. </summary> </member> <member name="M:System.Resources.ResourceManager.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Resources.ResourceManager" /> class with default values. </summary> </member> <member name="M:System.Resources.ResourceManager.#ctor(System.String,System.Reflection.Assembly)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.ResourceManager" /> class that looks up resources contained in files derived from the specified root name using the given <see cref="T:System.Reflection.Assembly" />. </summary> <param name="baseName"> The root name of the resources. For example, the root name for the resource file named "MyResource.en-US.resources" is "MyResource". </param> <param name="assembly"> The main <see cref="T:System.Reflection.Assembly" /> for the resources. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="baseName" /> or <paramref name="assembly" /> parameter is null. </exception> </member> <member name="M:System.Resources.ResourceManager.#ctor(System.String,System.Reflection.Assembly,System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.ResourceManager" /> class that looks up resources contained in files derived from the specified root name using the given <see cref="T:System.Reflection.Assembly" />. </summary> <param name="baseName"> The root name of the resources. For example, the root name for the resource file named "MyResource.en-US.resources" is "MyResource". </param> <param name="assembly"> The main <see cref="T:System.Reflection.Assembly" /> for the resources. </param> <param name="usingResourceSet"> The <see cref="T:System.Type" /> of the custom <see cref="T:System.Resources.ResourceSet" /> to use. If null, the default runtime <see cref="T:System.Resources.ResourceSet" /> is used. </param> <exception cref="T:System.ArgumentException"> <paramref name="usingResourceset" /> is not a derived class of <see cref="T:System.Resources.ResourceSet" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="baseName" /> or <paramref name="assembly" /> parameter is null. </exception> </member> <member name="M:System.Resources.ResourceManager.#ctor(System.Type)"> <summary> Creates a <see cref="T:System.Resources.ResourceManager" /> that looks up resources in satellite assemblies based on information from the specified <see cref="T:System.Type" />. </summary> <param name="resourceSource"> A <see cref="T:System.Type" /> from which the <see cref="T:System.Resources.ResourceManager" /> derives all information for finding .resources files. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="resourceSource" /> parameter is null. </exception> </member> <member name="P:System.Resources.ResourceManager.BaseName"> <summary> Gets the root name of the resource files that the <see cref="T:System.Resources.ResourceManager" /> searches for resources. </summary> <returns> The root name of the resource files that the <see cref="T:System.Resources.ResourceManager" /> searches for resources. </returns> </member> <member name="F:System.Resources.ResourceManager.BaseNameField"> <summary> Indicates the root name of the resource files that the <see cref="T:System.Resources.ResourceManager" /> searches for resources. </summary> </member> <member name="M:System.Resources.ResourceManager.CreateFileBasedResourceManager(System.String,System.String,System.Type)"> <summary> Returns a <see cref="T:System.Resources.ResourceManager" /> that searches a specific directory for resources instead of in the assembly manifest. </summary> <returns> The newly created <see cref="T:System.Resources.ResourceManager" /> that searches a specific directory for resources instead of in the assembly manifest. </returns> <param name="baseName"> The root name of the resources. For example, the root name for the resource file named "MyResource.en-US.resources" is "MyResource". </param> <param name="resourceDir"> The name of the directory to search for the resources. </param> <param name="usingResourceSet"> The <see cref="T:System.Type" /> of the custom <see cref="T:System.Resources.ResourceSet" /> to use. If null, the default runtime <see cref="T:System.Resources.ResourceSet" /> is used. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="baseName" /> or <paramref name="resourceDir" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Resources.ResourceManager.FallbackLocation"> <summary> Gets or sets the location from which to retrieve neutral fallback resources. </summary> <returns> One of the <see cref="T:System.Resources.UltimateResourceFallbackLocation" /> values. </returns> </member> <member name="M:System.Resources.ResourceManager.GetNeutralResourcesLanguage(System.Reflection.Assembly)"> <summary> Returns the <see cref="T:System.Globalization.CultureInfo" /> for the main assembly's neutral resources by reading the value of the <see cref="T:System.Resources.NeutralResourcesLanguageAttribute" /> on a specified <see cref="T:System.Reflection.Assembly" />. </summary> <returns> The culture from the <see cref="T:System.Resources.NeutralResourcesLanguageAttribute" />, if found; otherwise, <see cref="P:System.Globalization.CultureInfo.InvariantCulture" />. </returns> <param name="a"> The assembly for which to return a <see cref="T:System.Globalization.CultureInfo" />. </param> </member> <member name="M:System.Resources.ResourceManager.GetObject(System.String)"> <summary> Returns the value of the specified <see cref="T:System.Object" /> resource. </summary> <returns> The value of the resource localized for the caller's current culture settings. If a match is not possible, null is returned. The resource value can be null. </returns> <param name="name"> The name of the resource to get. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Resources.MissingManifestResourceException"> No usable set of resources has been found, and there are no neutral culture resources. </exception> </member> <member name="M:System.Resources.ResourceManager.GetObject(System.String,System.Globalization.CultureInfo)"> <summary> Gets the value of the <see cref="T:System.Object" /> resource localized for the specified culture. </summary> <returns> The value of the resource, localized for the specified culture. If a "best match" is not possible, null is returned. </returns> <param name="name"> The name of the resource to get. </param> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> object that represents the culture for which the resource is localized. Note that if the resource is not localized for this culture, the lookup will fall back using the culture's <see cref="P:System.Globalization.CultureInfo.Parent" /> property, stopping after checking in the neutral culture. If this value is null, the <see cref="T:System.Globalization.CultureInfo" /> is obtained using the culture's <see cref="P:System.Globalization.CultureInfo.CurrentUICulture" /> property. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Resources.MissingManifestResourceException"> No usable set of resources have been found, and there are no neutral culture resources. </exception> </member> <member name="M:System.Resources.ResourceManager.GetResourceFileName(System.Globalization.CultureInfo)"> <summary> Generates the name for the resource file for the given <see cref="T:System.Globalization.CultureInfo" />. </summary> <returns> The name that can be used for a resource file for the given <see cref="T:System.Globalization.CultureInfo" />. </returns> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> for which a resource file name is constructed. </param> </member> <member name="M:System.Resources.ResourceManager.GetResourceSet(System.Globalization.CultureInfo,System.Boolean,System.Boolean)"> <summary> Gets the <see cref="T:System.Resources.ResourceSet" /> for a particular culture. </summary> <returns> The specified <see cref="T:System.Resources.ResourceSet" />. </returns> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> to look for. </param> <param name="createIfNotExists"> If true and if the <see cref="T:System.Resources.ResourceSet" /> has not been loaded yet, load it. </param> <param name="tryParents"> If the <see cref="T:System.Resources.ResourceSet" /> cannot be loaded, try parent <see cref="T:System.Globalization.CultureInfo" /> objects to see if they exist. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="culture" /> parameter is null. </exception> </member> <member name="M:System.Resources.ResourceManager.GetSatelliteContractVersion(System.Reflection.Assembly)"> <summary> Returns the <see cref="T:System.Version" /> specified by the <see cref="T:System.Resources.SatelliteContractVersionAttribute" /> in the given assembly. </summary> <returns> The satellite contract <see cref="T:System.Version" /> of the given assembly, or null if no version was found. </returns> <param name="a"> The <see cref="T:System.Reflection.Assembly" /> for which to look up the <see cref="T:System.Resources.SatelliteContractVersionAttribute" />. </param> <exception cref="T:System.ArgumentException"> The <see cref="T:System.Version" /> found in the assembly <paramref name="a" /> is invalid. </exception> </member> <member name="M:System.Resources.ResourceManager.GetStream(System.String)"> <summary> Returns an <see cref="T:System.IO.UnmanagedMemoryStream" /> object from the specified resource. </summary> <returns> An <see cref="T:System.IO.UnmanagedMemoryStream" /> object. </returns> <param name="name"> The name of a resource. </param> <exception cref="T:System.InvalidOperationException"> The value of the specified resource is not a <see cref="T:System.IO.MemoryStream" /> object. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.Resources.MissingManifestResourceException"> No usable set of resources is found, and there are no neutral resources. </exception> </member> <member name="M:System.Resources.ResourceManager.GetStream(System.String,System.Globalization.CultureInfo)"> <summary> Returns an <see cref="T:System.IO.UnmanagedMemoryStream" /> object from the specified resource, using the specified culture. </summary> <returns> An <see cref="T:System.IO.UnmanagedMemoryStream" /> object. </returns> <param name="name"> The name of a resource. </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> object that specifies the culture to use for the resource lookup. If <paramref name="culture" /> is null, the culture for the current thread is used. </param> <exception cref="T:System.InvalidOperationException"> The value of the specified resource is not a <see cref="T:System.IO.MemoryStream" /> object. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.Resources.MissingManifestResourceException"> No usable set of resources is found, and there are no neutral resources. </exception> </member> <member name="M:System.Resources.ResourceManager.GetString(System.String)"> <summary> Returns the value of the specified <see cref="T:System.String" /> resource. </summary> <returns> The value of the resource localized for the caller's current culture settings. If a match is not possible, null is returned. </returns> <param name="name"> The name of the resource to get. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.InvalidOperationException"> The value of the specified resource is not a string. </exception> <exception cref="T:System.Resources.MissingManifestResourceException"> No usable set of resources has been found, and there are no neutral culture resources. </exception> </member> <member name="M:System.Resources.ResourceManager.GetString(System.String,System.Globalization.CultureInfo)"> <summary> Gets the value of the <see cref="T:System.String" /> resource localized for the specified culture. </summary> <returns> The value of the resource localized for the specified culture. If a best match is not possible, null is returned. </returns> <param name="name"> The name of the resource to get. </param> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> object that represents the culture for which the resource is localized. Note that if the resource is not localized for this culture, the lookup will fall back using the culture's <see cref="P:System.Globalization.CultureInfo.Parent" /> property, stopping after looking in the neutral culture. If this value is null, the <see cref="T:System.Globalization.CultureInfo" /> is obtained using the culture's <see cref="P:System.Globalization.CultureInfo.CurrentUICulture" /> property. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.InvalidOperationException"> The value of the specified resource is not a <see cref="T:System.String" />. </exception> <exception cref="T:System.Resources.MissingManifestResourceException"> No usable set of resources has been found, and there are no neutral culture resources. </exception> </member> <member name="F:System.Resources.ResourceManager.HeaderVersionNumber"> <summary> A constant readonly value indicating the version of resource file headers that the current implementation of <see cref="T:System.Resources.ResourceManager" /> can interpret and produce. </summary> </member> <member name="P:System.Resources.ResourceManager.IgnoreCase"> <summary> Gets or sets a Boolean value indicating whether the current instance of ResourceManager allows case-insensitive resource lookups in the <see cref="M:System.Resources.ResourceManager.GetString(System.String)" /> and <see cref="M:System.Resources.ResourceManager.GetObject(System.String)" /> methods. </summary> <returns> A Boolean value indicating whether the case of the resource names should be ignored. </returns> </member> <member name="M:System.Resources.ResourceManager.InternalGetResourceSet(System.Globalization.CultureInfo,System.Boolean,System.Boolean)"> <summary> Provides the implementation for finding a <see cref="T:System.Resources.ResourceSet" />. </summary> <returns> The specified <see cref="T:System.Resources.ResourceSet" />. </returns> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> to look for. </param> <param name="createIfNotExists"> If true and if the <see cref="T:System.Resources.ResourceSet" /> has not been loaded yet, load it. </param> <param name="tryParents"> If the <see cref="T:System.Resources.ResourceSet" /> cannot be loaded, try parent <see cref="T:System.Globalization.CultureInfo" /> objects to see if they exist. </param> <exception cref="T:System.Resources.MissingManifestResourceException"> The main assembly does not contain a .resources file and it is required to look up a resource. </exception> <exception cref="T:System.ExecutionEngineException"> There was an internal error in the runtime. </exception> <exception cref="T:System.Resources.MissingSatelliteAssemblyException"> The satellite assembly associated with <paramref name="culture" /> could not be located. </exception> </member> <member name="F:System.Resources.ResourceManager.MagicNumber"> <summary> Holds the number used to identify resource files. </summary> </member> <member name="F:System.Resources.ResourceManager.MainAssembly"> <summary> Indicates the main <see cref="T:System.Reflection.Assembly" /> that contains the resources. </summary> </member> <member name="M:System.Resources.ResourceManager.ReleaseAllResources"> <summary> Tells the <see cref="T:System.Resources.ResourceManager" /> to call <see cref="M:System.Resources.ResourceSet.Close" /> on all <see cref="T:System.Resources.ResourceSet" /> objects and release all resources. </summary> </member> <member name="F:System.Resources.ResourceManager.ResourceSets"> <summary> Contains a <see cref="T:System.Collections.Hashtable" /> that returns a mapping from cultures to <see cref="T:System.Resources.ResourceSet" /> objects. </summary> </member> <member name="P:System.Resources.ResourceManager.ResourceSetType"> <summary> Gets the <see cref="T:System.Type" /> of the <see cref="T:System.Resources.ResourceSet" /> the <see cref="T:System.Resources.ResourceManager" /> uses to construct a <see cref="T:System.Resources.ResourceSet" /> object. </summary> <returns> The <see cref="T:System.Type" /> of the <see cref="T:System.Resources.ResourceSet" /> the <see cref="T:System.Resources.ResourceManager" /> uses to construct a <see cref="T:System.Resources.ResourceSet" /> object. </returns> </member> <member name="T:System.Resources.ResourceReader"> <summary> Enumerates .resources files and streams, reading sequential resource name and value pairs. </summary> </member> <member name="M:System.Resources.ResourceReader.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.ResourceReader" /> class for the specified stream. </summary> <param name="stream"> The input stream for reading resources. </param> <exception cref="T:System.ArgumentException"> The <paramref name="stream" /> is not readable. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="stream" /> parameter is null. </exception> <exception cref="T:System.IO.IOException"> An I/O error has occurred while accessing <paramref name="stream" />. </exception> <exception cref="T:System.BadImageFormatException"> The resource file has an invalid format. For example, the length of the file is zero. </exception> </member> <member name="M:System.Resources.ResourceReader.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.ResourceReader" /> class for the specified resource file. </summary> <param name="fileName"> The path of the resource file to be read. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="fileName" /> parameter is null. </exception> <exception cref="T:System.IO.FileNotFoundException"> The file cannot be found. </exception> <exception cref="T:System.IO.IOException"> An I/O error has occurred. </exception> <exception cref="T:System.BadImageFormatException"> The resource file has an invalid format. For example, the length of the file is zero. </exception> </member> <member name="M:System.Resources.ResourceReader.Close"> <summary> Releases all operating system resources associated with this <see cref="T:System.Resources.ResourceReader" />. </summary> </member> <member name="M:System.Resources.ResourceReader.GetEnumerator"> <summary> Returns an enumerator for this <see cref="T:System.Resources.ResourceReader" />. </summary> <returns> An <see cref="T:System.Collections.IDictionaryEnumerator" /> for this <see cref="T:System.Resources.ResourceReader" />. </returns> <exception cref="T:System.ObjectDisposedException"> The reader has been closed or disposed, and cannot be accessed. </exception> </member> <member name="M:System.Resources.ResourceReader.GetResourceData(System.String,System.String@,System.Byte[]@)"> <summary> Retrieves the type name and data content of a named resource from an open resource file or stream. </summary> <param name="resourceName"> The name of a resource. </param> <param name="resourceType"> When this method returns, contains a string that is the type name of the retrieved type. This parameter is passed uninitialized. </param> <param name="resourceData"> When this method returns, contains a byte array that is the binary representation of the retrieved type. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="resourceName" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="resourceName" /> does not exist. </exception> <exception cref="T:System.FormatException"> The retrieved resource data is corrupted. </exception> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Resources.ResourceReader" /> object is not initialized. The probable cause is that the <see cref="T:System.Resources.ResourceReader" /> object is closed. </exception> </member> <member name="M:System.Resources.ResourceReader.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an enumerator for this <see cref="T:System.Resources.ResourceReader" />. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for this <see cref="T:System.Resources.ResourceReader" />. </returns> <exception cref="T:System.InvalidOperationException"> The reader has already been closed, and thus cannot be accessed. </exception> </member> <member name="M:System.Resources.ResourceReader.System#IDisposable#Dispose"> <summary> Releases the resources used by the <see cref="T:System.Resources.ResourceReader" />. </summary> </member> <member name="T:System.Resources.ResourceSet"> <summary> Stores all the resources localized for one particular culture, ignoring all other cultures, including any fallback rules. </summary> </member> <member name="M:System.Resources.ResourceSet.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Resources.ResourceSet" /> class with default properties. </summary> </member> <member name="M:System.Resources.ResourceSet.#ctor(System.IO.Stream)"> <summary> Creates a new instance of the <see cref="T:System.Resources.ResourceSet" /> class using the system default <see cref="T:System.Resources.ResourceReader" /> that reads resources from the given stream. </summary> <param name="stream"> The <see cref="T:System.IO.Stream" /> of resources to be read. The stream should refer to an existing resources file. </param> <exception cref="T:System.ArgumentException"> The <paramref name="stream" /> is not readable. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="stream" /> parameter is null. </exception> </member> <member name="M:System.Resources.ResourceSet.#ctor(System.Resources.IResourceReader)"> <summary> Creates a new instance of the <see cref="T:System.Resources.ResourceSet" /> class using the specified resource reader. </summary> <param name="reader"> The reader that will be used. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="reader" /> parameter is null. </exception> </member> <member name="M:System.Resources.ResourceSet.#ctor(System.String)"> <summary> Creates a new instance of the <see cref="T:System.Resources.ResourceSet" /> class using the system default <see cref="T:System.Resources.ResourceReader" /> that opens and reads resources from the given file. </summary> <param name="fileName"> Resource file to read. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="fileName" /> parameter is null. </exception> </member> <member name="M:System.Resources.ResourceSet.Close"> <summary> Closes and releases any resources used by this <see cref="T:System.Resources.ResourceSet" />. </summary> </member> <member name="M:System.Resources.ResourceSet.Dispose"> <summary> Disposes of the resources (other than memory) used by the current instance of <see cref="T:System.Resources.ResourceSet" />. </summary> </member> <member name="M:System.Resources.ResourceSet.Dispose(System.Boolean)"> <summary> Releases resources (other than memory) associated with the current instance, closing internal managed objects if requested. </summary> <param name="disposing"> Indicates whether the objects contained in the current instance should be explicitly closed. </param> </member> <member name="M:System.Resources.ResourceSet.GetDefaultReader"> <summary> Returns the preferred resource reader class for this kind of <see cref="T:System.Resources.ResourceSet" />. </summary> <returns> Returns the <see cref="T:System.Type" /> for the preferred resource reader for this kind of <see cref="T:System.Resources.ResourceSet" />. </returns> </member> <member name="M:System.Resources.ResourceSet.GetDefaultWriter"> <summary> Returns the preferred resource writer class for this kind of <see cref="T:System.Resources.ResourceSet" />. </summary> <returns> Returns the <see cref="T:System.Type" /> for the preferred resource writer for this kind of <see cref="T:System.Resources.ResourceSet" />. </returns> </member> <member name="M:System.Resources.ResourceSet.GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> that can iterate through the <see cref="T:System.Resources.ResourceSet" />. </summary> <returns> An <see cref="T:System.Collections.IDictionaryEnumerator" /> for this <see cref="T:System.Resources.ResourceSet" />. </returns> <exception cref="T:System.ObjectDisposedException"> The resource set has been closed or disposed. </exception> </member> <member name="M:System.Resources.ResourceSet.GetObject(System.String)"> <summary> Searches for a resource object with the specified name. </summary> <returns> The requested resource. </returns> <param name="name"> Case-sensitive name of the resource to search for. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.ObjectDisposedException"> The object has been closed or disposed. </exception> </member> <member name="M:System.Resources.ResourceSet.GetObject(System.String,System.Boolean)"> <summary> Searches for a resource object with the specified name in a case-insensitive manner, if requested. </summary> <returns> The requested resource. </returns> <param name="name"> Name of the resource to search for. </param> <param name="ignoreCase"> Indicates whether the case of the specified name should be ignored. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.ObjectDisposedException"> The object has been closed or disposed. </exception> </member> <member name="M:System.Resources.ResourceSet.GetString(System.String)"> <summary> Searches for a <see cref="T:System.String" /> resource with the specified name. </summary> <returns> The value of a resource, if the value is a <see cref="T:System.String" />. </returns> <param name="name"> Name of the resource to search for. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.ObjectDisposedException"> The object has been closed or disposed. </exception> </member> <member name="M:System.Resources.ResourceSet.GetString(System.String,System.Boolean)"> <summary> Searches for a <see cref="T:System.String" /> resource with the specified name in a case-insensitive manner, if requested. </summary> <returns> The value of a resource, if the value is a <see cref="T:System.String" />. </returns> <param name="name"> Name of the resource to search for. </param> <param name="ignoreCase"> Indicates whether the case of the case of the specified name should be ignored. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.ObjectDisposedException"> The object has been closed or disposed. </exception> </member> <member name="F:System.Resources.ResourceSet.Reader"> <summary> Indicates the <see cref="T:System.Resources.IResourceReader" /> used to read the resources. </summary> </member> <member name="M:System.Resources.ResourceSet.ReadResources"> <summary> Reads all the resources and stores them in a <see cref="T:System.Collections.Hashtable" /> indicated in the <see cref="F:System.Resources.ResourceSet.Table" /> property. </summary> </member> <member name="M:System.Resources.ResourceSet.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an <see cref="T:System.Collections.IEnumerator" /> object to avoid a race condition with Dispose. This member is not intended to be used directly from your code. </summary> <returns> An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the current <see cref="T:System.Resources.ResourceSet" /> object. </returns> </member> <member name="F:System.Resources.ResourceSet.Table"> <summary> The <see cref="T:System.Collections.Hashtable" /> in which the resources are stored. </summary> </member> <member name="T:System.Resources.ResourceWriter"> <summary> Writes resources in the system-default format to an output file or an output stream. This class cannot be inherited. </summary> </member> <member name="M:System.Resources.ResourceWriter.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.ResourceWriter" /> class that writes the resources to the provided stream. </summary> <param name="stream"> The output stream. </param> <exception cref="T:System.ArgumentException"> The <paramref name="stream" /> parameter is not writable. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="stream" /> parameter is null. </exception> </member> <member name="M:System.Resources.ResourceWriter.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.ResourceWriter" /> class that writes the resources to the specified file. </summary> <param name="fileName"> The output file name. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="fileName" /> parameter is null. </exception> </member> <member name="M:System.Resources.ResourceWriter.AddResource(System.String,System.Byte[])"> <summary> Adds a named resource specified as a byte array to the list of resources to be written. </summary> <param name="name"> The name of the resource. </param> <param name="value"> Value of the resource as an 8-bit unsigned integer array. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> (or a name that varies only by capitalization) has already been added to this <see cref="T:System.Resources.ResourceWriter" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> or <paramref name="value" /> parameter is null. </exception> <exception cref="T:System.InvalidOperationException"> This <see cref="T:System.Resources.ResourceWriter" /> has been closed and its <see cref="T:System.Collections.Hashtable" /> is unavailable. </exception> </member> <member name="M:System.Resources.ResourceWriter.AddResource(System.String,System.Object)"> <summary> Adds a named resource specified as an object to the list of resources to be written. </summary> <param name="name"> The name of the resource. </param> <param name="value"> The value of the resource. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> (or a name that varies only by capitalization) has already been added to this <see cref="T:System.Resources.ResourceWriter" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> or <paramref name="value" /> parameter is null. </exception> <exception cref="T:System.InvalidOperationException"> This <see cref="T:System.Resources.ResourceWriter" /> has been closed and its <see cref="T:System.Collections.Hashtable" /> is unavailable. </exception> </member> <member name="M:System.Resources.ResourceWriter.AddResource(System.String,System.String)"> <summary> Adds a <see cref="T:System.String" /> resource to the list of resources to be written. </summary> <param name="name"> The name of the resource. </param> <param name="value"> The value of the resource. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> (or a name that varies only by capitalization) has already been added to this ResourceWriter. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> or <paramref name="value" /> parameter is null. </exception> <exception cref="T:System.InvalidOperationException"> This <see cref="T:System.Resources.ResourceWriter" /> has been closed and its <see cref="T:System.Collections.Hashtable" /> is unavailable. </exception> </member> <member name="M:System.Resources.ResourceWriter.AddResourceData(System.String,System.String,System.Byte[])"> <summary> Adds a unit of data as a resource to the list of resources to be written. </summary> <param name="name"> A name that identifies the resource that contains the added data. </param> <param name="typeName"> The type name of the added data. </param> <param name="serializedData"> A byte array that contains the binary representation of the added data. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" />, <paramref name="typeName" />, or <paramref name="serializedData" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> (or a name that varies only by capitalization) has already been added to this <see cref="T:System.Resources.ResourceWriter" /> object. </exception> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Resources.ResourceWriter" /> object is not initialized. The probable cause is that the <see cref="T:System.Resources.ResourceWriter" /> object is closed. </exception> </member> <member name="M:System.Resources.ResourceWriter.Close"> <summary> Saves the resources to the output stream and then closes it. </summary> <exception cref="T:System.IO.IOException"> An I/O error has occurred. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An error has occurred during serialization of the object. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Resources.ResourceWriter.Dispose"> <summary> Allows users to close the resource file or stream, explicitly releasing resources. </summary> <exception cref="T:System.IO.IOException"> An I/O error has occurred. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An error has occurred during serialization of the object. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Resources.ResourceWriter.Generate"> <summary> Saves all resources to the output stream in the system default format. </summary> <exception cref="T:System.IO.IOException"> An I/O error occurred. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An error occurred during serialization of the object. </exception> <exception cref="T:System.InvalidOperationException"> This <see cref="T:System.Resources.ResourceWriter" /> has been closed and its <see cref="T:System.Collections.Hashtable" /> is unavailable. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Resources.SatelliteContractVersionAttribute"> <summary> Instructs the <see cref="T:System.Resources.ResourceManager" /> to ask for a particular version of a satellite assembly to simplify updates of the main assembly of an application. </summary> </member> <member name="M:System.Resources.SatelliteContractVersionAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Resources.SatelliteContractVersionAttribute" /> class. </summary> <param name="version"> A <see cref="T:System.String" /> with the version of the satellite assemblies to load. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="version" /> parameter is null. </exception> </member> <member name="P:System.Resources.SatelliteContractVersionAttribute.Version"> <summary> Gets the version of the satellite assemblies with the required resources. </summary> <returns> A <see cref="T:System.String" /> containing the version of the satellite assemblies with the required resources. </returns> </member> <member name="T:System.Resources.UltimateResourceFallbackLocation"> <summary> Specifies the assembly for the <see cref="T:System.Resources.ResourceManager" /> class to use to retrieve neutral resources by using the Packaging and Deploying Resources. </summary> </member> <member name="F:System.Resources.UltimateResourceFallbackLocation.MainAssembly"> <summary> Fallback resources are located in the main assembly. </summary> </member> <member name="F:System.Resources.UltimateResourceFallbackLocation.Satellite"> <summary> Fallback resources are located in a satellite assembly in the location specified by the <see cref="P:System.Resources.NeutralResourcesLanguageAttribute.Location" /> property. </summary> </member> <member name="T:System.Runtime.GCSettings"> <summary> Specifies the garbage collection settings for the current process. </summary> </member> <member name="P:System.Runtime.GCSettings.IsServerGC"> <summary> Gets a value indicating whether server garbage collection is enabled. </summary> <returns>true if server garbage collection is enabled; otherwise, false. </returns> </member> <member name="T:System.Runtime.MemoryFailPoint"> <summary> Check for sufficient memory resources prior to execution. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.MemoryFailPoint.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.MemoryFailPoint" /> class, specifying the amount of memory required for successful execution. </summary> <param name="sizeInMegabytes"> The required memory size in megabytes. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The specified memory size is negative. </exception> <exception cref="T:System.InsufficientMemoryException"> There is insufficient memory to begin execution of the code protected by the gate. </exception> </member> <member name="M:System.Runtime.MemoryFailPoint.Dispose"> <summary> Releases all resources used by the <see cref="T:System.Runtime.MemoryFailPoint" />. </summary> </member> <member name="T:System.Runtime.GCLatencyMode"> <summary> Adjusts the time that the garbage collector intrudes in your application. </summary> </member> <member name="F:System.Runtime.GCLatencyMode.Batch"> <summary> Disables garbage collection concurrency and reclaims objects in a batch call. This is the most intrusive mode. </summary> </member> <member name="F:System.Runtime.GCLatencyMode.Interactive"> <summary> Enables garbage collection concurrency and reclaims objects while the application is running. This is the default mode for garbage collection on a workstation and is less intrusive. It balances responsiveness with throughput. </summary> </member> <member name="F:System.Runtime.GCLatencyMode.LowLatency"> <summary> Enables garbage collection that is more conservative in reclaiming objects. Full Collections occur only if the system is under memory pressure while generation 0 and generation 1 collections might occur more frequently. This is the least intrusive mode. </summary> </member> <member name="P:System.Runtime.GCSettings.LatencyMode"> <summary> Gets or sets the current latency mode for garbage collection. </summary> <returns> One of the <see cref="T:System.Runtime.GCLatencyMode" /> values. </returns> </member> <member name="T:System.Runtime.CompilerServices.AccessedThroughPropertyAttribute"> <summary> Specifies the name of the property that accesses the attributed field. </summary> </member> <member name="M:System.Runtime.CompilerServices.AccessedThroughPropertyAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the AccessedThroughPropertyAttribute class with the name of the property used to access the attributed field. </summary> <param name="propertyName"> The name of the property used to access the attributed field. </param> </member> <member name="P:System.Runtime.CompilerServices.AccessedThroughPropertyAttribute.PropertyName"> <summary> Gets the name of the property used to access the attributed field. </summary> <returns> The name of the property used to access the attributed field. </returns> </member> <member name="T:System.Runtime.CompilerServices.CallConvCdecl"> <summary> Indicates that a method should use the Cdecl calling convention. </summary> </member> <member name="M:System.Runtime.CompilerServices.CallConvCdecl.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CallConvCdecl" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.CallConvFastcall"> <summary> This calling convention is not supported in this version of the .NET Framework. </summary> </member> <member name="M:System.Runtime.CompilerServices.CallConvFastcall.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CallConvFastcall" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.CallConvStdcall"> <summary> Indicates that a method should use the StdCall calling convention. </summary> </member> <member name="M:System.Runtime.CompilerServices.CallConvStdcall.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CallConvStdcall" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.CallConvThiscall"> <summary> Indicates that a method should use the ThisCall calling convention. </summary> </member> <member name="M:System.Runtime.CompilerServices.CallConvThiscall.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CallConvThiscall" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.CompilationRelaxations"> <summary> Specifies parameters that control the strictness of the code generated by the common language runtime's just-in-time (JIT) compiler. </summary> </member> <member name="F:System.Runtime.CompilerServices.CompilationRelaxations.NoStringInterning"> <summary> Marks an assembly as not requiring string-literal interning. </summary> </member> <member name="T:System.Runtime.CompilerServices.CompilationRelaxationsAttribute"> <summary> Controls the strictness of the code generated by the common language runtime's just-in-time (JIT) compiler. </summary> </member> <member name="M:System.Runtime.CompilerServices.CompilationRelaxationsAttribute.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CompilationRelaxationsAttribute" /> class with the specified compilation relaxations. </summary> <param name="relaxations"> The compilation relaxations. </param> </member> <member name="M:System.Runtime.CompilerServices.CompilationRelaxationsAttribute.#ctor(System.Runtime.CompilerServices.CompilationRelaxations)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CompilationRelaxationsAttribute" /> class with the specified <see cref="T:System.Runtime.CompilerServices.CompilationRelaxations" /> value. </summary> <param name="relaxations"> One of the <see cref="T:System.Runtime.CompilerServices.CompilationRelaxations" /> values. </param> </member> <member name="P:System.Runtime.CompilerServices.CompilationRelaxationsAttribute.CompilationRelaxations"> <summary> Gets the compilation relaxations specified when the current object was constructed. </summary> <returns> The compilation relaxations specified when the current object was constructed. Use the <see cref="T:System.Runtime.CompilerServices.CompilationRelaxations" /> enumeration with the <see cref="P:System.Runtime.CompilerServices.CompilationRelaxationsAttribute.CompilationRelaxations" /> property. </returns> </member> <member name="T:System.Runtime.CompilerServices.CompilerGeneratedAttribute"> <summary> Distinguishes a compiler-generated element from a user-generated element. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.CompilerGeneratedAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CompilerGeneratedAttribute" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.CompilerGlobalScopeAttribute"> <summary> Indicates that a class should be treated as if it has global scope. </summary> </member> <member name="M:System.Runtime.CompilerServices.CompilerGlobalScopeAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CompilerGlobalScopeAttribute" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.CompilerMarshalOverride"> <summary> Indicates that the modified instance of a variable differs from its true type when marshaling. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.CustomConstantAttribute"> <summary> Defines a constant value that a compiler can persist for a field or method parameter. </summary> </member> <member name="M:System.Runtime.CompilerServices.CustomConstantAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CustomConstantAttribute" /> class. </summary> </member> <member name="P:System.Runtime.CompilerServices.CustomConstantAttribute.Value"> <summary> Gets the constant value stored by this attribute. </summary> <returns> The constant value stored by this attribute. </returns> </member> <member name="T:System.Runtime.CompilerServices.DateTimeConstantAttribute"> <summary> Persists an 8-byte <see cref="T:System.DateTime" /> constant for a field or parameter. </summary> </member> <member name="M:System.Runtime.CompilerServices.DateTimeConstantAttribute.#ctor(System.Int64)"> <summary> Initializes a new instance of the DateTimeConstantAttribute class with the number of 100-nanosecond ticks that represent the date and time of this instance. </summary> <param name="ticks"> The number of 100-nanosecond ticks that represent the date and time of this instance. </param> </member> <member name="P:System.Runtime.CompilerServices.DateTimeConstantAttribute.Value"> <summary> Gets the number of 100-nanosecond ticks that represent the date and time of this instance. </summary> <returns> The number of 100-nanosecond ticks that represent the date and time of this instance. </returns> </member> <member name="T:System.Runtime.CompilerServices.DecimalConstantAttribute"> <summary> Stores the value of a <see cref="T:System.Decimal" /> constant in metadata. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.DecimalConstantAttribute.#ctor(System.Byte,System.Byte,System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DecimalConstantAttribute" /> class with the specified signed integer values. </summary> <param name="scale"> The power of 10 scaling factor that indicates the number of digits to the right of the decimal point. Valid values are 0 through 28 inclusive. </param> <param name="sign"> A value of 0 indicates a positive value, and a value of 1 indicates a negative value. </param> <param name="hi"> The high 32 bits of the 96-bit <see cref="P:System.Runtime.CompilerServices.DecimalConstantAttribute.Value" />. </param> <param name="mid"> The middle 32 bits of the 96-bit <see cref="P:System.Runtime.CompilerServices.DecimalConstantAttribute.Value" />. </param> <param name="low"> The low 32 bits of the 96-bit <see cref="P:System.Runtime.CompilerServices.DecimalConstantAttribute.Value" />. </param> </member> <member name="M:System.Runtime.CompilerServices.DecimalConstantAttribute.#ctor(System.Byte,System.Byte,System.UInt32,System.UInt32,System.UInt32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DecimalConstantAttribute" /> class with the specified unsigned integer values. </summary> <param name="scale"> The power of 10 scaling factor that indicates the number of digits to the right of the decimal point. Valid values are 0 through 28 inclusive. </param> <param name="sign"> A value of 0 indicates a positive value, and a value of 1 indicates a negative value. </param> <param name="hi"> The high 32 bits of the 96-bit <see cref="P:System.Runtime.CompilerServices.DecimalConstantAttribute.Value" />. </param> <param name="mid"> The middle 32 bits of the 96-bit <see cref="P:System.Runtime.CompilerServices.DecimalConstantAttribute.Value" />. </param> <param name="low"> The low 32 bits of the 96-bit <see cref="P:System.Runtime.CompilerServices.DecimalConstantAttribute.Value" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="scale" /> > 28. </exception> </member> <member name="P:System.Runtime.CompilerServices.DecimalConstantAttribute.Value"> <summary> Gets the decimal constant stored in this attribute. </summary> <returns> The decimal constant stored in this attribute. </returns> </member> <member name="T:System.Runtime.CompilerServices.DefaultDependencyAttribute"> <summary> Provides a hint to the common language runtime (CLR) indicating how likely a dependency is to be loaded. This class is used in a dependent assembly to indicate what hint should be used when the parent does not specify the <see cref="T:System.Runtime.CompilerServices.DependencyAttribute" /> attribute. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.DefaultDependencyAttribute.#ctor(System.Runtime.CompilerServices.LoadHint)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DefaultDependencyAttribute" /> class with the specified <see cref="T:System.Runtime.CompilerServices.LoadHint" /> binding. </summary> <param name="loadHintArgument"> One of the <see cref="T:System.Runtime.CompilerServices.LoadHint" /> values that indicates the default binding preference. </param> </member> <member name="P:System.Runtime.CompilerServices.DefaultDependencyAttribute.LoadHint"> <summary> Gets the <see cref="T:System.Runtime.CompilerServices.LoadHint" /> value that indicates when an assembly loads a dependency. </summary> <returns> One of the <see cref="T:System.Runtime.CompilerServices.LoadHint" /> values. </returns> </member> <member name="T:System.Runtime.CompilerServices.DependencyAttribute"> <summary> Indicates when a dependency is to be loaded by the referring assembly. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.DependencyAttribute.#ctor(System.String,System.Runtime.CompilerServices.LoadHint)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DependencyAttribute" /> class with the specified <see cref="T:System.Runtime.CompilerServices.LoadHint" /> value. </summary> <param name="dependentAssemblyArgument"> The dependent assembly to bind to. </param> <param name="loadHintArgument"> One of the <see cref="T:System.Runtime.CompilerServices.LoadHint" /> values. </param> </member> <member name="P:System.Runtime.CompilerServices.DependencyAttribute.DependentAssembly"> <summary> Gets the value of the dependent assembly. </summary> <returns> The name of the dependent assembly. </returns> </member> <member name="P:System.Runtime.CompilerServices.DependencyAttribute.LoadHint"> <summary> Gets the <see cref="T:System.Runtime.CompilerServices.LoadHint" /> value that indicates when an assembly is to load a dependency. </summary> <returns> One of the <see cref="T:System.Runtime.CompilerServices.LoadHint" /> values. </returns> </member> <member name="T:System.Runtime.CompilerServices.DiscardableAttribute"> <summary> Marks a type definition as discardable. </summary> </member> <member name="M:System.Runtime.CompilerServices.DiscardableAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DiscardableAttribute" /> class with default values. </summary> </member> <member name="T:System.Runtime.CompilerServices.FixedAddressValueTypeAttribute"> <summary> Fixes the address of a static value type field throughout its lifetime. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.FixedAddressValueTypeAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.FixedAddressValueTypeAttribute" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.FixedBufferAttribute"> <summary> Indicates that a field should be treated as containing a fixed number of elements of the specified primitive type. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.FixedBufferAttribute.#ctor(System.Type,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.FixedBufferAttribute" /> class. </summary> <param name="elementType"> The type of the elements contained in the buffer. </param> <param name="length"> The number of elements in the buffer. </param> </member> <member name="P:System.Runtime.CompilerServices.FixedBufferAttribute.ElementType"> <summary> Gets the type of the elements contained in the fixed buffer. </summary> <returns> The type of the elements. </returns> </member> <member name="P:System.Runtime.CompilerServices.FixedBufferAttribute.Length"> <summary> Gets the number of elements in the fixed buffer. </summary> <returns> The number of elements in the fixed buffer. </returns> </member> <member name="T:System.Runtime.CompilerServices.HasCopySemanticsAttribute"> <summary> This class is not used in the .NET Framework version 2.0 and is reserved for future use. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.HasCopySemanticsAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.HasCopySemanticsAttribute" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.IDispatchConstantAttribute"> <summary> Indicates that the default value for the attributed field or parameter is an instance of <see cref="T:System.Runtime.InteropServices.DispatchWrapper" />, where the <see cref="P:System.Runtime.InteropServices.DispatchWrapper.WrappedObject" /> is null. </summary> </member> <member name="M:System.Runtime.CompilerServices.IDispatchConstantAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.IDispatchConstantAttribute" /> class. </summary> </member> <member name="P:System.Runtime.CompilerServices.IDispatchConstantAttribute.Value"> <summary> Gets the IDispatch constant stored in this attribute. </summary> <returns> The IDispatch constant stored in this attribute. Only null is allowed for an IDispatch constant value. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Runtime.CompilerServices.IndexerNameAttribute"> <summary> Indicates the name by which an indexer is known in programming languages that do not support indexers directly. </summary> </member> <member name="M:System.Runtime.CompilerServices.IndexerNameAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.IndexerNameAttribute" /> class. </summary> <param name="indexerName"> The name of the indexer, as shown to other languages. </param> </member> <member name="T:System.Runtime.CompilerServices.InternalsVisibleToAttribute"> <summary> Specifies that types that are ordinarily visible only within the current assembly are visible to another assembly. </summary> </member> <member name="M:System.Runtime.CompilerServices.InternalsVisibleToAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.InternalsVisibleToAttribute" /> class with the name of the specified friend assembly. </summary> <param name="assemblyName"> The name of a friend assembly. </param> </member> <member name="P:System.Runtime.CompilerServices.InternalsVisibleToAttribute.AssemblyName"> <summary> Gets the name of the friend assembly to which all types and type members that are marked with the internal keyword are to be made visible. </summary> <returns> A string that represents the name of the friend assembly. </returns> </member> <member name="T:System.Runtime.CompilerServices.IsBoxed"> <summary> Indicates that the modified reference type is a boxed value type. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsByValue"> <summary> Indicates that a modified method argument should be interpreted as having object passed-by-value semantics. This modifier is applied to reference types. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsConst"> <summary> Indicates that the modified type has a const modifier. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsCopyConstructed"> <summary> Indicates that any copying of values of this type must use the copy constructor provided by the type. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsExplicitlyDereferenced"> <summary> Indicates that a managed pointer represents a pointer parameter within a method signature. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsImplicitlyDereferenced"> <summary> Indicates that the modified garbage collection reference represents a reference parameter within a method signature. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsJitIntrinsic"> <summary> Indicates that a modified method is an intrinsic value for which the just-in-time (JIT) compiler can perform special code generation. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsLong"> <summary> Indicates that a modified integer is a standard C++ long value. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsPinned"> <summary> Indicates that a modified instance is pinned in memory. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsSignUnspecifiedByte"> <summary> Indicates that a modifier is neither signed nor unsigned. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsUdtReturn"> <summary> Indicates that a return type is a user-defined type. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IsVolatile"> <summary> Marks a field as volatile. This class cannot be inherited. </summary> </member> <member name="T:System.Runtime.CompilerServices.IUnknownConstantAttribute"> <summary> Indicates that the default value for the attributed field or parameter is an instance of <see cref="T:System.Runtime.InteropServices.UnknownWrapper" />, where the <see cref="P:System.Runtime.InteropServices.UnknownWrapper.WrappedObject" /> is null. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.IUnknownConstantAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.IUnknownConstantAttribute" /> class. </summary> </member> <member name="P:System.Runtime.CompilerServices.IUnknownConstantAttribute.Value"> <summary> Gets the IUnknown constant stored in this attribute. </summary> <returns> The IUnknown constant stored in this attribute. Only null is allowed for an IUnknown constant value. </returns> </member> <member name="T:System.Runtime.CompilerServices.LoadHint"> <summary> Specifies the preferred default binding for a dependent assembly. </summary> </member> <member name="F:System.Runtime.CompilerServices.LoadHint.Default"> <summary> No preference specified. </summary> </member> <member name="F:System.Runtime.CompilerServices.LoadHint.Always"> <summary> The dependency is always loaded. </summary> </member> <member name="F:System.Runtime.CompilerServices.LoadHint.Sometimes"> <summary> The dependency is sometimes loaded. </summary> </member> <member name="T:System.Runtime.CompilerServices.MethodCodeType"> <summary> Defines how a method is implemented. </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodCodeType.IL"> <summary> Specifies that the method implementation is in Microsoft intermediate language (MSIL). </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodCodeType.Native"> <summary> Specifies that the method is implemented in native code. </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodCodeType.OPTIL"> <summary> Specifies that the method implementation is in optimized intermediate language (OPTIL). </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodCodeType.Runtime"> <summary> Specifies that the method implementation is provided by the runtime. </summary> </member> <member name="T:System.Runtime.CompilerServices.MethodImplAttribute"> <summary> Specifies the details of how a method is implemented. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.MethodImplAttribute.#ctor"> <summary> Initializes a new instance of the MethodImplAttribute class. </summary> </member> <member name="M:System.Runtime.CompilerServices.MethodImplAttribute.#ctor(System.Int16)"> <summary> Initializes a new instance of the MethodImplAttribute class with the specified <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value. </summary> <param name="value"> A bitmask representing the desired <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value which specifies properties of the attributed method. </param> </member> <member name="M:System.Runtime.CompilerServices.MethodImplAttribute.#ctor(System.Runtime.CompilerServices.MethodImplOptions)"> <summary> Initializes a new instance of the MethodImplAttribute class with the specified <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value. </summary> <param name="methodImplOptions"> A <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value specifying properties of the attributed method. </param> </member> <member name="F:System.Runtime.CompilerServices.MethodImplAttribute.MethodCodeType"> <summary> A <see cref="T:System.Runtime.CompilerServices.MethodCodeType" /> value indicating what kind of implementation is provided for this method. </summary> </member> <member name="P:System.Runtime.CompilerServices.MethodImplAttribute.Value"> <summary> Gets the <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value describing the attributed method. </summary> <returns> The <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value describing the attributed method. </returns> </member> <member name="T:System.Runtime.CompilerServices.MethodImplOptions"> <summary> Defines the details of how a method is implemented. </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodImplOptions.Unmanaged"> <summary> Specifies that the method is implemented in unmanaged code. </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodImplOptions.ForwardRef"> <summary> Specifies that the method is declared, but its implementation is provided elsewhere. </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodImplOptions.PreserveSig"> <summary> Specifies that the method signature is exported exactly as declared. </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodImplOptions.InternalCall"> <summary> Specifies an internal call. An internal call is a call to a method that is implemented within the common language runtime itself. </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodImplOptions.Synchronized"> <summary> Specifies that the method can be executed by only one thread at a time. Static methods lock on the type, whereas instance methods lock on the instance. Only one thread can execute in any of the instance functions, and only one thread can execute in any of a class's static functions. </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodImplOptions.NoInlining"> <summary> Specifies that the method cannot be inlined. </summary> </member> <member name="F:System.Runtime.CompilerServices.MethodImplOptions.NoOptimization"> <summary> Specifies that the method is not optimized by the just-in-time (JIT) compiler or by native code generation (see Ngen.exe) when debugging possible code generation problems. </summary> </member> <member name="T:System.Runtime.CompilerServices.NativeCppClassAttribute"> <summary> Applies metadata to an assembly that indicates that a type is an unmanaged type. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.NativeCppClassAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.NativeCppClassAttribute" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.RequiredAttributeAttribute"> <summary> Specifies that an importing compiler must fully understand the semantics of a type definition, or refuse to use it. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.RequiredAttributeAttribute.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.RequiredAttributeAttribute" /> class. </summary> <param name="requiredContract"> A type that an importing compiler must fully understand. This parameter is not supported in the .NET Framework version 2.0 and later. </param> </member> <member name="P:System.Runtime.CompilerServices.RequiredAttributeAttribute.RequiredContract"> <summary> Gets a type that an importing compiler must fully understand. </summary> <returns> A type that an importing compiler must fully understand. </returns> </member> <member name="T:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute"> <summary> Specifies whether to wrap exceptions that do not derive from the <see cref="T:System.Exception" /> class with a <see cref="T:System.Runtime.CompilerServices.RuntimeWrappedException" /> object. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute" /> class. </summary> </member> <member name="P:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.WrapNonExceptionThrows"> <summary> Gets or sets a value that indicates whether to wrap exceptions that do not derive from the <see cref="T:System.Exception" /> class with a <see cref="T:System.Runtime.CompilerServices.RuntimeWrappedException" /> object. </summary> <returns>true if exceptions that do not derive from the <see cref="T:System.Exception" /> class should appear wrapped with a <see cref="T:System.Runtime.CompilerServices.RuntimeWrappedException" /> object; otherwise, false. </returns> </member> <member name="T:System.Runtime.CompilerServices.RuntimeHelpers"> <summary> Provides a set of static methods and properties that provide support for compilers. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.Equals(System.Object,System.Object)"> <summary> Determines whether the specified <see cref="T:System.Object" /> instances are considered equal. </summary> <returns>true if the <paramref name="o1" /> parameter is the same instance as the <paramref name="o2" /> parameter or if both are null or if o1.Equals(o2) returns true; otherwise, false. </returns> <param name="o1"> The first <see cref="T:System.Object" /> to compare. </param> <param name="o2"> The second <see cref="T:System.Object" /> to compare. </param> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(System.Runtime.CompilerServices.RuntimeHelpers.TryCode,System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode,System.Object)"> <summary> Executes code using a <see cref="T:System.Delegate" /> while using another <see cref="T:System.Delegate" /> to execute additional code in case of an exception. </summary> <param name="code"> A <see cref="T:System.Delegate" /> to the code to try. </param> <param name="backoutCode"> A <see cref="T:System.Delegate" /> to the code to run if a exception occurs. </param> <param name="userData"> The data to pass to <paramref name="code" /> and <paramref name="backoutCode" />. </param> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object)"> <summary> Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures such as a hash table. </summary> <returns> A hash code for the <see cref="T:System.Object" /> identified by the <paramref name="o" /> parameter. </returns> <param name="o"> An <see cref="T:System.Object" /> to retrieve the hash code for. </param> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.GetObjectValue(System.Object)"> <summary> Boxes a value type. </summary> <returns> Returns a boxed copy of <paramref name="obj" /> if it is a value class; otherwise <paramref name="obj" /> itself is returned. </returns> <param name="obj"> The value type to be boxed. </param> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.InitializeArray(System.Array,System.RuntimeFieldHandle)"> <summary> Provides a fast way to initialize an array from data stored in a module. </summary> <param name="array"> The array to be initialized. </param> <param name="fldHandle"> A <see cref="T:System.RuntimeFieldHandle" /> specifying the location of the data used to initialize the array. </param> </member> <member name="P:System.Runtime.CompilerServices.RuntimeHelpers.OffsetToStringData"> <summary> Gets the offset in bytes to the data in the given string. </summary> <returns> The byte offset, from the start of the <see cref="T:System.String" /> object to the first character in the string. </returns> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareConstrainedRegions"> <summary> Designates a body of code as a constrained execution region (CER). </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareConstrainedRegionsNoOP"> <summary> Designates a body of code as a constrained execution region (CER) without performing any probing. </summary> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareDelegate(System.Delegate)"> <summary> Indicates that the specified delegate be prepared for inclusion in a constrained execution region (CER). </summary> <param name="d"> The <see cref="T:System.Delegate" /> type to prepare. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareMethod(System.RuntimeMethodHandle)"> <summary> Prepares a method for inclusion in a constrained execution region (CER). </summary> <param name="method"> A <see cref="T:System.RuntimeMethodHandle" /> to the method to prepare. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareMethod(System.RuntimeMethodHandle,System.RuntimeTypeHandle[])"> <summary> Prepares a method for inclusion in a constrained execution region (CER) with the specified instantiation. </summary> <param name="method"> A <see cref="T:System.RuntimeMethodHandle" /> to the method to prepare. </param> <param name="instantiation"> A <see cref="T:System.RuntimeTypeHandle" /> instantiation to pass. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.ProbeForSufficientStack"> <summary> This method is used by the Constrained Execution Region (CER) infrastructure, when running in hosts that are resilient to stack overflow such as Microsoft SQL & Microsoft Exchange. It probes for a certain amount of stack space, for the purpose of ensuring that a stack overflow cannot happen within a following block of code (assuming that your code itself only uses a finite and moderate amount of stack space). This method currently probes for 48K of stack space on x86, but the exact amount may change over time & vary on other platforms. This method is not recommended. Instead, you should use a normal CER (ie, a try/finally or try/catch block proceeded with a call to <see cref="M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareConstrainedRegions" />), if you're going to use a moderate amount of stack space. If you are calling a recursive method or will use a lot of stack space, then you must use <see cref="M:System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(System.Runtime.CompilerServices.RuntimeHelpers.TryCode,System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode,System.Object)" />. </summary> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(System.RuntimeTypeHandle)"> <summary> Runs a specified class constructor method. </summary> <param name="type"> A <see cref="T:System.RuntimeTypeHandle" /> specifying the class constructor method to run. </param> <exception cref="T:System.TypeInitializationException"> The class initializer threw an exception. </exception> </member> <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.RunModuleConstructor(System.ModuleHandle)"> <summary> Runs a specified module constructor method. </summary> <param name="module"> A <see cref="T:System.ModuleHandle" /> object specifying the module constructor method to run. </param> <exception cref="T:System.TypeInitializationException"> The module constructor threw an exception. </exception> </member> <member name="T:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode"> <summary> Represents a method to run when an exception occurs. </summary> <param name="userData"> Data to pass to the delegate. </param> <param name="exceptionThrown">true to express that an exception was thrown; otherwise, false. </param> </member> <member name="T:System.Runtime.CompilerServices.RuntimeHelpers.TryCode"> <summary> Represents a delegate to code that should be run in a try block.. </summary> <param name="userData"> Data to pass to the delegate. </param> </member> <member name="T:System.Runtime.CompilerServices.RuntimeWrappedException"> <summary> Wraps an exception that does not derive from the <see cref="T:System.Exception" /> class. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.RuntimeWrappedException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with information about the exception. </summary> <param name="info"></param> <param name="context"></param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> parameter is null. </exception> </member> <member name="P:System.Runtime.CompilerServices.RuntimeWrappedException.WrappedException"> <summary> Gets the object that was wrapped by the <see cref="T:System.Runtime.CompilerServices.RuntimeWrappedException" /> object. </summary> <returns> The object that was wrapped by the <see cref="T:System.Runtime.CompilerServices.RuntimeWrappedException" /> object. </returns> </member> <member name="T:System.Runtime.CompilerServices.ScopelessEnumAttribute"> <summary> Indicates that a native enumeration is not qualified by the enumeration type name. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.ScopelessEnumAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.ScopelessEnumAttribute" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.SpecialNameAttribute"> <summary> Indicates that a type or member is treated in a special way by the runtime or tools. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.SpecialNameAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.SpecialNameAttribute" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.StringFreezingAttribute"> <summary> Deprecated. Freezes a string literal when creating native images using the Native Image Generator (Ngen.exe). This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.StringFreezingAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.StringFreezingAttribute" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.SuppressIldasmAttribute"> <summary> Prevents the MSIL Disassembler (Ildasm.exe) from disassembling an assembly. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.SuppressIldasmAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.SuppressIldasmAttribute" /> class. </summary> </member> <member name="T:System.Runtime.CompilerServices.TypeForwardedToAttribute"> <summary> Specifies a destination <see cref="T:System.Type" /> in another assembly. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.TypeForwardedToAttribute.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.TypeForwardedToAttribute" /> class specifying a destination <see cref="T:System.Type" />. </summary> <param name="destination"> The destination <see cref="T:System.Type" /> in another assembly. </param> </member> <member name="P:System.Runtime.CompilerServices.TypeForwardedToAttribute.Destination"> <summary> Gets the destination <see cref="T:System.Type" /> in another assembly. </summary> <returns> The destination <see cref="T:System.Type" /> in another assembly. </returns> </member> <member name="T:System.Runtime.CompilerServices.UnsafeValueTypeAttribute"> <summary> Specifies that a type contains an unmanaged array that might potentially overflow. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.CompilerServices.UnsafeValueTypeAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.UnsafeValueTypeAttribute" /> class. </summary> </member> <member name="P:System.Runtime.CompilerServices.InternalsVisibleToAttribute.AllInternalsVisible"> <summary> This property is not implemented. </summary> <returns> This property does not return a value. </returns> </member> <member name="T:System.Runtime.ConstrainedExecution.Cer"> <summary> Specifies a method's behavior when called within a constrained execution region. </summary> </member> <member name="F:System.Runtime.ConstrainedExecution.Cer.None"> <summary> The method, type, or assembly has no concept of a CER. It does not take advantage of CER guarantees. This implies the following: </summary> </member> <member name="F:System.Runtime.ConstrainedExecution.Cer.MayFail"> <summary> In the face of exceptional conditions, the method might fail. In this case, the method will report back to the calling method whether it succeeded or failed. The method must have a CER around the method body to ensure that it can report the return value. </summary> </member> <member name="F:System.Runtime.ConstrainedExecution.Cer.Success"> <summary> In the face of exceptional conditions, the method is guaranteed to succeed. You should always construct a CER around the method that is called, even when it is called from within a non-CER region. A method is successful if it accomplishes what is intended. For example, marking <see cref="P:System.Collections.ArrayList.Count" /> with ReliabilityContractAttribute(Cer.Success) implies that when it is run under a CER, it always returns a count of the number of elements in the <see cref="T:System.Collections.ArrayList" /> and it can never leave the internal fields in an undetermined state. </summary> </member> <member name="T:System.Runtime.ConstrainedExecution.Consistency"> <summary> Specifies a reliability contract. </summary> </member> <member name="F:System.Runtime.ConstrainedExecution.Consistency.MayCorruptProcess"> <summary> In the face of exceptional conditions, the CLR makes no guarantees regarding state consistency; that is, the condition might corrupt the process. </summary> </member> <member name="F:System.Runtime.ConstrainedExecution.Consistency.MayCorruptAppDomain"> <summary> In the face of exceptional conditions, the common language runtime (CLR) makes no guarantees regarding state consistency in the current application domain. </summary> </member> <member name="F:System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance"> <summary> In the face of exceptional conditions, the method is guaranteed to limit state corruption to the current instance. </summary> </member> <member name="F:System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState"> <summary> In the face of exceptional conditions, the method is guaranteed not to corrupt state. </summary> </member> <member name="T:System.Runtime.ConstrainedExecution.CriticalFinalizerObject"> <summary> Ensures that all finalization code in derived classes is marked as critical. </summary> </member> <member name="M:System.Runtime.ConstrainedExecution.CriticalFinalizerObject.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.ConstrainedExecution.CriticalFinalizerObject" /> class. </summary> </member> <member name="M:System.Runtime.ConstrainedExecution.CriticalFinalizerObject.Finalize"> <summary> Releases all the resources used by the <see cref="T:System.Runtime.ConstrainedExecution.CriticalFinalizerObject" /> class. </summary> </member> <member name="T:System.Runtime.ConstrainedExecution.PrePrepareMethodAttribute"> <summary> Instructs the native image generation service to prepare a method for inclusion in a constrained execution region (CER). </summary> </member> <member name="M:System.Runtime.ConstrainedExecution.PrePrepareMethodAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.ConstrainedExecution.PrePrepareMethodAttribute" /> class. </summary> </member> <member name="T:System.Runtime.ConstrainedExecution.ReliabilityContractAttribute"> <summary> Defines a contract for reliability between the author of some code, and the developers who have a dependency on that code. </summary> </member> <member name="M:System.Runtime.ConstrainedExecution.ReliabilityContractAttribute.#ctor(System.Runtime.ConstrainedExecution.Consistency,System.Runtime.ConstrainedExecution.Cer)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.ConstrainedExecution.ReliabilityContractAttribute" /> class with the specified <see cref="T:System.Runtime.ConstrainedExecution.Consistency" /> guarantee and <see cref="T:System.Runtime.ConstrainedExecution.Cer" /> value. </summary> <param name="consistencyGuarantee"> One of the <see cref="T:System.Runtime.ConstrainedExecution.Consistency" /> values. </param> <param name="cer"> One of the <see cref="T:System.Runtime.ConstrainedExecution.Cer" /> values. </param> </member> <member name="P:System.Runtime.ConstrainedExecution.ReliabilityContractAttribute.Cer"> <summary> Gets the value that determines the behavior of a method, type, or assembly when called under a Constrained Execution Region (CER). </summary> <returns> One of the <see cref="T:System.Runtime.ConstrainedExecution.Cer" /> values. </returns> </member> <member name="P:System.Runtime.ConstrainedExecution.ReliabilityContractAttribute.ConsistencyGuarantee"> <summary> Gets the value of the <see cref="T:System.Runtime.ConstrainedExecution.Consistency" /> reliability contract. </summary> <returns> One of the <see cref="T:System.Runtime.ConstrainedExecution.Consistency" /> values. </returns> </member> <member name="T:System.Runtime.Hosting.ActivationArguments"> <summary> Provides data for manifest-based activation of an application. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Hosting.ActivationArguments.#ctor(System.ActivationContext)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Hosting.ActivationArguments" /> class with the specified activation context. </summary> <param name="activationData"> An <see cref="T:System.ActivationContext" /> object identifying the manifest-based activation application. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="activationData" /> is null. </exception> </member> <member name="M:System.Runtime.Hosting.ActivationArguments.#ctor(System.ActivationContext,System.String[])"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Hosting.ActivationArguments" /> class with the specified activation context and activation data. </summary> <param name="activationContext"> An <see cref="T:System.ActivationContext" /> object identifying the manifest-based activation application. </param> <param name="activationData"> An array of strings containing host-provided activation data. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="activationContext" /> is null. </exception> </member> <member name="M:System.Runtime.Hosting.ActivationArguments.#ctor(System.ApplicationIdentity)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Hosting.ActivationArguments" /> class with the specified application identity. </summary> <param name="applicationIdentity"> An <see cref="T:System.ApplicationIdentity" /> object identifying the manifest-based activation application. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="applicationIdentity" /> is null. </exception> </member> <member name="M:System.Runtime.Hosting.ActivationArguments.#ctor(System.ApplicationIdentity,System.String[])"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Hosting.ActivationArguments" /> class with the specified application identity and activation data. </summary> <param name="applicationIdentity"> An <see cref="T:System.ApplicationIdentity" /> object identifying the manifest-based activation application. </param> <param name="activationData"> An array of strings containing host-provided activation data. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="applicationIdentity" /> is null. </exception> </member> <member name="P:System.Runtime.Hosting.ActivationArguments.ActivationContext"> <summary> Gets the activation context for manifest-based activation of an application. </summary> <returns> An <see cref="T:System.ActivationContext" /> object identifying a manifest-based activation application. </returns> </member> <member name="P:System.Runtime.Hosting.ActivationArguments.ActivationData"> <summary> Gets activation data from the host. </summary> <returns> An array of strings containing host-provided activation data. </returns> </member> <member name="P:System.Runtime.Hosting.ActivationArguments.ApplicationIdentity"> <summary> Gets the application identity for a manifest-activated application. </summary> <returns> An <see cref="T:System.ApplicationIdentity" /> object identifying an application for manifest-based activation. </returns> </member> <member name="T:System.Runtime.Hosting.ApplicationActivator"> <summary> Provides the base class for the activation of manifest-based assemblies. </summary> </member> <member name="M:System.Runtime.Hosting.ApplicationActivator.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Hosting.ApplicationActivator" /> class. </summary> </member> <member name="M:System.Runtime.Hosting.ApplicationActivator.CreateInstance(System.ActivationContext)"> <summary> Creates an instance of the application to be activated, using the specified activation context. </summary> <returns> An <see cref="T:System.Runtime.Remoting.ObjectHandle" /> that is a wrapper for the return value of the application execution. The return value must be unwrapped to access the real object. </returns> <param name="activationContext"> An <see cref="T:System.ActivationContext" /> that identifies the application to activate. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="activationContext" /> is null. </exception> </member> <member name="M:System.Runtime.Hosting.ApplicationActivator.CreateInstance(System.ActivationContext,System.String[])"> <summary> Creates an instance of the application to be activated, using the specified activation context and custom activation data. </summary> <returns> An <see cref="T:System.Runtime.Remoting.ObjectHandle" /> that is a wrapper for the return value of the application execution. The return value must be unwrapped to access the real object. </returns> <param name="activationContext"> An <see cref="T:System.ActivationContext" /> that identifies the application to activate. </param> <param name="activationCustomData"> Custom activation data. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="activationContext" /> is null. </exception> </member> <member name="M:System.Runtime.Hosting.ApplicationActivator.CreateInstanceHelper(System.AppDomainSetup)"> <summary> Creates an instance of an application using the specified <see cref="T:System.AppDomainSetup" /> object. </summary> <returns> An <see cref="T:System.Runtime.Remoting.ObjectHandle" /> that is a wrapper for the return value of the application execution. The return value must be unwrapped to access the real object. </returns> <param name="adSetup"> An <see cref="T:System.AppDomainSetup" /> object whose <see cref="P:System.AppDomainSetup.ActivationArguments" /> property identifies the application to activate. </param> <exception cref="T:System.ArgumentException"> The <see cref="P:System.AppDomainSetup.ActivationArguments" /> property of <paramref name="adSetup " />is null. </exception> <exception cref="T:System.Security.Policy.PolicyException"> The application instance failed to execute because the policy settings on the current application domain do not provide permission for this application to run. </exception> </member> <member name="T:System.Runtime.InteropServices._Activator"> <summary> Exposes the <see cref="T:System.Activator" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._Activator.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._Activator.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._Activator.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._Activator.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier for the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._Assembly"> <summary> Exposes the public members of the <see cref="T:System.Reflection.Assembly" /> class to unmanaged code. </summary> </member> <member name="P:System.Runtime.InteropServices._Assembly.CodeBase"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.Assembly.CodeBase" /> property. </summary> <returns> The location of the assembly as specified originally. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.CreateInstance(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.CreateInstance(System.String)" /> method. </summary> <returns> An instance of <see cref="T:System.Object" /> representing the type, with culture, arguments, binder, and activation attributes set to null, and <see cref="T:System.Reflection.BindingFlags" /> set to Public or Instance, or null if <paramref name="typeName" /> is not found. </returns> <param name="typeName"> The <see cref="P:System.Type.FullName" /> of the type to locate. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.CreateInstance(System.String,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.CreateInstance(System.String,System.Boolean)" /> method. </summary> <returns> An instance of <see cref="T:System.Object" /> representing the type, with culture, arguments, binder, and activation attributes set to null, and <see cref="T:System.Reflection.BindingFlags" /> set to Public or Instance, or null if <paramref name="typeName" /> is not found. </returns> <param name="typeName"> The <see cref="P:System.Type.FullName" /> of the type to locate. </param> <param name="ignoreCase">true to ignore the case of the type name; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.CreateInstance(System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.CreateInstance(System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])" /> method. </summary> <returns> An instance of Object representing the type and matching the specified criteria, or null if <paramref name="typeName" /> is not found. </returns> <param name="typeName"> The <see cref="P:System.Type.FullName" /> of the type to locate. </param> <param name="ignoreCase">true to ignore the case of the type name; otherwise, false. </param> <param name="bindingAttr"> A bitmask that affects how the search is conducted. The value is a combination of bit flags from <see cref="T:System.Reflection.BindingFlags" />. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="args"> An array of type Object containing the arguments to be passed to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to be invoked. If the default constructor is desired, <paramref name="args" /> must be an empty array or null. </param> <param name="culture"> An instance of CultureInfo used to govern the coercion of types. If this is null, the CultureInfo for the current thread is used. (This is necessary to convert a String that represents 1000 to a Double value, for example, since 1000 is represented differently by different cultures.) </param> <param name="activationAttributes"> An array of type Object containing one or more activation attributes that can participate in the activation. An example of an activation attribute is: URLAttribute(http://hostname/appname/objectURI) </param> </member> <member name="P:System.Runtime.InteropServices._Assembly.EntryPoint"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.Assembly.EntryPoint" /> property. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object that represents the entry point of this assembly. If no entry point is found (for example, the assembly is a DLL), null is returned. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.Equals(System.Object)" /> method. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="other"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> </member> <member name="P:System.Runtime.InteropServices._Assembly.EscapedCodeBase"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.Assembly.EscapedCodeBase" /> property. </summary> <returns> A Uniform Resource Identifier (URI) with escape characters. </returns> </member> <member name="P:System.Runtime.InteropServices._Assembly.Evidence"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.Assembly.Evidence" /> property. </summary> <returns> An <see cref="T:System.Security.Policy.Evidence" /> object for this assembly. </returns> </member> <member name="P:System.Runtime.InteropServices._Assembly.FullName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.Assembly.FullName" /> property. </summary> <returns> The display name of the assembly. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetCustomAttributes(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetCustomAttributes(System.Boolean)" /> method. </summary> <returns> An array of type Object containing the custom attributes for this assembly. </returns> <param name="inherit"> This argument is ignored for objects of type <see cref="T:System.Reflection.Assembly" />. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetCustomAttributes(System.Type,System.Boolean)" /> method. </summary> <returns> An array of type <see cref="T:System.Object" /> containing the custom attributes for this assembly as specified by <paramref name="attributeType" />. </returns> <param name="attributeType"> The <see cref="T:System.Type" /> for which the custom attributes are to be returned. </param> <param name="inherit"> This argument is ignored for objects of type <see cref="T:System.Reflection.Assembly" />. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetExportedTypes"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetExportedTypes" /> property. </summary> <returns> An array of <see cref="T:System.Type" /> objects that represent the types defined in this assembly that are visible outside the assembly. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetFile(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetFile(System.String)" /> method. </summary> <returns> A <see cref="T:System.IO.FileStream" /> for the specified file, or null if the file is not found. </returns> <param name="name"> The name of the specified file. Do not include the path to the file. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetFiles"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetFiles" /> method. </summary> <returns> An array of <see cref="T:System.IO.FileStream" /> objects. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetFiles(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetFiles(System.Boolean)" /> method. </summary> <returns> An array of <see cref="T:System.IO.FileStream" /> objects. </returns> <param name="getResourceModules">true to include resource modules; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetHashCode"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetHashCode" /> method. </summary> <returns> A hash code for the current <see cref="T:System.Object" />. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetLoadedModules"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetLoadedModules" /> method. </summary> <returns> An array of modules. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetLoadedModules(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetLoadedModules(System.Boolean)" /> method. </summary> <returns> An array of modules. </returns> <param name="getResourceModules">true to include resource modules; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetManifestResourceInfo(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetManifestResourceInfo(System.String)" /> method. </summary> <returns> A <see cref="T:System.Reflection.ManifestResourceInfo" /> object populated with information about the resource's topology, or null if the resource is not found. </returns> <param name="resourceName"> The case-sensitive name of the resource. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetManifestResourceNames"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetManifestResourceNames" /> method. </summary> <returns> An array of type String containing the names of all the resources. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetManifestResourceStream(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetManifestResourceStream(System.String)" /> method. </summary> <returns> A <see cref="T:System.IO.Stream" /> representing this manifest resource. </returns> <param name="name"> The case-sensitive name of the manifest resource being requested. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetManifestResourceStream(System.Type,System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetManifestResourceStream(System.Type,System.String)" /> method. </summary> <returns> A <see cref="T:System.IO.Stream" /> representing this manifest resource. </returns> <param name="type"> The type whose namespace is used to scope the manifest resource name. </param> <param name="name"> The case-sensitive name of the manifest resource being requested. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetModule(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetModule(System.String)" /> method. </summary> <returns> The module being requested, or null if the module is not found. </returns> <param name="name"> The name of the module being requested. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetModules"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetModules" /> method. </summary> <returns> An array of modules. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetModules(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetModules(System.Boolean)" /> method. </summary> <returns> An array of modules. </returns> <param name="getResourceModules">true to include resource modules; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetName"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetName" /> method. </summary> <returns> An <see cref="T:System.Reflection.AssemblyName" /> for this assembly. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetName(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetName(System.Boolean)" /> method. </summary> <returns> An <see cref="T:System.Reflection.AssemblyName" /> for this assembly. </returns> <param name="copiedName">true to set the <see cref="P:System.Reflection.Assembly.CodeBase" /> to the location of the assembly after it was shadow copied; false to set <see cref="P:System.Reflection.Assembly.CodeBase" /> to the original location. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> method. </summary> <param name="info"> The object to be populated with serialization information. </param> <param name="context"> The destination context of the serialization. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetReferencedAssemblies"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetReferencedAssemblies" /> method. </summary> <returns> An array of type <see cref="T:System.Reflection.AssemblyName" /> containing all the assemblies referenced by this assembly. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetSatelliteAssembly(System.Globalization.CultureInfo)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetSatelliteAssembly(System.Globalization.CultureInfo)" /> method. </summary> <returns> The specified satellite assembly. </returns> <param name="culture"> The specified culture. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetSatelliteAssembly(System.Globalization.CultureInfo,System.Version)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetSatelliteAssembly(System.Globalization.CultureInfo,System.Version)" /> method. </summary> <returns> The specified satellite assembly. </returns> <param name="culture"> The specified culture. </param> <param name="version"> The version of the satellite assembly. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetType" /> method. </summary> <returns> A <see cref="T:System.Type" /> object. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetType(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetType(System.String)" /> method. </summary> <returns> A <see cref="T:System.Type" /> object that represents the specified class, or null if the class is not found. </returns> <param name="name"> The full name of the type. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetType(System.String,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetType(System.String,System.Boolean)" /> method. </summary> <returns> A <see cref="T:System.Type" /> object that represents the specified class. </returns> <param name="name"> The full name of the type. </param> <param name="throwOnError">true to throw an exception if the type is not found; false to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetType(System.String,System.Boolean,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetType(System.String,System.Boolean,System.Boolean)" /> method. </summary> <returns> A <see cref="T:System.Type" /> object that represents the specified class. </returns> <param name="name"> The full name of the type. </param> <param name="throwOnError">true to throw an exception if the type is not found; false to return null. </param> <param name="ignoreCase">true to ignore the case of the type name; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.GetTypes"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetTypes" /> method. </summary> <returns> An array of type <see cref="T:System.Type" /> containing objects for all the types defined in this assembly. </returns> </member> <member name="P:System.Runtime.InteropServices._Assembly.GlobalAssemblyCache"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.Assembly.GlobalAssemblyCache" /> property. </summary> <returns>true if the assembly was loaded from the global assembly cache; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices._Assembly.IsDefined(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.IsDefined(System.Type,System.Boolean)" /> method. </summary> <returns>true if a custom attribute identified by the specified <see cref="T:System.Type" /> is defined; otherwise, false. </returns> <param name="attributeType"> The <see cref="T:System.Type" /> of the custom attribute to be checked for this assembly. </param> <param name="inherit"> This argument is ignored for objects of this type. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.LoadModule(System.String,System.Byte[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.LoadModule(System.String,System.Byte[])" /> method. </summary> <returns> The loaded Module. </returns> <param name="moduleName"> Name of the module. Must correspond to a file name in this assembly's manifest. </param> <param name="rawModule"> A byte array that is a COFF-based image containing an emitted module, or a resource. </param> </member> <member name="M:System.Runtime.InteropServices._Assembly.LoadModule(System.String,System.Byte[],System.Byte[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.LoadModule(System.String,System.Byte[],System.Byte[])" /> method. </summary> <returns> The loaded module. </returns> <param name="moduleName"> Name of the module. Must correspond to a file name in this assembly's manifest. </param> <param name="rawModule"> A byte array that is a COFF-based image containing an emitted module, or a resource. </param> <param name="rawSymbolStore"> A byte array containing the raw bytes representing the symbols for the module. Must be null if this is a resource file. </param> </member> <member name="P:System.Runtime.InteropServices._Assembly.Location"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.Assembly.Location" /> property. </summary> <returns> The location of the loaded file that contains the manifest. If the loaded file was shadow-copied, the location is that of the file after being shadow-copied. If the assembly is loaded from a byte array, such as when using the <see cref="M:System.Reflection.Assembly.Load(System.Byte[])" /> method overload, the value returned is an empty string (""). </returns> </member> <member name="E:System.Runtime.InteropServices._Assembly.ModuleResolve"> <summary> Provides COM objects with version-independent access to the <see cref="E:System.Reflection.Assembly.ModuleResolve" /> event. </summary> </member> <member name="M:System.Runtime.InteropServices._Assembly.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.ToString" /> method. </summary> <returns> The full name of the assembly, or the class name if the full name of the assembly cannot be determined. </returns> </member> <member name="T:System.Runtime.InteropServices._AssemblyBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.AssemblyBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._AssemblyBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._AssemblyBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._AssemblyBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._AssemblyBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._AssemblyName"> <summary> Exposes the <see cref="T:System.Reflection.AssemblyName" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._AssemblyName.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._AssemblyName.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._AssemblyName.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._AssemblyName.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._Attribute"> <summary> Exposes the <see cref="T:System.Attribute" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._Attribute.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._Attribute.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._Attribute.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._Attribute.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._ConstructorBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.ConstructorBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._ConstructorBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._ConstructorInfo"> <summary> Exposes the public members of the <see cref="T:System.Reflection.ConstructorInfo" /> class to unmanaged code. </summary> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.Attributes"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.Attributes" /> property. </summary> <returns> One of the <see cref="T:System.Reflection.MethodAttributes" /> values. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.CallingConvention"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.CallingConvention" /> property. </summary> <returns> The <see cref="T:System.Reflection.CallingConventions" /> for this method. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.DeclaringType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.DeclaringType" /> property. </summary> <returns> The <see cref="T:System.Type" /> object for the class that declares this member. </returns> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.Equals(System.Object)" /> method. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="other"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.GetCustomAttributes(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> method. </summary> <returns> An array that contains all the custom attributes, or an array with zero elements if no attributes are defined. </returns> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Emit.MethodBuilder.GetCustomAttributes(System.Type,System.Boolean)" /> method. </summary> <returns> An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.GetHashCode"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetHashCode" /> method. </summary> <returns> The hash code for the current instance. </returns> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array that receives the IDs corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.GetMethodImplementationFlags"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.GetMethodImplementationFlags" /> member. </summary> <returns> The <see cref="T:System.Reflection.MethodImplAttributes" /> flags. </returns> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.GetParameters"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.GetParameters" /> method. </summary> <returns> An array of type <see cref="T:System.Reflection.ParameterInfo" /> containing information that matches the signature of the method (or constructor) reflected by this instance. </returns> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetType" /> method. </summary> <returns> A <see cref="T:System.Type" /> object. </returns> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.Invoke_2(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" /> method. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="obj"> The instance that created this method. </param> <param name="invokeAttr"> One of the BindingFlags values that specifies the type of binding. </param> <param name="binder"> A Binder that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If <paramref name="binder" /> is null, then Binder.DefaultBinding is used. </param> <param name="parameters"> An array of type Object used to match the number, order, and type of the parameters for this constructor, under the constraints of <paramref name="binder" />. If this constructor does not require parameters, pass an array with zero elements, as in Object[] parameters = new Object[0]. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.Invoke_3(System.Object,System.Object[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.Invoke(System.Object,System.Object[])" /> method. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="obj"> The instance that created this method. </param> <param name="parameters"> An argument list for the invoked method or constructor. This is an array of objects with the same number, order, and type as the parameters of the method or constructor to be invoked. If there are no parameters, <paramref name="parameters" /> should be null. If the method or constructor represented by this instance takes a ref parameter (ByRef in Visual Basic), no special attribute is required for that parameter in order to invoke the method or constructor using this function. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.Invoke_4(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" /> method. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="invokeAttr"> One of the BindingFlags values that specifies the type of binding. </param> <param name="binder"> A Binder that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If <paramref name="binder" /> is null, then Binder.DefaultBinding is used. </param> <param name="parameters"> An array of type Object used to match the number, order, and type of the parameters for this constructor, under the constraints of <paramref name="binder" />. If this constructor does not require parameters, pass an array with zero elements, as in Object[] parameters = new Object[0]. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.Invoke_5(System.Object[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.ConstructorInfo.Invoke(System.Object[])" /> method. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="parameters"> An array of values that matches the number, order, and type (under the constraints of the default binder) of the parameters for this constructor. If this constructor takes no parameters, then use either an array with zero elements or null, as in Object[] parameters = new Object[0]. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsAbstract"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsAbstract" /> property. </summary> <returns>true if the method is abstract; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsAssembly" /> property. </summary> <returns>true if this method can be called by other classes in the same assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsConstructor"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsConstructor" /> property. </summary> <returns>true if this method is a constructor; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.IsDefined(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> member. </summary> <returns>true if one or more instances of <paramref name="attributeType" /> is applied to this member; otherwise false. </returns> <param name="attributeType"> The Type object to which the custom attributes are applied. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsFamily"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFamily" /> property. </summary> <returns>true if access to the class is restricted to members of the class itself and to members of its derived classes; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsFamilyAndAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFamilyAndAssembly" /> property. </summary> <returns>true if access to this method is restricted to members of the class itself and to members of derived classes that are in the same assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsFamilyOrAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFamilyOrAssembly" /> property. </summary> <returns>true if access to this method is restricted to members of the class itself, members of derived classes wherever they are, and members of other classes in the same assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsFinal"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFinal" /> property. </summary> <returns>true if this method is final; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsHideBySig"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsHideBySig" /> property. </summary> <returns>true if the member is hidden by signature; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsPrivate"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsPrivate" /> property. </summary> <returns>true if access to this method is restricted to other members of the class itself; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsPublic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsPublic" /> property. </summary> <returns>true if this method is public; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsSpecialName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsSpecialName" /> property. </summary> <returns>true if this method has a special name; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsStatic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsStatic" /> property. </summary> <returns>true if this method is static; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.IsVirtual"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsVirtual" /> property. </summary> <returns>true if this method is virtual; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.MemberType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.ConstructorInfo.MemberType" /> property. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating the type of member. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.MethodHandle"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.MethodHandle" /> property. </summary> <returns> A <see cref="T:System.RuntimeMethodHandle" /> object. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.Name"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.Name" /> property. </summary> <returns> A <see cref="T:System.String" /> containing the name of this member. </returns> </member> <member name="P:System.Runtime.InteropServices._ConstructorInfo.ReflectedType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.ReflectedType" /> property. </summary> <returns> The <see cref="T:System.Type" /> object through which this <see cref="T:System.Reflection.MemberInfo" /> object was obtained. </returns> </member> <member name="M:System.Runtime.InteropServices._ConstructorInfo.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.ToString" /> method. </summary> <returns> A string that represents the current <see cref="T:System.Object" />. </returns> </member> <member name="T:System.Runtime.InteropServices._CustomAttributeBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.CustomAttributeBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._CustomAttributeBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._CustomAttributeBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._CustomAttributeBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._CustomAttributeBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._EnumBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.EnumBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._EnumBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._EnumBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._EnumBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._EnumBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._EventBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.EventBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._EventBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._EventBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._EventBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._EventBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._EventInfo"> <summary> Exposes the public members of the <see cref="T:System.Reflection.EventInfo" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._EventInfo.AddEventHandler(System.Object,System.Delegate)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.EventInfo.AddEventHandler(System.Object,System.Delegate)" /> method. </summary> <param name="target"> The event source. </param> <param name="handler"> A method or methods to be invoked when the event is raised by the target. </param> </member> <member name="P:System.Runtime.InteropServices._EventInfo.Attributes"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.EventInfo.Attributes" /> property. </summary> <returns> The read-only attributes for this event. </returns> </member> <member name="P:System.Runtime.InteropServices._EventInfo.DeclaringType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.DeclaringType" /> property. </summary> <returns> The Type object for the class that declares this member. </returns> </member> <member name="M:System.Runtime.InteropServices._EventInfo.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.Equals(System.Object)" /> method. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="other"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> </member> <member name="P:System.Runtime.InteropServices._EventInfo.EventHandlerType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.EventInfo.EventHandlerType" /> property. </summary> <returns> A read-only <see cref="T:System.Type" /> object representing the delegate event handler. </returns> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetAddMethod"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.EventInfo.GetAddMethod" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method used to add an event-handler delegate to the event source. </returns> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetAddMethod(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.EventInfo.GetAddMethod(System.Boolean)" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method used to add an event-handler delegate to the event source. </returns> <param name="nonPublic">true to return non-public methods; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetCustomAttributes(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> method. </summary> <returns> An array that contains all the custom attributes, or an array with zero (0) elements if no attributes are defined. </returns> <param name="inherit">true to search a member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Type,System.Boolean)" /> method. </summary> <returns> An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetHashCode"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetHashCode" /> method. </summary> <returns> The hash code for the current instance. </returns> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetRaiseMethod"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.EventInfo.GetRaiseMethod" /> method. </summary> <returns> The method that is called when the event is raised. </returns> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetRaiseMethod(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.EventInfo.GetRaiseMethod(System.Boolean)" /> method. </summary> <returns> The <see cref="T:System.Reflection.MethodInfo" /> object that was called when the event was raised. </returns> <param name="nonPublic">true to return non-public methods; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetRemoveMethod"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.EventInfo.GetRemoveMethod" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method used to remove an event-handler delegate from the event source. </returns> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetRemoveMethod(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.EventInfo.GetRemoveMethod(System.Boolean)" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method used to remove an event-handler delegate from the event source. </returns> <param name="nonPublic">true to return non-public methods; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetType" /> method. </summary> <returns> A <see cref="T:System.Type" /> object. </returns> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._EventInfo.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._EventInfo.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier for the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="M:System.Runtime.InteropServices._EventInfo.IsDefined(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> method. </summary> <returns>true if one or more instance of the <paramref name="attributeType" /> parameter is applied to this member; otherwise, false. </returns> <param name="attributeType"> The Type object to which the custom attributes are applied. </param> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="P:System.Runtime.InteropServices._EventInfo.IsMulticast"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.EventInfo.IsMulticast" /> property. </summary> <returns>true if the delegate is an instance of a multicast delegate; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._EventInfo.IsSpecialName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.EventInfo.IsSpecialName" /> property. </summary> <returns>true if this event has a special name; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._EventInfo.MemberType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.EventInfo.MemberType" /> property. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is an event. </returns> </member> <member name="P:System.Runtime.InteropServices._EventInfo.Name"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.Name" /> property. </summary> <returns> A <see cref="T:System.String" /> object containing the name of this member. </returns> </member> <member name="P:System.Runtime.InteropServices._EventInfo.ReflectedType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.ReflectedType" /> property. </summary> <returns> The <see cref="T:System.Type" /> object that was used to obtain this object. </returns> </member> <member name="M:System.Runtime.InteropServices._EventInfo.RemoveEventHandler(System.Object,System.Delegate)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.EventInfo.RemoveEventHandler(System.Object,System.Delegate)" /> method. </summary> <param name="target"> The event source. </param> <param name="handler"> The delegate to be disassociated from the events raised by target. </param> </member> <member name="M:System.Runtime.InteropServices._EventInfo.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.ToString" /> method. </summary> <returns> A string that represents the current <see cref="T:System.Object" />. </returns> </member> <member name="T:System.Runtime.InteropServices._Exception"> <summary> Exposes the public members of the <see cref="T:System.Exception" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._Exception.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.Equals(System.Object)" /> method. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> </member> <member name="M:System.Runtime.InteropServices._Exception.GetBaseException"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Exception.GetBaseException" /> method. </summary> <returns> The first exception thrown in a chain of exceptions. If the <see cref="P:System.Exception.InnerException" /> property of the current exception is a null reference (Nothing in Visual Basic), this property returns the current exception. </returns> </member> <member name="M:System.Runtime.InteropServices._Exception.GetHashCode"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetHashCode" /> method. </summary> <returns> The hash code for the current instance. </returns> </member> <member name="M:System.Runtime.InteropServices._Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> method </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains contextual information about the source or destination. </param> </member> <member name="M:System.Runtime.InteropServices._Exception.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Exception.GetType" /> method. </summary> <returns> A <see cref="T:System.Type" /> object that represents the exact runtime type of the current instance. </returns> </member> <member name="P:System.Runtime.InteropServices._Exception.HelpLink"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Exception.HelpLink" /> property. </summary> <returns> The Uniform Resource Name (URN) or Uniform Resource Locator (URL) to a help file. </returns> </member> <member name="P:System.Runtime.InteropServices._Exception.InnerException"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Exception.InnerException" /> property. </summary> <returns> An instance of <see cref="T:System.Exception" /> that describes the error that caused the current exception. The <see cref="P:System.Exception.InnerException" /> property returns the same value that was passed to the constructor, or a null reference (Nothing in Visual Basic) if the inner exception value was not supplied to the constructor. This property is read-only. </returns> </member> <member name="P:System.Runtime.InteropServices._Exception.Message"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Exception.Message" /> property. </summary> <returns> The error message that explains the reason for the exception, or an empty string(""). </returns> </member> <member name="P:System.Runtime.InteropServices._Exception.Source"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Exception.Source" /> property. </summary> <returns> The name of the application or the object that causes the error. </returns> </member> <member name="P:System.Runtime.InteropServices._Exception.StackTrace"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Exception.StackTrace" /> property. </summary> <returns> A string that describes the contents of the call stack, with the most recent method call appearing first. </returns> </member> <member name="P:System.Runtime.InteropServices._Exception.TargetSite"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Exception.TargetSite" /> property. </summary> <returns> The <see cref="T:System.Reflection.MethodBase" /> object that threw the current exception. </returns> </member> <member name="M:System.Runtime.InteropServices._Exception.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Exception.ToString" /> method. </summary> <returns> A string that represents the current <see cref="T:System.Exception" /> object. </returns> </member> <member name="T:System.Runtime.InteropServices._FieldBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.FieldBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._FieldBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._FieldBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._FieldBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._FieldBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._FieldInfo"> <summary> Exposes the public members of the <see cref="T:System.Reflection.FieldInfo" /> class to unmanaged code. </summary> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.Attributes"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.Attributes" /> property. </summary> <returns> The <see cref="T:System.Reflection.FieldAttributes" /> for this field. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.DeclaringType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.DeclaringType" /> property. </summary> <returns> The <see cref="T:System.Type" /> object for the class that declares this member. </returns> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.Equals(System.Object)" /> method. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="other"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.FieldHandle"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.FieldHandle" /> property. </summary> <returns> A handle to the internal metadata representation of a field. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.FieldType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.FieldType" /> property. </summary> <returns> The type of this field object. </returns> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.GetCustomAttributes(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> method. </summary> <returns> An array that contains all the custom attributes, or an array with zero elements if no attributes are defined. </returns> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Type,System.Boolean)" /> method. </summary> <returns> An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.GetHashCode"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetHashCode" /> method. </summary> <returns> The hash code for the current instance. </returns> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array that receives the IDs corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetType" /> method. </summary> <returns> A <see cref="T:System.Type" /> object. </returns> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.GetValue(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.FieldInfo.GetValue(System.Object)" /> method. </summary> <returns> An object containing the value of the field reflected by this instance. </returns> <param name="obj"> The object whose field value will be returned. </param> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.GetValueDirect(System.TypedReference)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.FieldInfo.GetValueDirect(System.TypedReference)" /> method. </summary> <returns> An <see cref="T:System.Object" /> containing a field value. </returns> <param name="obj"> A <see cref="T:System.TypedReference" /> structure that encapsulates a managed pointer to a location and a runtime representation of the type that might be stored at that location. </param> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsAssembly" /> property. </summary> <returns>true if the field has the Assembly attribute set; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.IsDefined(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> method. </summary> <returns>true if one or more instance of <paramref name="attributeType" /> is applied to this member; otherwise, false. </returns> <param name="attributeType"> The <see cref="T:System.Type" /> object to which the custom attributes are applied. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsFamily"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsFamily" /> property. </summary> <returns>true if the field has the Family attribute set; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsFamilyAndAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsFamilyAndAssembly" /> property. </summary> <returns>true if the field has the FamANDAssem attribute set; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsFamilyOrAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsFamilyOrAssembly" /> property. </summary> <returns>true if the field has the FamORAssem attribute set; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsInitOnly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsInitOnly" /> property. </summary> <returns>true if the field has the InitOnly attribute set; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsLiteral"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsLiteral" /> property. </summary> <returns>true if the field has the Literal attribute set; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsNotSerialized"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsNotSerialized" /> property. </summary> <returns>true if the field has the NotSerialized attribute set; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsPinvokeImpl"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsPinvokeImpl" /> property. </summary> <returns>true if the PinvokeImpl attribute is set in <see cref="T:System.Reflection.FieldAttributes" />; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsPrivate"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsPrivate" /> property. </summary> <returns>true if the field is private; otherwise; false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsPublic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsPublic" /> property. </summary> <returns>true if this field is public; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsSpecialName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsSpecialName" /> property. </summary> <returns>true if the SpecialName attribute is set in <see cref="T:System.Reflection.FieldAttributes" />; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.IsStatic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.IsStatic" /> property. </summary> <returns>true if this field is static; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.MemberType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.FieldInfo.MemberType" /> property. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a field. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.Name"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.Name" /> property. </summary> <returns> A <see cref="T:System.String" /> containing the name of this member. </returns> </member> <member name="P:System.Runtime.InteropServices._FieldInfo.ReflectedType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.ReflectedType" /> property. </summary> <returns> The <see cref="T:System.Type" /> object through which this object was obtained. </returns> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.SetValue(System.Object,System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.FieldInfo.SetValue(System.Object,System.Object)" /> method. </summary> <param name="obj"> The object whose field value will be set. </param> <param name="value"> The value to assign to the field. </param> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" /> method. </summary> <param name="obj"> The object whose field value will be set. </param> <param name="value"> The value to assign to the field. </param> <param name="invokeAttr"> A field of <see cref="T:System.Reflection.Binder" /> that specifies the type of binding that is desired (for example, Binder.CreateInstance or Binder.ExactBinding). </param> <param name="binder"> A set of properties that enables the binding, coercion of argument types, and invocation of members through reflection. If <paramref name="binder" /> is null, then Binder.DefaultBinding is used. </param> <param name="culture"> The software preferences of a particular culture. </param> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.SetValueDirect(System.TypedReference,System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.FieldInfo.SetValueDirect(System.TypedReference,System.Object)" /> method. </summary> <param name="obj"> The object whose field value will be set. </param> <param name="value"> The value to assign to the field. </param> </member> <member name="M:System.Runtime.InteropServices._FieldInfo.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.ToString" /> method. </summary> <returns> A string that represents the current <see cref="T:System.Object" />. </returns> </member> <member name="T:System.Runtime.InteropServices._ILGenerator"> <summary> Exposes the <see cref="T:System.Reflection.Emit.ILGenerator" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._ILGenerator.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> A count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._ILGenerator.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._ILGenerator.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._ILGenerator.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._LocalBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.LocalBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._LocalBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._LocalBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._LocalBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._LocalBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._MemberInfo"> <summary> Exposes the public members of the <see cref="T:System.Reflection.MemberInfo" /> class to unmanaged code. </summary> </member> <member name="P:System.Runtime.InteropServices._MemberInfo.DeclaringType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.DeclaringType" /> property. </summary> <returns> The <see cref="T:System.Type" /> object for the class that declares this member. </returns> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.Equals(System.Object)" /> method. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="other"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.GetCustomAttributes(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> method. </summary> <returns> An array that contains all the custom attributes, or an array with zero (0) elements if no attributes are defined. </returns> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetCustomAttributes(System.Type,System.Boolean)" /> method. </summary> <returns> An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.GetHashCode"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetHashCode" /> method. </summary> <returns> The hash code for the current instance. </returns> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetType" /> method. </summary> <returns> A <see cref="T:System.Type" /> object. </returns> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier for the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.IsDefined(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> method. </summary> <returns>true if one or more instance of the <paramref name="attributeType" /> parameter is applied to this member; otherwise, false. </returns> <param name="attributeType"> The <see cref="T:System.Type" /> object to which the custom attributes are applied. </param> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="P:System.Runtime.InteropServices._MemberInfo.MemberType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.MemberType" /> property. </summary> <returns> One of the <see cref="T:System.Reflection.MemberTypes" /> values indicating the type of member. </returns> </member> <member name="P:System.Runtime.InteropServices._MemberInfo.Name"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.Name" /> property. </summary> <returns> A <see cref="T:System.String" /> object containing the name of this member. </returns> </member> <member name="P:System.Runtime.InteropServices._MemberInfo.ReflectedType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.ReflectedType" /> property. </summary> <returns> The <see cref="T:System.Type" /> object that was used to obtain this <see cref="T:System.Reflection.MemberInfo" /> object. </returns> </member> <member name="M:System.Runtime.InteropServices._MemberInfo.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.ToString" /> method. </summary> <returns> A string that represents the current <see cref="T:System.Object" />. </returns> </member> <member name="T:System.Runtime.InteropServices._MethodBase"> <summary> Exposes the public members of the <see cref="T:System.Reflection.MethodBase" /> class to unmanaged code. </summary> </member> <member name="P:System.Runtime.InteropServices._MethodBase.Attributes"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.Attributes" /> property. </summary> <returns> One of the <see cref="T:System.Reflection.MethodAttributes" /> values. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.CallingConvention"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.CallingConvention" /> property. </summary> <returns> One of the <see cref="T:System.Reflection.CallingConventions" /> values. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.DeclaringType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.DeclaringType" /> property. </summary> <returns> The Type object for the class that declares this member. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodBase.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.Equals(System.Object)" /> method. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="other"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBase.GetCustomAttributes(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> method. </summary> <returns> An array that contains all the custom attributes, or an array with zero (0) elements if no attributes are defined. </returns> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBase.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Type,System.Boolean)" /> method. </summary> <returns> An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBase.GetHashCode"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetHashCode" /> method. </summary> <returns> The hash code for the current instance. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodBase.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBase.GetMethodImplementationFlags"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.GetMethodImplementationFlags" /> method. </summary> <returns> One of the <see cref="T:System.Reflection.MethodImplAttributes" /> values. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodBase.GetParameters"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.GetParameters" /> method. </summary> <returns> An array of type <see cref="T:System.Reflection.ParameterInfo" /> containing information that matches the signature of the method (or constructor) reflected by this instance. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodBase.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetType" /> method. </summary> <returns> A <see cref="T:System.Type" /> object. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodBase.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBase.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBase.Invoke(System.Object,System.Object[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.Invoke(System.Object,System.Object[])" /> method. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="obj"> The instance that created this method. </param> <param name="parameters"> An argument list for the invoked method or constructor. This is an array of objects with the same number, order, and type as the parameters of the method or constructor to be invoked. If there are no parameters, <paramref name="parameters" /> should be null. If the method or constructor represented by this instance takes a ref parameter (ByRef in Visual Basic), no special attribute is required for that parameter to invoke the method or constructor using this function. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference type elements, this value is null. For value type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBase.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" /> method. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="obj"> The instance that created this method. </param> <param name="invokeAttr"> One of the BindingFlags values that specifies the type of binding. </param> <param name="binder"> A Binder that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If <paramref name="binder" /> is null, then Binder.DefaultBinding is used. </param> <param name="parameters"> An array of type Object used to match the number, order, and type of the parameters for this constructor, under the constraints of <paramref name="binder" />. If this constructor does not require parameters, pass an array with zero elements, as in Object[] parameters = new Object[0]. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference type elements, this value is null. For value type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> object used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBase.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier for the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsAbstract"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsAbstract" /> property. </summary> <returns>true if the method is abstract; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsAssembly" /> property. </summary> <returns>true if this method can be called by other classes in the same assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsConstructor"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsConstructor" /> property. </summary> <returns>true if this method is a constructor; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodBase.IsDefined(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> method. </summary> <returns>true if one or more instance of the <paramref name="attributeType" /> parameter is applied to this member; otherwise, false. </returns> <param name="attributeType"> The Type object to which the custom attributes are applied. </param> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsFamily"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFamily" /> property. </summary> <returns>true if access to the class is restricted to members of the class itself and to members of its derived classes; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsFamilyAndAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFamilyAndAssembly" /> property. </summary> <returns>true if access to this method is restricted to members of the class itself and to members of derived classes that are in the same assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsFamilyOrAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFamilyOrAssembly" /> property. </summary> <returns>true if access to this method is restricted to members of the class itself, members of derived classes wherever they are, and members of other classes in the same assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsFinal"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFinal" /> property. </summary> <returns>true if this method is final; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsHideBySig"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsHideBySig" /> property. </summary> <returns>true if the member is hidden by signature; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsPrivate"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsPrivate" /> property. </summary> <returns>true if access to this method is restricted to other members of the class itself; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsPublic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsPublic" /> property. </summary> <returns>true if this method is public; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsSpecialName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsSpecialName" /> property. </summary> <returns>true if this method has a special name; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsStatic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsStatic" /> property. </summary> <returns>true if this method is static; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.IsVirtual"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsVirtual" /> property. </summary> <returns>true if this method is virtual; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.MemberType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.MemberType" /> property. </summary> <returns> One of the <see cref="T:System.Reflection.MemberTypes" /> values indicating the type of member. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.MethodHandle"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.MethodHandle" /> property. </summary> <returns> A <see cref="T:System.RuntimeMethodHandle" /> object. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.Name"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.Name" /> property. </summary> <returns> A <see cref="T:System.String" /> object containing the name of this member. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodBase.ReflectedType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.ReflectedType" /> property. </summary> <returns> The Type object that was used to obtain this MemberInfo object. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodBase.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.ToString" /> method. </summary> <returns> A string that represents the current <see cref="T:System.Object" />. </returns> </member> <member name="T:System.Runtime.InteropServices._MethodBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.MethodBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._MethodBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._MethodBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._MethodInfo"> <summary> Exposes the public members of the <see cref="T:System.Reflection.MethodInfo" /> class to unmanaged code. </summary> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.Attributes"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.Attributes" /> property. </summary> <returns> One of the <see cref="T:System.Reflection.MethodAttributes" /> values. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.CallingConvention"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.CallingConvention" /> property. </summary> <returns> One of the <see cref="T:System.Reflection.CallingConventions" /> values. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.DeclaringType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.DeclaringType" /> property. </summary> <returns> The Type object for the class that declares this member. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.Equals(System.Object)" /> method. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="other"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.GetBaseDefinition"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodInfo.GetBaseDefinition" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object for the first implementation of this method. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.GetCustomAttributes(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> method. </summary> <returns> An array that contains all the custom attributes, or an array with zero (0) elements if no attributes are defined. </returns> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Type,System.Boolean)" /> method. </summary> <returns> An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.GetHashCode"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetHashCode" /> method. </summary> <returns> The hash code for the current instance. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.GetMethodImplementationFlags"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.GetMethodImplementationFlags" /> method. </summary> <returns> One of the <see cref="T:System.Reflection.MethodImplAttributes" /> values. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.GetParameters"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.GetParameters" /> method. </summary> <returns> An array of type <see cref="T:System.Reflection.ParameterInfo" /> containing information that matches the signature of the method (or constructor) reflected by this instance. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetType" /> method. </summary> <returns> A <see cref="T:System.Type" /> object. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.Invoke(System.Object,System.Object[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.Invoke(System.Object,System.Object[])" /> method. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="obj"> The instance that created this method. </param> <param name="parameters"> An argument list for the invoked method or constructor. This is an array of objects with the same number, order, and type as the parameters of the method or constructor to be invoked. If there are no parameters, <paramref name="parameters" /> should be null. If the method or constructor represented by this instance takes a ref parameter (ByRef in Visual Basic), no special attribute is required for that parameter to invoke the method or constructor using this function. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference type elements, this value is null. For value type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MethodBase.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" /> method. </summary> <returns> An instance of the class associated with the constructor. </returns> <param name="obj"> The instance that created this method. </param> <param name="invokeAttr"> One of the BindingFlags values that specifies the type of binding. </param> <param name="binder"> A Binder that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If <paramref name="binder" /> is null, then Binder.DefaultBinding is used. </param> <param name="parameters"> An array of type Object used to match the number, order, and type of the parameters for this constructor, under the constraints of <paramref name="binder" />. If this constructor does not require parameters, pass an array with zero elements, as in Object[] parameters = new Object[0]. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference type elements, this value is null. For value type elements, this value is 0, 0.0, or false, depending on the specific element type. </param> <param name="culture"> A <see cref="T:System.Globalization.CultureInfo" /> object used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. </param> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier for the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsAbstract"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsAbstract" /> property. </summary> <returns>true if the method is abstract; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsAssembly" /> property. </summary> <returns>true if this method can be called by other classes in the same assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsConstructor"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsConstructor" /> property. </summary> <returns>true if this method is a constructor; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.IsDefined(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> method. </summary> <returns>true if one or more instance of the <paramref name="attributeType" /> parameter is applied to this member; otherwise, false. </returns> <param name="attributeType"> The Type object to which the custom attributes are applied. </param> <param name="inherit">true to search this member's inheritance chain to find the attributes; otherwise, false. </param> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsFamily"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFamily" /> property. </summary> <returns>true if access to the class is restricted to members of the class itself and to members of its derived classes; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsFamilyAndAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFamilyAndAssembly" /> property. </summary> <returns>true if access to this method is restricted to members of the class itself and to members of derived classes that are in the same assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsFamilyOrAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFamilyOrAssembly" /> property. </summary> <returns>true if access to this method is restricted to members of the class itself, members of derived classes wherever they are, and members of other classes in the same assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsFinal"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsFinal" /> property. </summary> <returns>true if this method is final; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsHideBySig"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsHideBySig" /> property. </summary> <returns>true if the member is hidden by signature; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsPrivate"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsPrivate" /> property. </summary> <returns>true if access to this method is restricted to other members of the class itself; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsPublic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsPublic" /> property. </summary> <returns>true if this method is public; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsSpecialName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsSpecialName" /> property. </summary> <returns>true if this method has a special name; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsStatic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsStatic" /> property. </summary> <returns>true if this method is static; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.IsVirtual"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.IsVirtual" /> property. </summary> <returns>true if this method is virtual; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.MemberType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.MemberType" /> property. </summary> <returns> One of the <see cref="T:System.Reflection.MemberTypes" /> values indicating the type of member. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.MethodHandle"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodBase.MethodHandle" /> property. </summary> <returns> A <see cref="T:System.RuntimeMethodHandle" /> object. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.Name"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.Name" /> property. </summary> <returns> A <see cref="T:System.String" /> object containing the name of this member. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.ReflectedType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.ReflectedType" /> property. </summary> <returns> The Type object that was used to obtain this MemberInfo object. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.ReturnType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodInfo.ReturnType" /> property. </summary> <returns> The return type of this method. </returns> </member> <member name="P:System.Runtime.InteropServices._MethodInfo.ReturnTypeCustomAttributes"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MethodInfo.ReturnTypeCustomAttributes" /> property. </summary> <returns> An <see cref="T:System.Reflection.ICustomAttributeProvider" /> object representing the custom attributes for the return type. </returns> </member> <member name="M:System.Runtime.InteropServices._MethodInfo.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.ToString" /> method. </summary> <returns> A string that represents the current <see cref="T:System.Object" />. </returns> </member> <member name="T:System.Runtime.InteropServices._MethodRental"> <summary> Exposes the <see cref="T:System.Reflection.Emit.MethodRental" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._MethodRental.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._MethodRental.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._MethodRental.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._MethodRental.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._Module"> <summary> Exposes the <see cref="T:System.Reflection.Module" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._Module.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._Module.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._Module.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._Module.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._ModuleBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.ModuleBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._ModuleBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._ModuleBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._ModuleBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._ModuleBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._ParameterBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.ParameterBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._ParameterBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._ParameterBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._ParameterBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._ParameterBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._ParameterInfo"> <summary> Exposes the <see cref="T:System.Reflection.ParameterInfo" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._ParameterInfo.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._ParameterInfo.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._ParameterInfo.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._ParameterInfo.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._PropertyBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.PropertyBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._PropertyBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._PropertyInfo"> <summary> Exposes the public members of the <see cref="T:System.Reflection.PropertyInfo" /> class to unmanaged code. </summary> </member> <member name="P:System.Runtime.InteropServices._PropertyInfo.Attributes"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.PropertyInfo.Attributes" /> property. </summary> <returns> The attributes of this property. </returns> </member> <member name="P:System.Runtime.InteropServices._PropertyInfo.CanRead"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.PropertyInfo.CanRead" /> property. </summary> <returns>true if this property can be read; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._PropertyInfo.CanWrite"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.PropertyInfo.CanWrite" /> property. </summary> <returns>true if this property can be written to; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._PropertyInfo.DeclaringType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.DeclaringType" /> property. </summary> <returns> The Type object for the class that declares this member. </returns> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.Equals(System.Object)" /> method. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="other"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetAccessors"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.GetAccessors" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.MethodInfo" /> objects that reflect the public get, set, and other accessors of the property reflected by the current instance, if accessors are found; otherwise, this method returns an array with zero (0) elements. </returns> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetAccessors(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.GetAccessors(System.Boolean)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.MethodInfo" /> objects whose elements reflect the get, set, and other accessors of the property reflected by the current instance. If the <paramref name="nonPublic" /> parameter is true, this array contains public and non-public get, set, and other accessors. If <paramref name="nonPublic" /> is false, this array contains only public get, set, and other accessors. If no accessors with the specified visibility are found, this method returns an array with zero (0) elements. </returns> <param name="nonPublic">true to include non-public methods in the returned MethodInfo array; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetCustomAttributes(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> method. </summary> <returns> An array that contains all the custom attributes, or an array with zero elements if no attributes are defined. </returns> <param name="inherit"> true to search this member's inheritance chain to find the attributes; otherwise false. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Type,System.Boolean)" /> method. </summary> <returns> An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit"> true to search this member's inheritance chain to find the attributes; otherwise false. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetGetMethod"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.GetGetMethod" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the public get accessor for this property, or null if the get accessor is non-public or does not exist. </returns> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetGetMethod(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.GetGetMethod(System.Boolean)" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the get accessor for this property, if the <paramref name="nonPublic" /> parameter is true. Or null if <paramref name="nonPublic" /> is false and the get accessor is non-public, or if <paramref name="nonPublic" /> is true but no get accessors exist. </returns> <param name="nonPublic">true to return a non-public get accessor; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetHashCode"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetHashCode" /> method. </summary> <returns> The hash code for the current instance. </returns> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetIndexParameters"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.GetIndexParameters" /> method. </summary> <returns> An array of type <see cref="T:System.Reflection.ParameterInfo" /> containing the parameters for the indexes. </returns> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetSetMethod"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.GetSetMethod" /> method. </summary> <returns> The <see cref="T:System.Reflection.MethodInfo" /> object representing the Set method for this property if the set accessor is public, or null if the set accessor is not public. </returns> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetSetMethod(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.GetSetMethod(System.Boolean)" /> method. </summary> <returns> Value Condition A <see cref="T:System.Reflection.MethodInfo" /> object representing the Set method for this property. The set accessor is public. -or- The <paramref name="nonPublic" /> parameter is true and the set accessor is non-public. null The <paramref name="nonPublic" /> parameter is true, but the property is read-only. -or- The <paramref name="nonPublic" /> parameter is false and the set accessor is non-public. -or- There is no set accessor. </returns> <param name="nonPublic">true to return a non-public accessor; otherwise, false. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.GetType" /> method. </summary> <returns> A <see cref="T:System.Type" /> object. </returns> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetValue(System.Object,System.Object[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.GetValue(System.Object,System.Object[])" /> method. </summary> <returns> The property value for the <paramref name="obj" /> parameter. </returns> <param name="obj"> The object whose property value will be returned. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" /> method. </summary> <returns> The property value for the <paramref name="obj" /> parameter. </returns> <param name="obj"> The object whose property value will be returned. </param> <param name="invokeAttr"> The invocation attribute. This must be a bit flag from BindingFlags: InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member will be invoked, the Static flag of BindingFlags must be set. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects through reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> <param name="culture"> The CultureInfo object that represents the culture for which the resource will be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.IsDefined(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> method. </summary> <returns>true if one or more instances of the <paramref name="attributeType" /> parameter are applied to this member; otherwise, false. </returns> <param name="attributeType"> The <see cref="T:System.Type" /> object to which the custom attributes are applied. </param> <param name="inherit"> true to search this member's inheritance chain to find the attributes; otherwise false. </param> </member> <member name="P:System.Runtime.InteropServices._PropertyInfo.IsSpecialName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.PropertyInfo.IsSpecialName" /> property. </summary> <returns>true if this property is the special name; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._PropertyInfo.MemberType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.PropertyInfo.MemberType" /> property. </summary> <returns> One of the <see cref="T:System.Reflection.MemberTypes" /> values indicating that this member is a property. </returns> </member> <member name="P:System.Runtime.InteropServices._PropertyInfo.Name"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.Name" /> property. </summary> <returns> A <see cref="T:System.String" /> object containing the name of this member. </returns> </member> <member name="P:System.Runtime.InteropServices._PropertyInfo.PropertyType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.PropertyInfo.PropertyType" /> property. </summary> <returns> The type of this property. </returns> </member> <member name="P:System.Runtime.InteropServices._PropertyInfo.ReflectedType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.ReflectedType" /> property. </summary> <returns> The <see cref="T:System.Type" /> object through which this <see cref="T:System.Reflection.MemberInfo" /> object was obtained. </returns> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.SetValue(System.Object,System.Object,System.Object[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.PropertyInfo.SetValue(System.Object,System.Object,System.Object[])" /> method. </summary> <param name="obj"> The object whose property value will be set. </param> <param name="value"> The new value for this property. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.FieldInfo.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo)" /> method. </summary> <param name="obj"> The object whose property value will be returned. </param> <param name="value"> The new value for this property. </param> <param name="invokeAttr"> The invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />: InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member will be invoked, the Static flag of BindingFlags must be set. </param> <param name="binder"> An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects through reflection. If <paramref name="binder" /> is null, the default binder is used. </param> <param name="index"> Optional index values for indexed properties. This value should be null for non-indexed properties. </param> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> object that represents the culture for which the resource will be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property. </param> </member> <member name="M:System.Runtime.InteropServices._PropertyInfo.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Object.ToString" /> method. </summary> <returns> A string that represents the current <see cref="T:System.Object" />. </returns> </member> <member name="T:System.Runtime.InteropServices._SignatureHelper"> <summary> Exposes the <see cref="T:System.Reflection.Emit.SignatureHelper" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._SignatureHelper.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._SignatureHelper.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._SignatureHelper.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._SignatureHelper.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._Thread"> <summary> Exposes the <see cref="T:System.Threading.Thread" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._Thread.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._Thread.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._Thread.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._Thread.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices._Type"> <summary> Exposes the public members of the <see cref="T:System.Type" /> class to the unmanaged code. </summary> </member> <member name="P:System.Runtime.InteropServices._Type.Assembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.Assembly" /> property. </summary> <returns> An <see cref="T:System.Reflection.Assembly" /> instance that describes the assembly containing the current type. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.AssemblyQualifiedName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.AssemblyQualifiedName" /> property. </summary> <returns> The assembly-qualified name of the <see cref="T:System.Type" />, including the name of the assembly from which the <see cref="T:System.Type" /> was loaded. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.Attributes"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.Attributes" /> property. </summary> <returns> A <see cref="T:System.Reflection.TypeAttributes" /> object representing the attribute set of the <see cref="T:System.Type" />, unless the <see cref="T:System.Type" /> represents a generic type parameter, in which case the value is unspecified. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.BaseType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.BaseType" /> property. </summary> <returns> The <see cref="T:System.Type" /> from which the current <see cref="T:System.Type" /> directly inherits, or null if the current Type represents the <see cref="T:System.Object" /> class. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.DeclaringType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.DeclaringType" /> property. </summary> <returns> The <see cref="T:System.Type" /> object for the class that declares this member. If the type is a nested type, this property returns the enclosing type. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.Equals(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.Equals(System.Object)" /> method. </summary> <returns>true if the underlying system type of <paramref name="o" /> is the same as the underlying system type of the current <see cref="T:System.Type" />; otherwise, false. </returns> <param name="other"> The <see cref="T:System.Object" /> whose underlying system type is to be compared with the underlying system type of the current <see cref="T:System.Type" />. </param> </member> <member name="M:System.Runtime.InteropServices._Type.Equals(System.Type)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.Equals(System.Type)" /> method. </summary> <returns>true if the underlying system type of <paramref name="o" /> is the same as the underlying system type of the current <see cref="T:System.Type" />; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Type" /> whose underlying system type is to be compared with the underlying system type of the current <see cref="T:System.Type" />. </param> </member> <member name="M:System.Runtime.InteropServices._Type.FindInterfaces(System.Reflection.TypeFilter,System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.FindInterfaces(System.Reflection.TypeFilter,System.Object)" /> method. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing a filtered list of the interfaces implemented or inherited by the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Type" />, if no interfaces matching the filter are implemented or inherited by the current <see cref="T:System.Type" />. </returns> <param name="filter"> The <see cref="T:System.Reflection.TypeFilter" /> delegate that compares the interfaces against <paramref name="filterCriteria" />. </param> <param name="filterCriteria"> The search criteria that determines whether an interface should be included in the returned array. </param> </member> <member name="M:System.Runtime.InteropServices._Type.FindMembers(System.Reflection.MemberTypes,System.Reflection.BindingFlags,System.Reflection.MemberFilter,System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.FindMembers(System.Reflection.MemberTypes,System.Reflection.BindingFlags,System.Reflection.MemberFilter,System.Object)" /> method. </summary> <returns> A filtered array of <see cref="T:System.Reflection.MemberInfo" /> objects of the specified member type. -or- An empty array of type <see cref="T:System.Reflection.MemberInfo" />, if the current <see cref="T:System.Type" /> does not have members of type <paramref name="memberType" /> that match the filter criteria. </returns> <param name="memberType"> A MemberTypes object indicating the type of member to search for. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="filter"> The delegate that does the comparisons, returning true if the member currently being inspected matches the <paramref name="filterCriteria" /> and false otherwise. You can use the FilterAttribute, FilterName, and FilterNameIgnoreCase delegates supplied by this class. The first uses the fields of FieldAttributes, MethodAttributes, and MethodImplAttributes as search criteria, and the other two delegates use String objects as the search criteria. </param> <param name="filterCriteria"> The search criteria that determines whether a member is returned in the array of MemberInfo objects. The fields of FieldAttributes, MethodAttributes, and MethodImplAttributes can be used in conjunction with the FilterAttribute delegate supplied by this class. </param> </member> <member name="P:System.Runtime.InteropServices._Type.FullName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.FullName" /> property. </summary> <returns> A string containing the fully qualified name of the <see cref="T:System.Type" />, including the namespace of the <see cref="T:System.Type" /> but not the assembly. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetArrayRank"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetArrayRank" /> method. </summary> <returns> An <see cref="T:System.Int32" /> containing the number of dimensions in the current <see cref="T:System.Type" />. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> object representing the constructor that matches the specified requirements, if found; otherwise, null. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="callConvention"> The <see cref="T:System.Reflection.CallingConventions" /> object that specifies the set of rules to use regarding the order and layout of arguments, how the return value is passed, what registers are used for arguments, and the stack is cleaned up. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the constructor to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a constructor that takes no parameters. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> object representing the constructor that matches the specified requirements, if found; otherwise, null. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the constructor to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a constructor that takes no parameters. -or- <see cref="F:System.Type.EmptyTypes" />. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the parameter type array. The default binder does not process this parameter. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetConstructor(System.Type[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetConstructor(System.Type[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> object representing the public instance constructor whose parameters match the types in the parameter type array, if found; otherwise, null. </returns> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the desired constructor. -or- An empty array of <see cref="T:System.Type" /> objects, to get a constructor that takes no parameters. Such an empty array is provided by the static field <see cref="F:System.Type.EmptyTypes" />. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetConstructors"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetConstructors" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing all the public instance constructors defined for the current <see cref="T:System.Type" />, but not including the type initializer (static constructor). If no public instance constructors are defined for the current <see cref="T:System.Type" />, or if the current <see cref="T:System.Type" /> represents a type parameter of a generic type or method definition, an empty array of type <see cref="T:System.Reflection.ConstructorInfo" /> is returned. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetConstructors(System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetConstructors(System.Reflection.BindingFlags)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing all constructors defined for the current <see cref="T:System.Type" /> that match the specified binding constraints, including the type initializer if it is defined. Returns an empty array of type <see cref="T:System.Reflection.ConstructorInfo" /> if no constructors are defined for the current <see cref="T:System.Type" />, if none of the defined constructors match the binding constraints, or if the current <see cref="T:System.Type" /> represents a type parameter of a generic type or method definition. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetCustomAttributes(System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.Assembly.GetCustomAttributes(System.Boolean)" /> method. </summary> <returns> An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied. </returns> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetCustomAttributes(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Type,System.Boolean)" /> method. </summary> <returns> An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied. </returns> <param name="attributeType"> The type of attribute to search for. Only attributes that are assignable to this type are returned. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetDefaultMembers"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetDefaultMembers" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing all default members of the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.MemberInfo" />, if the current <see cref="T:System.Type" /> does not have default members. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetElementType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetElementType" /> method. </summary> <returns> The <see cref="T:System.Type" /> of the object encompassed or referred to by the current array, pointer or reference type. -or- null if the current <see cref="T:System.Type" /> is not an array or a pointer, or is not passed by reference, or represents a generic type or a type parameter of a generic type or method definition. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetEvent(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetEvent(System.String)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.EventInfo" /> objects representing all events that are declared or inherited by the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.EventInfo" />, if the current <see cref="T:System.Type" /> does not have events, or if none of the events match the binding constraints. </returns> <param name="name"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetEvent(System.String,System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetEvent(System.String,System.Reflection.BindingFlags)" /> method. </summary> <returns> The <see cref="T:System.Reflection.EventInfo" /> object representing the specified event that is declared or inherited by the current <see cref="T:System.Type" />, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of an event that is declared or inherited by the current <see cref="T:System.Type" />. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetEvents"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetEvents" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.EventInfo" /> objects representing all the public events that are declared or inherited by the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.EventInfo" />, if the current <see cref="T:System.Type" /> does not have public events. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetEvents(System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetEvents(System.Reflection.BindingFlags)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.EventInfo" /> objects representing all events that are declared or inherited by the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.EventInfo" />, if the current <see cref="T:System.Type" /> does not have events, or if none of the events match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetField(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetField(System.String)" /> method. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object representing the public field with the specified name, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the data field to get. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetField(System.String,System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetField(System.String,System.Reflection.BindingFlags)" /> method. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object representing the field that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the data field to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetFields"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetFields" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.FieldInfo" /> objects representing all the public fields defined for the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.FieldInfo" />, if no public fields are defined for the current <see cref="T:System.Type" />. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetFields(System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetFields(System.Reflection.BindingFlags)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.FieldInfo" /> objects representing all fields defined for the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.FieldInfo" />, if no fields are defined for the current <see cref="T:System.Type" />, or if none of the defined fields match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetHashCode"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetHashCode" /> method. </summary> <returns> An <see cref="T:System.Int32" /> containing the hash code for this instance. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array that receives the IDs corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetInterface(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetInterface(System.String)" /> method. </summary> <returns> A <see cref="T:System.Type" /> object representing the interface with the specified name, implemented or inherited by the current <see cref="T:System.Type" />, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the interface to get. For generic interfaces, this is the mangled name. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetInterface(System.String,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetInterface(System.String,System.Boolean)" /> method. </summary> <returns> A <see cref="T:System.Type" /> object representing the interface with the specified name, implemented or inherited by the current <see cref="T:System.Type" />, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the interface to get. For generic interfaces, this is the mangled name. </param> <param name="ignoreCase">true to perform a case-insensitive search for <paramref name="name" />. -or- false to perform a case-sensitive search for <paramref name="name" />. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetInterfaceMap(System.Type)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetInterfaceMap(System.Type)" /> method. </summary> <returns> An <see cref="T:System.Reflection.InterfaceMapping" /> object representing the interface mapping for <paramref name="interfaceType" />. </returns> <param name="interfaceType"> The <see cref="T:System.Type" /> of the interface of which to retrieve a mapping. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetInterfaces"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetInterfaces" /> method. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing all the interfaces implemented or inherited by the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Type" />, if no interfaces are implemented or inherited by the current <see cref="T:System.Type" />. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetMember(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMember(System.String)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public members with the specified name, if found; otherwise, an empty array. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public members to get. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetMember(System.String,System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMember(System.String,System.Reflection.BindingFlags)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public members with the specified name, if found; otherwise, an empty array. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the members to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return an empty array. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public members with the specified name, if found; otherwise, an empty array. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the members to get. </param> <param name="type"> The <see cref="T:System.Reflection.MemberTypes" /> value to search for. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return an empty array. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetMembers"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMembers" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing all the public members of the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.MemberInfo" />, if the current <see cref="T:System.Type" /> does not have public members. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetMembers(System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMembers(System.Reflection.BindingFlags)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing all members defined for the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.MemberInfo" />, if no members are defined for the current <see cref="T:System.Type" />, or if none of the defined members match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetMethod(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMethod(System.String)" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the public method with the specified name, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public method to get. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetMethod(System.String,System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags)" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the method to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the method to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="callConvention"> The <see cref="T:System.Reflection.CallingConventions" /> object that specifies the set of rules to use regarding the order and layout of arguments, how the return value is passed, what registers are used for arguments, and how the stack is cleaned up. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the method to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a method that takes no parameters. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the method that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the method to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the method to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a method that takes no parameters. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetMethod(System.String,System.Type[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMethod(System.String,System.Type[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the public method whose parameters match the specified argument types, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public method to get. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the method to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a method that takes no parameters. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetMethod(System.String,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMethod(System.String,System.Type[],System.Reflection.ParameterModifier[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object representing the public method that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public method to get. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the method to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a method that takes no parameters. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetMethods"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMethods" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.MethodInfo" /> objects representing all the public methods defined for the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.MethodInfo" />, if no public methods are defined for the current <see cref="T:System.Type" />. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetMethods(System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetMethods(System.Reflection.BindingFlags)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.MethodInfo" /> objects representing all methods defined for the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.MethodInfo" />, if no methods are defined for the current <see cref="T:System.Type" />, or if none of the defined methods match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetNestedType(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetNestedType(System.String)" /> method. </summary> <returns> A <see cref="T:System.Type" /> object representing the public nested type with the specified name, if found; otherwise, null. </returns> <param name="name"> The string containing the name of the nested type to get. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetNestedType(System.String,System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetNestedType(System.String,System.Reflection.BindingFlags)" /> method. </summary> <returns> A <see cref="T:System.Type" /> object representing the nested type that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The string containing the name of the nested type to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetNestedTypes"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetNestedTypes" /> method. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing all the types nested within the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Type" />, if no types are nested within the current <see cref="T:System.Type" />. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetNestedTypes(System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetNestedTypes(System.Reflection.BindingFlags)" /> method, and searches for the types nested within the current <see cref="T:System.Type" />, using the specified binding constraints. </summary> <returns> An array of <see cref="T:System.Type" /> objects representing all the types nested within the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Type" />, if no types are nested within the current <see cref="T:System.Type" />, or if none of the nested types match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetProperties"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetProperties" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.PropertyInfo" /> objects representing all public properties of the current <see cref="T:System.Type" />. -or- An empty array of type <see cref="T:System.Reflection.PropertyInfo" />, if the current <see cref="T:System.Type" /> does not have public properties. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetProperties(System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetProperties(System.Reflection.BindingFlags)" /> method. </summary> <returns> An array of <see cref="T:System.Reflection.PropertyInfo" /> objects representing all properties of the current <see cref="T:System.Type" /> that match the specified binding constraints. -or- An empty array of type <see cref="T:System.Reflection.PropertyInfo" />, if the current <see cref="T:System.Type" /> does not have properties, or if none of the properties match the binding constraints. </returns> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetProperty(System.String)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetProperty(System.String)" /> method. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the public property with the specified name, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public property to get. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetProperty(System.String,System.Reflection.BindingFlags)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetProperty(System.String,System.Reflection.BindingFlags)" /> method. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the property that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the property to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetProperty(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetProperty(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the property that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the property to get. </param> <param name="bindingAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. -or- Zero, to return null. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="returnType"> The return type of the property. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the indexed property to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a property that is not indexed. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetProperty(System.String,System.Type)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetProperty(System.String,System.Type)" /> method. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the public property with the specified name, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public property to get. </param> <param name="returnType"> The return type of the property. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetProperty(System.String,System.Type,System.Type[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetProperty(System.String,System.Type,System.Type[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the public property whose parameters match the specified argument types, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public property to get. </param> <param name="returnType"> The return type of the property. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the indexed property to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a property that is not indexed. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetProperty(System.String,System.Type,System.Type[],System.Reflection.ParameterModifier[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetProperty(System.String,System.Type,System.Type[],System.Reflection.ParameterModifier[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the public property that matches the specified requirements, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public property to get. </param> <param name="returnType"> The return type of the property. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the indexed property to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a property that is not indexed. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="types" /> array. The default binder does not process this parameter. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetProperty(System.String,System.Type[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetProperty(System.String,System.Type[])" /> method. </summary> <returns> A <see cref="T:System.Reflection.PropertyInfo" /> object representing the public property whose parameters match the specified argument types, if found; otherwise, null. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the public property to get. </param> <param name="types"> An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the indexed property to get. -or- An empty array of the type <see cref="T:System.Type" /> (that is, Type[] types = new Type[0]) to get a property that is not indexed. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetType"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.GetType" /> method. </summary> <returns> The current <see cref="T:System.Type" />. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._Type.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> </member> <member name="P:System.Runtime.InteropServices._Type.GUID"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.GUID" /> property. </summary> <returns> The GUID associated with the <see cref="T:System.Type" />. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.HasElementType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.HasElementType" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is an array, a pointer, or is passed by reference; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="M:System.Runtime.InteropServices._Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[])" /> method. </summary> <returns> An <see cref="T:System.Object" /> representing the return value of the invoked member. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the constructor, method, property, or field member to invoke. -or- An empty string ("") to invoke the default member. -or- For IDispatch members, a string representing the DispID, for example "[DispID=3]". </param> <param name="invokeAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. The access can be one of the BindingFlags such as Public, NonPublic, Private, InvokeMethod, GetField, and so on. The type of lookup need not be specified. If the type of lookup is omitted, BindingFlags.Public | BindingFlags.Instance will apply. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="target"> The <see cref="T:System.Object" /> on which to invoke the specified member. </param> <param name="args"> An array containing the arguments to pass to the member to invoke. </param> </member> <member name="M:System.Runtime.InteropServices._Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Globalization.CultureInfo)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Globalization.CultureInfo)" /> method. </summary> <returns> An <see cref="T:System.Object" /> representing the return value of the invoked member. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the constructor, method, property, or field member to invoke. -or- An empty string ("") to invoke the default member. -or- For IDispatch members, a string representing the DispID, for example "[DispID=3]". </param> <param name="invokeAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. The access can be one of the BindingFlags such as Public, NonPublic, Private, InvokeMethod, GetField, and so on. The type of lookup need not be specified. If the type of lookup is omitted, BindingFlags.Public | BindingFlags.Instance will apply. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="target"> The <see cref="T:System.Object" /> on which to invoke the specified member. </param> <param name="args"> An array containing the arguments to pass to the member to invoke. </param> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> object representing the globalization locale to use, which may be necessary for locale-specific conversions, such as converting a numeric String to a Double. -or- null to use the current thread's <see cref="T:System.Globalization.CultureInfo" />. </param> </member> <member name="M:System.Runtime.InteropServices._Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])" /> method. </summary> <returns> An <see cref="T:System.Object" /> representing the return value of the invoked member. </returns> <param name="name"> The <see cref="T:System.String" /> containing the name of the constructor, method, property, or field member to invoke. -or- An empty string ("") to invoke the default member. -or- For IDispatch members, a string representing the DispID, for example "[DispID=3]". </param> <param name="invokeAttr"> A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. The access can be one of the BindingFlags such as Public, NonPublic, Private, InvokeMethod, GetField, and so on. The type of lookup need not be specified. If the type of lookup is omitted, BindingFlags.Public | BindingFlags.Instance will apply. </param> <param name="binder"> A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection. -or- null, to use the <see cref="P:System.Type.DefaultBinder" />. </param> <param name="target"> The <see cref="T:System.Object" /> on which to invoke the specified member. </param> <param name="args"> An array containing the arguments to pass to the member to invoke. </param> <param name="modifiers"> An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the <paramref name="args" /> array. A parameter's associated attributes are stored in the member's signature. The default binder does not process this parameter. </param> <param name="culture"> The <see cref="T:System.Globalization.CultureInfo" /> object representing the globalization locale to use, which may be necessary for locale-specific conversions, such as converting a numeric String to a Double. -or- null to use the current thread's <see cref="T:System.Globalization.CultureInfo" />. </param> <param name="namedParameters"> An array containing the names of the parameters to which the values in the <paramref name="args" /> array are passed. </param> </member> <member name="P:System.Runtime.InteropServices._Type.IsAbstract"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsAbstract" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is abstract; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsAnsiClass"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsAnsiClass" /> property. </summary> <returns>true if the string format attribute AnsiClass is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsArray"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsArray" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is an array; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.IsAssignableFrom(System.Type)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.IsAssignableFrom(System.Type)" /> method. </summary> <returns>true if <paramref name="c" /> and the current <see cref="T:System.Type" /> represent the same type, or if the current <see cref="T:System.Type" /> is in the inheritance hierarchy of <paramref name="c" />, or if the current <see cref="T:System.Type" /> is an interface that <paramref name="c" /> implements, or if <paramref name="c" /> is a generic type parameter and the current <see cref="T:System.Type" /> represents one of the constraints of <paramref name="c" />. false if none of these conditions are the case, or if <paramref name="c" /> is null. </returns> <param name="c"> The <see cref="T:System.Type" /> to compare with the current <see cref="T:System.Type" />. </param> </member> <member name="P:System.Runtime.InteropServices._Type.IsAutoClass"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsAutoClass" /> property. </summary> <returns>true if the string format attribute AutoClass is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsAutoLayout"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsAutoLayout" /> property. </summary> <returns>true if the class layout attribute AutoLayout is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsByRef"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsByRef" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is passed by reference; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsClass"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsClass" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is a class; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsCOMObject"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsCOMObject" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is a COM object; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsContextful"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsContextful" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> can be hosted in a context; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.IsDefined(System.Type,System.Boolean)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> method. </summary> <returns>true if one or more instance of <paramref name="attributeType" /> is applied to this member; otherwise, false. </returns> <param name="attributeType"> The Type object to which the custom attributes are applied. </param> <param name="inherit"> Specifies whether to search this member's inheritance chain to find the attributes. </param> </member> <member name="P:System.Runtime.InteropServices._Type.IsEnum"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsEnum" /> property. </summary> <returns>true if the current <see cref="T:System.Type" /> represents an enumeration; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsExplicitLayout"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsExplicitLayout" /> property. </summary> <returns>true if the class layout attribute ExplicitLayout is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsImport"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsImport" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> has <see cref="T:System.Runtime.InteropServices.ComImportAttribute" />; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.IsInstanceOfType(System.Object)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.IsInstanceOfType(System.Object)" /> method. </summary> <returns>true if the current <see cref="T:System.Type" /> is in the inheritance hierarchy of the object represented by <paramref name="o" />, or if the current <see cref="T:System.Type" /> is an interface that <paramref name="o" /> supports. false if neither of these conditions is the case, or if <paramref name="o" /> is null, or if the current <see cref="T:System.Type" /> is an open generic type (that is, <see cref="P:System.Type.ContainsGenericParameters" /> returns true). </returns> <param name="o"> The object to compare with the current <see cref="T:System.Type" />. </param> </member> <member name="P:System.Runtime.InteropServices._Type.IsInterface"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsInterface" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is an interface; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsLayoutSequential"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsLayoutSequential" /> property. </summary> <returns>true if the class layout attribute SequentialLayout is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsMarshalByRef"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsMarshalByRef" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is marshaled by reference; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsNestedAssembly"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsNestedAssembly" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is nested and visible only within its own assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsNestedFamANDAssem"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsNestedFamANDAssem" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is nested and visible only to classes that belong to both its own family and its own assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsNestedFamily"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsNestedFamily" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is nested and visible only within its own family; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsNestedFamORAssem"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsNestedFamORAssem" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is nested and visible only to classes that belong to its own family or to its own assembly; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsNestedPrivate"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsNestedPrivate" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is nested and declared private; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsNestedPublic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsNestedPublic" /> property. </summary> <returns>true if the class is nested and declared public; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsNotPublic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsNotPublic" /> property. </summary> <returns>true if the top-level <see cref="T:System.Type" /> is not declared public; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsPointer"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsPointer" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is a pointer; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsPrimitive"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsPrimitive" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is one of the primitive types; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsPublic"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsPublic" /> property. </summary> <returns>true if the top-level <see cref="T:System.Type" /> is declared public; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsSealed"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsSealed" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is declared sealed; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsSerializable"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsSerializable" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is serializable; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsSpecialName"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsSpecialName" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> has a name that requires special handling; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.IsSubclassOf(System.Type)"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.IsSubclassOf(System.Type)" /> method. </summary> <returns>true if the <see cref="T:System.Type" /> represented by the <paramref name="c" /> parameter and the current <see cref="T:System.Type" /> represent classes, and the class represented by the current <see cref="T:System.Type" /> derives from the class represented by <paramref name="c" />; otherwise, false. This method also returns false if <paramref name="c" /> and the current <see cref="T:System.Type" /> represent the same class. </returns> <param name="c"> The <see cref="T:System.Type" /> to compare with the current <see cref="T:System.Type" />. </param> </member> <member name="P:System.Runtime.InteropServices._Type.IsUnicodeClass"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsUnicodeClass" /> property. </summary> <returns>true if the string format attribute UnicodeClass is selected for the <see cref="T:System.Type" />; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.IsValueType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.IsValueType" /> property. </summary> <returns>true if the <see cref="T:System.Type" /> is a value type; otherwise, false. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.MemberType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.MemberType" /> property. </summary> <returns> A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a type or a nested type. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.Module"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.Module" /> property. </summary> <returns> The name of the module in which the current <see cref="T:System.Type" /> is defined. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.Name"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Reflection.MemberInfo.Name" /> property. </summary> <returns> The name of the <see cref="T:System.Type" />. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.Namespace"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.Namespace" /> property. </summary> <returns> The namespace of the <see cref="T:System.Type" />. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.ReflectedType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.ReflectedType" /> property. </summary> <returns> The <see cref="T:System.Type" /> object through which this <see cref="T:System.Reflection.MemberInfo" /> object was obtained. </returns> </member> <member name="M:System.Runtime.InteropServices._Type.ToString"> <summary> Provides COM objects with version-independent access to the <see cref="M:System.Type.ToString" /> method. </summary> <returns> A <see cref="T:System.String" /> representing the name of the current <see cref="T:System.Type" />. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.TypeHandle"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.TypeHandle" /> property. </summary> <returns> The handle for the current <see cref="T:System.Type" />. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.TypeInitializer"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.TypeInitializer" /> property. </summary> <returns> A <see cref="T:System.Reflection.ConstructorInfo" /> containing the name of the class constructor for the <see cref="T:System.Type" />. </returns> </member> <member name="P:System.Runtime.InteropServices._Type.UnderlyingSystemType"> <summary> Provides COM objects with version-independent access to the <see cref="P:System.Type.UnderlyingSystemType" /> property. </summary> <returns> The underlying system type for the <see cref="T:System.Type" />. </returns> </member> <member name="T:System.Runtime.InteropServices._TypeBuilder"> <summary> Exposes the <see cref="T:System.Reflection.Emit.TypeBuilder" /> class to unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices._TypeBuilder.GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> An array of names to be mapped. </param> <param name="cNames"> The count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> An array allocated by the caller that receives the identifiers corresponding to the names. </param> </member> <member name="M:System.Runtime.InteropServices._TypeBuilder.GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> A pointer to the requested type information object. </param> </member> <member name="M:System.Runtime.InteropServices._TypeBuilder.GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> If this is really an out parameter as the syntax above indicates, the wording here should be "When this method returns, contains a pointer to a location that receives the number of type information interfaces provided by the object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices._TypeBuilder.Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> An identifier of a member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> A pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> A pointer to the location where the result will be stored. </param> <param name="pExcepInfo"> A pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> </member> <member name="T:System.Runtime.InteropServices.ArrayWithOffset"> <summary> Encapsulates an array and an offset within the specified array. </summary> </member> <member name="M:System.Runtime.InteropServices.ArrayWithOffset.#ctor(System.Object,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> structure. </summary> <param name="array"> A managed array. </param> <param name="offset"> The offset in bytes, of the element to be passed through platform invoke. </param> </member> <member name="M:System.Runtime.InteropServices.ArrayWithOffset.Equals(System.Object)"> <summary> Indicates whether the specified object matches the current <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. </summary> <returns>true if the object matches this <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" />; otherwise, false. </returns> <param name="obj"> Object to compare with this instance. </param> </member> <member name="M:System.Runtime.InteropServices.ArrayWithOffset.Equals(System.Runtime.InteropServices.ArrayWithOffset)"> <summary> Indicates whether the specified <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object matches the current instance. </summary> <returns>true if the specified <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object matches the current instance; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object to compare with this instance. </param> </member> <member name="M:System.Runtime.InteropServices.ArrayWithOffset.GetArray"> <summary> Returns the managed array referenced by this <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" />. </summary> <returns> The managed array this instance references. </returns> </member> <member name="M:System.Runtime.InteropServices.ArrayWithOffset.GetHashCode"> <summary> Returns a hash code for this value type. </summary> <returns> The hash code for this instance. </returns> </member> <member name="M:System.Runtime.InteropServices.ArrayWithOffset.GetOffset"> <summary> Returns the offset provided when this <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> was constructed. </summary> <returns> The offset for this instance. </returns> </member> <member name="M:System.Runtime.InteropServices.ArrayWithOffset.op_Equality(System.Runtime.InteropServices.ArrayWithOffset,System.Runtime.InteropServices.ArrayWithOffset)"> <summary> Determines whether two specified <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> objects have the same value. </summary> <returns>true if the value of <paramref name="a" /> is the same as the value of <paramref name="b" />; otherwise, false. </returns> <param name="a"> An <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object to compare with the <paramref name="b" /> parameter. </param> <param name="b"> An <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object to compare with the <paramref name="a" /> parameter. </param> </member> <member name="M:System.Runtime.InteropServices.ArrayWithOffset.op_Inequality(System.Runtime.InteropServices.ArrayWithOffset,System.Runtime.InteropServices.ArrayWithOffset)"> <summary> Determines whether two specified <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> objects no not have the same value. </summary> <returns>true if the value of <paramref name="a" /> is not the same as the value of <paramref name="b" />; otherwise, false. </returns> <param name="a"> An <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object to compare with the <paramref name="b" /> parameter. </param> <param name="b"> An <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object to compare with the <paramref name="a" /> parameter. </param> </member> <member name="T:System.Runtime.InteropServices.AssemblyRegistrationFlags"> <summary> Defines a set of flags used when registering assemblies. </summary> </member> <member name="F:System.Runtime.InteropServices.AssemblyRegistrationFlags.None"> <summary> Indicates no special settings. </summary> </member> <member name="F:System.Runtime.InteropServices.AssemblyRegistrationFlags.SetCodeBase"> <summary> Indicates that the code base key for the assembly should be set in the registry. </summary> </member> <member name="T:System.Runtime.InteropServices.AutomationProxyAttribute"> <summary> Specifies whether the type should be marshaled using the Automation marshaler or a custom proxy and stub. </summary> </member> <member name="M:System.Runtime.InteropServices.AutomationProxyAttribute.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.AutomationProxyAttribute" /> class. </summary> <param name="val">true if the class should be marshaled using the Automation Marshaler; false if a proxy stub marshaler should be used. </param> </member> <member name="P:System.Runtime.InteropServices.AutomationProxyAttribute.Value"> <summary> Gets a value indicating the type of marshaler to use. </summary> <returns>true if the class should be marshaled using the Automation Marshaler; false if a proxy stub marshaler should be used. </returns> </member> <member name="T:System.Runtime.InteropServices.BestFitMappingAttribute"> <summary> Controls whether Unicode characters are converted to the closest matching ANSI characters. </summary> </member> <member name="M:System.Runtime.InteropServices.BestFitMappingAttribute.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.BestFitMappingAttribute" /> class set to the value of the <see cref="P:System.Runtime.InteropServices.BestFitMappingAttribute.BestFitMapping" /> property. </summary> <param name="BestFitMapping">true to indicate that best-fit mapping is enabled; otherwise, false. The default is true. </param> </member> <member name="P:System.Runtime.InteropServices.BestFitMappingAttribute.BestFitMapping"> <summary> Gets the best-fit mapping behavior when converting Unicode characters to ANSI characters. </summary> <returns>true if best-fit mapping is enabled; otherwise, false. The default is true. </returns> </member> <member name="F:System.Runtime.InteropServices.BestFitMappingAttribute.ThrowOnUnmappableChar"> <summary> Enables or disables the throwing of an exception on an unmappable Unicode character that is converted to an ANSI '?' character. </summary> </member> <member name="T:System.Runtime.InteropServices.BIND_OPTS"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.BIND_OPTS" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.BIND_OPTS.cbStruct"> <summary> Specifies the size of the BIND_OPTS structure in bytes. </summary> </member> <member name="F:System.Runtime.InteropServices.BIND_OPTS.dwTickCountDeadline"> <summary> Indicates the amount of time (clock time in milliseconds, as returned by the GetTickCount function) the caller specified to complete the binding operation. </summary> </member> <member name="F:System.Runtime.InteropServices.BIND_OPTS.grfFlags"> <summary> Controls aspects of moniker binding operations. </summary> </member> <member name="F:System.Runtime.InteropServices.BIND_OPTS.grfMode"> <summary> Flags that should be used when opening the file that contains the object identified by the moniker. </summary> </member> <member name="T:System.Runtime.InteropServices.BINDPTR"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.BINDPTR" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.BINDPTR.lpfuncdesc"> <summary> Represents a pointer to a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure. </summary> </member> <member name="F:System.Runtime.InteropServices.BINDPTR.lptcomp"> <summary> Represents a pointer to a <see cref="F:System.Runtime.InteropServices.BINDPTR.lptcomp" /> interface. </summary> </member> <member name="F:System.Runtime.InteropServices.BINDPTR.lpvardesc"> <summary> Represents a pointer to a <see cref="T:System.Runtime.InteropServices.VARDESC" /> structure. </summary> </member> <member name="T:System.Runtime.InteropServices.BStrWrapper"> <summary> Marshals data of type VT_BSTR from managed to unmanaged code. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.InteropServices.BStrWrapper.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.BStrWrapper" /> class with the specified <see cref="T:System.String" /> object. </summary> <param name="value"> The <see cref="T:System.String" /> object to wrap and marshal as VT_BSTR. </param> </member> <member name="P:System.Runtime.InteropServices.BStrWrapper.WrappedObject"> <summary> Gets the wrapped <see cref="T:System.String" /> object to marshal as type VT_BSTR. </summary> <returns> The <see cref="T:System.String" /> object wrapped by <see cref="T:System.Runtime.InteropServices.BStrWrapper" />. </returns> </member> <member name="T:System.Runtime.InteropServices.CALLCONV"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.CALLCONV" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.CALLCONV.CC_CDECL"> <summary> Indicates that the Cdecl calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.CALLCONV.CC_MSCPASCAL"> <summary> Indicates that the Mscpascal calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.CALLCONV.CC_PASCAL"> <summary> Indicates that the Pascal calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.CALLCONV.CC_MACPASCAL"> <summary> Indicates that the Macpascal calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.CALLCONV.CC_STDCALL"> <summary> Indicates that the Stdcall calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.CALLCONV.CC_RESERVED"> <summary> This value is reserved for future use. </summary> </member> <member name="F:System.Runtime.InteropServices.CALLCONV.CC_SYSCALL"> <summary> Indicates that the Syscall calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.CALLCONV.CC_MPWCDECL"> <summary> Indicates that the Mpwcdecl calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.CALLCONV.CC_MPWPASCAL"> <summary> Indicates that the Mpwpascal calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.CALLCONV.CC_MAX"> <summary> Indicates the end of the <see cref="T:System.Runtime.InteropServices.CALLCONV" /> enumeration. </summary> </member> <member name="T:System.Runtime.InteropServices.CallingConvention"> <summary> Specifies the calling convention required to call methods implemented in unmanaged code. </summary> </member> <member name="F:System.Runtime.InteropServices.CallingConvention.Winapi"> <summary> This member is not actually a calling convention, but instead uses the default platform calling convention. For example, on Windows the default is <see cref="F:System.Runtime.InteropServices.CallingConvention.StdCall" /> and on Windows CE.NET it is <see cref="F:System.Runtime.InteropServices.CallingConvention.Cdecl" />. </summary> </member> <member name="F:System.Runtime.InteropServices.CallingConvention.Cdecl"> <summary> The caller cleans the stack. This enables calling functions with varargs, which makes it appropriate to use for methods that accept a variable number of parameters, such as Printf. </summary> </member> <member name="F:System.Runtime.InteropServices.CallingConvention.StdCall"> <summary> The callee cleans the stack. This is the default convention for calling unmanaged functions with platform invoke. </summary> </member> <member name="F:System.Runtime.InteropServices.CallingConvention.ThisCall"> <summary> The first parameter is the this pointer and is stored in register ECX. Other parameters are pushed on the stack. This calling convention is used to call methods on classes exported from an unmanaged DLL. </summary> </member> <member name="F:System.Runtime.InteropServices.CallingConvention.FastCall"> <summary> This calling convention is not supported. </summary> </member> <member name="T:System.Runtime.InteropServices.CharSet"> <summary> Dictates which character set marshaled strings should use. </summary> </member> <member name="F:System.Runtime.InteropServices.CharSet.None"> <summary> This value is obsolete and has the same behavior as <see cref="F:System.Runtime.InteropServices.CharSet.Ansi" />. </summary> </member> <member name="F:System.Runtime.InteropServices.CharSet.Ansi"> <summary> Marshal strings as multiple-byte character strings. </summary> </member> <member name="F:System.Runtime.InteropServices.CharSet.Unicode"> <summary> Marshal strings as Unicode 2-byte characters. </summary> </member> <member name="F:System.Runtime.InteropServices.CharSet.Auto"> <summary> Automatically marshal strings appropriately for the target operating system. The default is <see cref="F:System.Runtime.InteropServices.CharSet.Unicode" /> on Windows NT, Windows 2000, Windows XP, and the Windows Server 2003 family; the default is <see cref="F:System.Runtime.InteropServices.CharSet.Ansi" /> on Windows 98 and Windows Me. Although the common language runtime default is <see cref="F:System.Runtime.InteropServices.CharSet.Auto" />, languages may override this default. For example, by default C# marks all methods and types as <see cref="F:System.Runtime.InteropServices.CharSet.Ansi" />. </summary> </member> <member name="T:System.Runtime.InteropServices.ClassInterfaceAttribute"> <summary> Indicates the type of class interface to be generated for a class exposed to COM, if an interface is generated at all. </summary> </member> <member name="M:System.Runtime.InteropServices.ClassInterfaceAttribute.#ctor(System.Int16)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> enumeration value. </summary> <param name="classInterfaceType"> Describes the type of interface that is generated for a class. </param> </member> <member name="M:System.Runtime.InteropServices.ClassInterfaceAttribute.#ctor(System.Runtime.InteropServices.ClassInterfaceType)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> enumeration member. </summary> <param name="classInterfaceType"> One of the <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> values that describes the type of interface that is generated for a class. </param> </member> <member name="P:System.Runtime.InteropServices.ClassInterfaceAttribute.Value"> <summary> Gets the <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> value that describes which type of interface should be generated for the class. </summary> <returns> The <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> value that describes which type of interface should be generated for the class. </returns> </member> <member name="T:System.Runtime.InteropServices.ClassInterfaceType"> <summary> Identifies the type of class interface that is generated for a class. </summary> </member> <member name="F:System.Runtime.InteropServices.ClassInterfaceType.None"> <summary> Indicates that no class interface is generated for the class. If no interfaces are implemented explicitly, the class can only provide late bound access through the IDispatch interface. This is the recommended setting for <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" />. Using ClassInterfaceType.None is the only way to expose functionality through interfaces implemented explicitly by the class. </summary> </member> <member name="F:System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch"> <summary> Indicates that the class only supports late binding for COM clients. A dispinterface for the class is automatically exposed to COM clients on request. The type library produced by the type Type Library Exporter (Tlbexp.exe) does not contain type information for the dispinterface in order to prevent clients from caching the DISPIDs of the interface. The dispinterface does not exhibit the versioning problems described in <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" /> because clients can only late bind to the interface. </summary> </member> <member name="F:System.Runtime.InteropServices.ClassInterfaceType.AutoDual"> <summary> Indicates that a dual class interface is automatically generated for the class and exposed to COM. Type information is produced for the class interface and published in the type library. Using AutoDual is strongly discouraged because of the versioning limitations described in <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" />. </summary> </member> <member name="T:System.Runtime.InteropServices.CoClassAttribute"> <summary> Specifies the class identifier of a coclass imported from a type library. </summary> </member> <member name="M:System.Runtime.InteropServices.CoClassAttribute.#ctor(System.Type)"> <summary> Initializes new instance of the <see cref="T:System.Runtime.InteropServices.CoClassAttribute" /> with the class identifier of the original coclass. </summary> <param name="coClass"> A <see cref="T:System.Type" /> that contains the class identifier of the original coclass. </param> </member> <member name="P:System.Runtime.InteropServices.CoClassAttribute.CoClass"> <summary> Gets the class identifier of the original coclass. </summary> <returns> A <see cref="T:System.Type" /> containing the class identifier of the original coclass. </returns> </member> <member name="T:System.Runtime.InteropServices.ComAliasNameAttribute"> <summary> Indicates the COM alias for a parameter or field type. </summary> </member> <member name="M:System.Runtime.InteropServices.ComAliasNameAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComAliasNameAttribute" /> class with the alias for the attributed field or parameter. </summary> <param name="alias"> The alias for the field or parameter as found in the type library when it was imported. </param> </member> <member name="P:System.Runtime.InteropServices.ComAliasNameAttribute.Value"> <summary> Gets the alias for the field or parameter as found in the type library when it was imported. </summary> <returns> The alias for the field or parameter as found in the type library when it was imported. </returns> </member> <member name="T:System.Runtime.InteropServices.ComCompatibleVersionAttribute"> <summary> Indicates to a COM client that all classes in the current version of an assembly are compatible with classes in an earlier version of the assembly. </summary> </member> <member name="M:System.Runtime.InteropServices.ComCompatibleVersionAttribute.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComCompatibleVersionAttribute" /> class with the major version, minor version, build, and revision numbers of the assembly. </summary> <param name="major"> The major version number of the assembly. </param> <param name="minor"> The minor version number of the assembly. </param> <param name="build"> The build number of the assembly. </param> <param name="revision"> The revision number of the assembly. </param> </member> <member name="P:System.Runtime.InteropServices.ComCompatibleVersionAttribute.BuildNumber"> <summary> Gets the build number of the assembly. </summary> <returns> The build number of the assembly. </returns> </member> <member name="P:System.Runtime.InteropServices.ComCompatibleVersionAttribute.MajorVersion"> <summary> Gets the major version number of the assembly. </summary> <returns> The major version number of the assembly. </returns> </member> <member name="P:System.Runtime.InteropServices.ComCompatibleVersionAttribute.MinorVersion"> <summary> Gets the minor version number of the assembly. </summary> <returns> The minor version number of the assembly. </returns> </member> <member name="P:System.Runtime.InteropServices.ComCompatibleVersionAttribute.RevisionNumber"> <summary> Gets the revision number of the assembly. </summary> <returns> The revision number of the assembly. </returns> </member> <member name="T:System.Runtime.InteropServices.ComConversionLossAttribute"> <summary> Indicates that information was lost about a class or interface when it was imported from a type library to an assembly. </summary> </member> <member name="M:System.Runtime.InteropServices.ComConversionLossAttribute.#ctor"> <summary> Initializes a new instance of the ComConversionLossAttribute class. </summary> </member> <member name="T:System.Runtime.InteropServices.ComDefaultInterfaceAttribute"> <summary> Specifies a default interface to expose to COM. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.InteropServices.ComDefaultInterfaceAttribute.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComDefaultInterfaceAttribute" /> class with the specified <see cref="T:System.Type" /> object as the default interface exposed to COM. </summary> <param name="defaultInterface"> A <see cref="T:System.Type" /> value indicating the default interface to expose to COM. </param> </member> <member name="P:System.Runtime.InteropServices.ComDefaultInterfaceAttribute.Value"> <summary> Gets the <see cref="T:System.Type" /> object that specifies the default interface to expose to COM. </summary> <returns> The <see cref="T:System.Type" /> object that specifies the default interface to expose to COM. </returns> </member> <member name="T:System.Runtime.InteropServices.ComEventInterfaceAttribute"> <summary> Identifies the source interface and the class that implements the methods of the event interface that is generated when a coclass is imported from a COM type library. </summary> </member> <member name="M:System.Runtime.InteropServices.ComEventInterfaceAttribute.#ctor(System.Type,System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComEventInterfaceAttribute" /> class with the source interface and event provider class. </summary> <param name="SourceInterface"> A <see cref="T:System.Type" /> that contains the original source interface from the type library. COM uses this interface to call back to the managed class. </param> <param name="EventProvider"> A <see cref="T:System.Type" /> that contains the class that implements the methods of the event interface. </param> </member> <member name="P:System.Runtime.InteropServices.ComEventInterfaceAttribute.EventProvider"> <summary> Gets the class that implements the methods of the event interface. </summary> <returns> A <see cref="T:System.Type" /> that contains the class that implements the methods of the event interface. </returns> </member> <member name="P:System.Runtime.InteropServices.ComEventInterfaceAttribute.SourceInterface"> <summary> Gets the original source interface from the type library. </summary> <returns> A <see cref="T:System.Type" /> containing the source interface. </returns> </member> <member name="T:System.Runtime.InteropServices.COMException"> <summary> The exception that is thrown when an unrecognized HRESULT is returned from a COM method call. </summary> </member> <member name="M:System.Runtime.InteropServices.COMException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class with default values. </summary> </member> <member name="M:System.Runtime.InteropServices.COMException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class from serialization data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that supplies the contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Runtime.InteropServices.COMException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class with a specified message. </summary> <param name="message"> The message that indicates the reason for the exception. </param> </member> <member name="M:System.Runtime.InteropServices.COMException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Runtime.InteropServices.COMException.#ctor(System.String,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class with a specified message and error code. </summary> <param name="message"> The message that indicates the reason the exception occurred. </param> <param name="errorCode"> The error code (HRESULT) value associated with this exception. </param> </member> <member name="M:System.Runtime.InteropServices.COMException.ToString"> <summary> Converts the contents of the exception to a string. </summary> <returns> A string containing the <see cref="P:System.Exception.HResult" />, <see cref="P:System.Exception.Message" />, <see cref="P:System.Exception.InnerException" />, and <see cref="P:System.Exception.StackTrace" /> properties of the exception. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="T:System.Runtime.InteropServices.ComImportAttribute"> <summary> Indicates that the attributed type was previously defined in COM. </summary> </member> <member name="M:System.Runtime.InteropServices.ComImportAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComImportAttribute" />. </summary> </member> <member name="T:System.Runtime.InteropServices.ComInterfaceType"> <summary> Identifies how to expose an interface to COM. </summary> </member> <member name="F:System.Runtime.InteropServices.ComInterfaceType.InterfaceIsDual"> <summary> Indicates the interface is exposed to COM as a dual interface, which enables both early and late binding. <see cref="F:System.Runtime.InteropServices.ComInterfaceType.InterfaceIsDual" /> is the default value. </summary> </member> <member name="F:System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown"> <summary> Indicates an interface is exposed to COM as an IUnknown -derived interface, which enables only early binding. </summary> </member> <member name="F:System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIDispatch"> <summary> Indicates an interface is exposed to COM as a dispinterface, which enables late binding only. </summary> </member> <member name="T:System.Runtime.InteropServices.ComMemberType"> <summary> Describes the type of a COM member. </summary> </member> <member name="F:System.Runtime.InteropServices.ComMemberType.Method"> <summary> The member is a normal method. </summary> </member> <member name="F:System.Runtime.InteropServices.ComMemberType.PropGet"> <summary> The member gets properties. </summary> </member> <member name="F:System.Runtime.InteropServices.ComMemberType.PropSet"> <summary> The member sets properties. </summary> </member> <member name="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute"> <summary> Specifies the method to call when you register an assembly for use from COM; this enables the execution of user-written code during the registration process. </summary> </member> <member name="M:System.Runtime.InteropServices.ComRegisterFunctionAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute" /> class. </summary> </member> <member name="T:System.Runtime.InteropServices.ComSourceInterfacesAttribute"> <summary> Identifies a list of interfaces that are exposed as COM event sources for the attributed class. </summary> </member> <member name="M:System.Runtime.InteropServices.ComSourceInterfacesAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComSourceInterfacesAttribute" /> class with the name of the event source interface. </summary> <param name="sourceInterfaces"> A null-delimited list of fully qualified event source interface names. </param> </member> <member name="M:System.Runtime.InteropServices.ComSourceInterfacesAttribute.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComSourceInterfacesAttribute" /> class with the type to use as a source interface. </summary> <param name="sourceInterface"> The <see cref="T:System.Type" /> of the source interface. </param> </member> <member name="M:System.Runtime.InteropServices.ComSourceInterfacesAttribute.#ctor(System.Type,System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComSourceInterfacesAttribute" /> class with the types to use as source interfaces. </summary> <param name="sourceInterface1"> The <see cref="T:System.Type" /> of the default source interface. </param> <param name="sourceInterface2"> The <see cref="T:System.Type" /> of a source interface. </param> </member> <member name="M:System.Runtime.InteropServices.ComSourceInterfacesAttribute.#ctor(System.Type,System.Type,System.Type)"> <summary> Initializes a new instance of the ComSourceInterfacesAttribute class with the types to use as source interfaces. </summary> <param name="sourceInterface1"> The <see cref="T:System.Type" /> of the default source interface. </param> <param name="sourceInterface2"> The <see cref="T:System.Type" /> of a source interface. </param> <param name="sourceInterface3"> The <see cref="T:System.Type" /> of a source interface. </param> </member> <member name="M:System.Runtime.InteropServices.ComSourceInterfacesAttribute.#ctor(System.Type,System.Type,System.Type,System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComSourceInterfacesAttribute" /> class with the types to use as source interfaces. </summary> <param name="sourceInterface1"> The <see cref="T:System.Type" /> of the default source interface. </param> <param name="sourceInterface2"> The <see cref="T:System.Type" /> of a source interface. </param> <param name="sourceInterface3"> The <see cref="T:System.Type" /> of a source interface. </param> <param name="sourceInterface4"> The <see cref="T:System.Type" /> of a source interface. </param> </member> <member name="P:System.Runtime.InteropServices.ComSourceInterfacesAttribute.Value"> <summary> Gets the fully qualified name of the event source interface. </summary> <returns> The fully qualified name of the event source interface. </returns> </member> <member name="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute"> <summary> Specifies the method to call when you unregister an assembly for use from COM; this allows for the execution of user-written code during the unregistration process. </summary> </member> <member name="M:System.Runtime.InteropServices.ComUnregisterFunctionAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute" /> class. </summary> </member> <member name="T:System.Runtime.InteropServices.ComVisibleAttribute"> <summary> Controls accessibility of an individual managed type or member, or of all types within an assembly, to COM. </summary> </member> <member name="M:System.Runtime.InteropServices.ComVisibleAttribute.#ctor(System.Boolean)"> <summary> Initializes a new instance of the ComVisibleAttribute class. </summary> <param name="visibility">true to indicate that the type is visible to COM; otherwise, false. The default is true. </param> </member> <member name="P:System.Runtime.InteropServices.ComVisibleAttribute.Value"> <summary> Gets a value that indicates whether the COM type is visible. </summary> <returns>true if the type is visible; otherwise, false. The default value is true. </returns> </member> <member name="T:System.Runtime.InteropServices.CONNECTDATA"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.CONNECTDATA" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.CONNECTDATA.dwCookie"> <summary> Represents a connection token that is returned from a call to <see cref="M:System.Runtime.InteropServices.UCOMIConnectionPoint.Advise(System.Object,System.Int32@)" />. </summary> </member> <member name="F:System.Runtime.InteropServices.CONNECTDATA.pUnk"> <summary> Represents a pointer to the IUnknown interface on a connected advisory sink. The caller must call IUnknown::Release on this pointer when the CONNECTDATA structure is no longer needed. </summary> </member> <member name="T:System.Runtime.InteropServices.CriticalHandle"> <summary> Represents a wrapper class for handle resources. </summary> </member> <member name="M:System.Runtime.InteropServices.CriticalHandle.#ctor(System.IntPtr)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.CriticalHandle" /> class with the specified invalid handle value. </summary> <param name="invalidHandleValue"> The value of an invalid handle (usually 0 or -1). </param> <exception cref="T:System.TypeLoadException"> The derived class resides in an assembly without unmanaged code access permission. </exception> </member> <member name="M:System.Runtime.InteropServices.CriticalHandle.Close"> <summary> Marks the handle for releasing and freeing resources. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.CriticalHandle.Dispose"> <summary> Releases all resources used by the <see cref="T:System.Runtime.InteropServices.CriticalHandle" />. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.CriticalHandle.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Runtime.InteropServices.CriticalHandle" /> class specifying whether to perform a normal dispose operation. </summary> <param name="disposing">true for a normal dispose operation; false to finalize the handle. </param> </member> <member name="M:System.Runtime.InteropServices.CriticalHandle.Finalize"> <summary> Frees all resources associated with the handle. </summary> </member> <member name="F:System.Runtime.InteropServices.CriticalHandle.handle"> <summary> Specifies the handle to be wrapped. </summary> </member> <member name="P:System.Runtime.InteropServices.CriticalHandle.IsClosed"> <summary> Gets a value indicating whether the handle is closed. </summary> <returns>true if the handle is closed; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Runtime.InteropServices.CriticalHandle.IsInvalid"> <summary> When overridden in a derived class, gets a value indicating whether the handle value is invalid. </summary> <returns>true if the handle is valid; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.CriticalHandle.ReleaseHandle"> <summary> When overridden in a derived class, executes the code required to free the handle. </summary> <returns>true if the handle is released successfully; otherwise, in the event of a catastrophic failure, false. In this case, it generates a releaseHandleFailed MDA Managed Debugging Assistant. </returns> </member> <member name="M:System.Runtime.InteropServices.CriticalHandle.SetHandle(System.IntPtr)"> <summary> Sets the handle to the specified pre-existing handle. </summary> <param name="handle"> The pre-existing handle to use. </param> </member> <member name="M:System.Runtime.InteropServices.CriticalHandle.SetHandleAsInvalid"> <summary> Marks a handle as invalid. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Runtime.InteropServices.CurrencyWrapper"> <summary> Wraps objects the marshaler should marshal as a VT_CY. </summary> </member> <member name="M:System.Runtime.InteropServices.CurrencyWrapper.#ctor(System.Decimal)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.CurrencyWrapper" /> class with the Decimal to be wrapped and marshaled as type VT_CY. </summary> <param name="obj"> The Decimal to be wrapped and marshaled as VT_CY. </param> </member> <member name="M:System.Runtime.InteropServices.CurrencyWrapper.#ctor(System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.CurrencyWrapper" /> class with the object containing the Decimal to be wrapped and marshaled as type VT_CY. </summary> <param name="obj"> The object containing the Decimal to be wrapped and marshaled as VT_CY. </param> <exception cref="T:System.ArgumentException"> The <paramref name="obj" /> parameter is not a <see cref="T:System.Decimal" /> type. </exception> </member> <member name="P:System.Runtime.InteropServices.CurrencyWrapper.WrappedObject"> <summary> Gets the wrapped object to be marshaled as type VT_CY. </summary> <returns> The wrapped object to be marshaled as type VT_CY. </returns> </member> <member name="T:System.Runtime.InteropServices.DefaultCharSetAttribute"> <summary> Specifies the value of the <see cref="T:System.Runtime.InteropServices.CharSet" /> enumeration. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.InteropServices.DefaultCharSetAttribute.#ctor(System.Runtime.InteropServices.CharSet)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.DefaultCharSetAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.CharSet" /> value. </summary> <param name="charSet"> One of the <see cref="T:System.Runtime.InteropServices.CharSet" /> values. </param> </member> <member name="P:System.Runtime.InteropServices.DefaultCharSetAttribute.CharSet"> <summary> Gets the default value of <see cref="T:System.Runtime.InteropServices.CharSet" /> for any call to <see cref="T:System.Runtime.InteropServices.DllImportAttribute" />. </summary> <returns> The default value of <see cref="T:System.Runtime.InteropServices.CharSet" /> for any call to <see cref="T:System.Runtime.InteropServices.DllImportAttribute" />. </returns> </member> <member name="T:System.Runtime.InteropServices.DESCKIND"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.DESCKIND" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.DESCKIND.DESCKIND_NONE"> <summary> Indicates that no match was found. </summary> </member> <member name="F:System.Runtime.InteropServices.DESCKIND.DESCKIND_FUNCDESC"> <summary> Indicates that a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> was returned. </summary> </member> <member name="F:System.Runtime.InteropServices.DESCKIND.DESCKIND_VARDESC"> <summary> Indicates that a VARDESC was returned. </summary> </member> <member name="F:System.Runtime.InteropServices.DESCKIND.DESCKIND_TYPECOMP"> <summary> Indicates that a TYPECOMP was returned. </summary> </member> <member name="F:System.Runtime.InteropServices.DESCKIND.DESCKIND_IMPLICITAPPOBJ"> <summary> Indicates that an IMPLICITAPPOBJ was returned. </summary> </member> <member name="F:System.Runtime.InteropServices.DESCKIND.DESCKIND_MAX"> <summary> Indicates an end of enumeration marker. </summary> </member> <member name="T:System.Runtime.InteropServices.DispatchWrapper"> <summary> Wraps objects the marshaler should marshal as a VT_DISPATCH. </summary> </member> <member name="M:System.Runtime.InteropServices.DispatchWrapper.#ctor(System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.DispatchWrapper" /> class with the object being wrapped. </summary> <param name="obj"> The object to be wrapped and converted to <see cref="F:System.Runtime.InteropServices.VarEnum.VT_DISPATCH" />. </param> <exception cref="T:System.ArgumentException"> <paramref name="obj" /> is not a class or an array. -or- <paramref name="obj" /> does not support IDispatch. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="obj" /> parameter was marked with a <see cref="T:System.Runtime.InteropServices.ComVisibleAttribute" /> attribute that was passed a value of false. -or- The <paramref name="obj" /> parameter inherits from a type marked with a <see cref="T:System.Runtime.InteropServices.ComVisibleAttribute" /> attribute that was passed a value of false. </exception> </member> <member name="P:System.Runtime.InteropServices.DispatchWrapper.WrappedObject"> <summary> Gets the object wrapped by the <see cref="T:System.Runtime.InteropServices.DispatchWrapper" />. </summary> <returns> The object wrapped by the <see cref="T:System.Runtime.InteropServices.DispatchWrapper" />. </returns> </member> <member name="T:System.Runtime.InteropServices.DispIdAttribute"> <summary> Specifies the COM dispatch identifier (DISPID) of a method, field, or property. </summary> </member> <member name="M:System.Runtime.InteropServices.DispIdAttribute.#ctor(System.Int32)"> <summary> Initializes a new instance of the DispIdAttribute class with the specified DISPID. </summary> <param name="dispId"> The DISPID for the member. </param> </member> <member name="P:System.Runtime.InteropServices.DispIdAttribute.Value"> <summary> Gets the DISPID for the member. </summary> <returns> The DISPID for the member. </returns> </member> <member name="T:System.Runtime.InteropServices.DISPPARAMS"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.DISPPARAMS" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.DISPPARAMS.cArgs"> <summary> Represents the count of arguments. </summary> </member> <member name="F:System.Runtime.InteropServices.DISPPARAMS.cNamedArgs"> <summary> Represents the count of named arguments </summary> </member> <member name="F:System.Runtime.InteropServices.DISPPARAMS.rgdispidNamedArgs"> <summary> Represents the dispatch IDs of named arguments. </summary> </member> <member name="F:System.Runtime.InteropServices.DISPPARAMS.rgvarg"> <summary> Represents a reference to the array of arguments. </summary> </member> <member name="T:System.Runtime.InteropServices.DllImportAttribute"> <summary> Indicates that the attributed method is exposed by an unmanaged dynamic-link library (DLL) as a static entry point. </summary> </member> <member name="M:System.Runtime.InteropServices.DllImportAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.DllImportAttribute" /> class with the name of the DLL containing the method to import. </summary> <param name="dllName"> The name of the DLL that contains the unmanaged method. This can include an assembly display name, if the DLL is included in an assembly. </param> </member> <member name="F:System.Runtime.InteropServices.DllImportAttribute.BestFitMapping"> <summary> Enables or disables best-fit mapping behavior when converting Unicode characters to ANSI characters. </summary> </member> <member name="F:System.Runtime.InteropServices.DllImportAttribute.CallingConvention"> <summary> Indicates the calling convention of an entry point. </summary> </member> <member name="F:System.Runtime.InteropServices.DllImportAttribute.CharSet"> <summary> Indicates how to marshal string parameters to the method and controls name mangling. </summary> </member> <member name="F:System.Runtime.InteropServices.DllImportAttribute.EntryPoint"> <summary> Indicates the name or ordinal of the DLL entry point to be called. </summary> </member> <member name="F:System.Runtime.InteropServices.DllImportAttribute.ExactSpelling"> <summary> Controls whether the <see cref="F:System.Runtime.InteropServices.DllImportAttribute.CharSet" /> field causes the common language runtime to search an unmanaged DLL for entry-point names other than the one specified. </summary> </member> <member name="F:System.Runtime.InteropServices.DllImportAttribute.PreserveSig"> <summary> Indicates whether unmanaged methods that have HRESULT or retval return values are directly translated or whether HRESULT or retval return values are automatically converted to exceptions. </summary> </member> <member name="F:System.Runtime.InteropServices.DllImportAttribute.SetLastError"> <summary> Indicates whether the callee calls the SetLastError Win32 API function before returning from the attributed method. </summary> </member> <member name="F:System.Runtime.InteropServices.DllImportAttribute.ThrowOnUnmappableChar"> <summary> Enables or disables the throwing of an exception on an unmappable Unicode character that is converted to an ANSI "?" character. </summary> </member> <member name="P:System.Runtime.InteropServices.DllImportAttribute.Value"> <summary> Gets the name of the DLL file that contains the entry point. </summary> <returns> The name of the DLL file that contains the entry point. </returns> </member> <member name="T:System.Runtime.InteropServices.ELEMDESC"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.ELEMDESC" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.ELEMDESC.desc"> <summary> Contains information about an element. </summary> </member> <member name="F:System.Runtime.InteropServices.ELEMDESC.tdesc"> <summary> Identifies the type of the element. </summary> </member> <member name="T:System.Runtime.InteropServices.ELEMDESC.DESCUNION"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.ELEMDESC.DESCUNION" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.ELEMDESC.DESCUNION.idldesc"> <summary> Contains information for remoting the element. </summary> </member> <member name="F:System.Runtime.InteropServices.ELEMDESC.DESCUNION.paramdesc"> <summary> Contains information about the parameter. </summary> </member> <member name="T:System.Runtime.InteropServices.ErrorWrapper"> <summary> Wraps objects the marshaler should marshal as a VT_ERROR. </summary> </member> <member name="M:System.Runtime.InteropServices.ErrorWrapper.#ctor(System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ErrorWrapper" /> class with the HRESULT that corresponds to the exception supplied. </summary> <param name="e"> The exception to be converted to an error code. </param> </member> <member name="M:System.Runtime.InteropServices.ErrorWrapper.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ErrorWrapper" /> class with the HRESULT of the error. </summary> <param name="errorCode"> The HRESULT of the error. </param> </member> <member name="M:System.Runtime.InteropServices.ErrorWrapper.#ctor(System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ErrorWrapper" /> class with an object containing the HRESULT of the error. </summary> <param name="errorCode"> The object containing the HRESULT of the error. </param> <exception cref="T:System.ArgumentException"> The <paramref name="errorCode" /> parameter is not an <see cref="T:System.Int32" /> type. </exception> </member> <member name="P:System.Runtime.InteropServices.ErrorWrapper.ErrorCode"> <summary> Gets the error code of the wrapper. </summary> <returns> The HRESULT of the error. </returns> </member> <member name="T:System.Runtime.InteropServices.EXCEPINFO"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.EXCEPINFO" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.EXCEPINFO.bstrDescription"> <summary> Describes the error intended for the customer. </summary> </member> <member name="F:System.Runtime.InteropServices.EXCEPINFO.bstrHelpFile"> <summary> Contains the fully-qualified drive, path, and file name of a Help file with more information about the error. </summary> </member> <member name="F:System.Runtime.InteropServices.EXCEPINFO.bstrSource"> <summary> Indicates the name of the source of the exception. Typically, this is an application name. </summary> </member> <member name="F:System.Runtime.InteropServices.EXCEPINFO.dwHelpContext"> <summary> Indicates the Help context ID of the topic within the Help file. </summary> </member> <member name="F:System.Runtime.InteropServices.EXCEPINFO.pfnDeferredFillIn"> <summary> Represents a pointer to a function that takes an <see cref="T:System.Runtime.InteropServices.EXCEPINFO" /> structure as an argument and returns an HRESULT value. If deferred fill-in is not desired, this field is set to null. </summary> </member> <member name="F:System.Runtime.InteropServices.EXCEPINFO.pvReserved"> <summary> This field is reserved; must be set to null. </summary> </member> <member name="F:System.Runtime.InteropServices.EXCEPINFO.wCode"> <summary> Represents an error code identifying the error. </summary> </member> <member name="F:System.Runtime.InteropServices.EXCEPINFO.wReserved"> <summary> This field is reserved; must be set to 0. </summary> </member> <member name="T:System.Runtime.InteropServices.ExporterEventKind"> <summary> Describes the callbacks that the type library exporter makes when exporting a type library. </summary> </member> <member name="F:System.Runtime.InteropServices.ExporterEventKind.NOTIF_TYPECONVERTED"> <summary> Specifies that the event is invoked when a type has been exported. </summary> </member> <member name="F:System.Runtime.InteropServices.ExporterEventKind.NOTIF_CONVERTWARNING"> <summary> Specifies that the event is invoked when a warning occurs during conversion. </summary> </member> <member name="F:System.Runtime.InteropServices.ExporterEventKind.ERROR_REFTOINVALIDASSEMBLY"> <summary> This value is not supported in this version of the .NET Framework. </summary> </member> <member name="T:System.Runtime.InteropServices.ExtensibleClassFactory"> <summary> Enables customization of managed objects that extend from unmanaged objects during creation. </summary> </member> <member name="M:System.Runtime.InteropServices.ExtensibleClassFactory.RegisterObjectCreationCallback(System.Runtime.InteropServices.ObjectCreationDelegate)"> <summary> Registers a delegate that is called when an instance of a managed type, that extends from an unmanaged type, needs to allocate the aggregated unmanaged object. </summary> <param name="callback"> A delegate that is called in place of CoCreateInstance. </param> </member> <member name="T:System.Runtime.InteropServices.ExternalException"> <summary> The base exception type for all COM interop exceptions and structured exception handling (SEH) exceptions. </summary> </member> <member name="M:System.Runtime.InteropServices.ExternalException.#ctor"> <summary> Initializes a new instance of the ExternalException class with default properties. </summary> </member> <member name="M:System.Runtime.InteropServices.ExternalException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the ExternalException class from serialization data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Runtime.InteropServices.ExternalException.#ctor(System.String)"> <summary> Initializes a new instance of the ExternalException class with a specified error message. </summary> <param name="message"> The error message that specifies the reason for the exception. </param> </member> <member name="M:System.Runtime.InteropServices.ExternalException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ExternalException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Runtime.InteropServices.ExternalException.#ctor(System.String,System.Int32)"> <summary> Initializes a new instance of the ExternalException class with a specified error message and the HRESULT of the error. </summary> <param name="message"> The error message that specifies the reason for the exception. </param> <param name="errorCode"> The HRESULT of the error. </param> </member> <member name="P:System.Runtime.InteropServices.ExternalException.ErrorCode"> <summary> Gets the HRESULT of the error. </summary> <returns> The HRESULT of the error. </returns> </member> <member name="T:System.Runtime.InteropServices.FieldOffsetAttribute"> <summary> Indicates the physical position of fields within the managed and unmanaged representation of a class or structure. </summary> </member> <member name="M:System.Runtime.InteropServices.FieldOffsetAttribute.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.FieldOffsetAttribute" /> class with the offset in the structure to the beginning of the field. </summary> <param name="offset"> The offset in bytes from the beginning of the structure to the beginning of the field. </param> </member> <member name="P:System.Runtime.InteropServices.FieldOffsetAttribute.Value"> <summary> Gets the offset from the beginning of the structure to the beginning of the field. </summary> <returns> The offset from the beginning of the structure to the beginning of the field. </returns> </member> <member name="T:System.Runtime.InteropServices.FILETIME"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.FILETIME" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.FILETIME.dwHighDateTime"> <summary> Specifies the high 32 bits of the FILETIME. </summary> </member> <member name="F:System.Runtime.InteropServices.FILETIME.dwLowDateTime"> <summary> Specifies the low 32 bits of the FILETIME. </summary> </member> <member name="T:System.Runtime.InteropServices.FUNCDESC"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.FUNCDESC" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.callconv"> <summary> Specifies the calling convention of a function. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.cParams"> <summary> Counts the total number of parameters. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.cParamsOpt"> <summary> Counts the optional parameters. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.cScodes"> <summary> Counts the permitted return values. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.elemdescFunc"> <summary> Contains the return type of the function. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.funckind"> <summary> Specifies whether the function is virtual, static, or dispatch-only. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.invkind"> <summary> Specifies the type of a property function. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.lprgelemdescParam"> <summary> Indicates the size of <see cref="F:System.Runtime.InteropServices.FUNCDESC.cParams" />. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.lprgscode"> <summary> Stores the count of errors a function can return on a 16-bit system. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.memid"> <summary> Identifies the function member ID. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.oVft"> <summary> Specifies the offset in the VTBL for <see cref="F:System.Runtime.InteropServices.FUNCKIND.FUNC_VIRTUAL" />. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCDESC.wFuncFlags"> <summary> Indicates the <see cref="T:System.Runtime.InteropServices.FUNCFLAGS" /> of a function. </summary> </member> <member name="T:System.Runtime.InteropServices.FUNCFLAGS"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.FUNCFLAGS" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FRESTRICTED"> <summary> The function should not be accessible from macro languages. This flag is intended for system-level functions or functions that type browsers should not display. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FSOURCE"> <summary> The function returns an object that is a source of events. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FBINDABLE"> <summary> The function that supports data binding. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FREQUESTEDIT"> <summary> When set, any call to a method that sets the property results first in a call to IPropertyNotifySink::OnRequestEdit. The implementation of OnRequestEdit determines if the call is allowed to set the property. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FDISPLAYBIND"> <summary> The function that is displayed to the user as bindable. <see cref="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FBINDABLE" /> must also be set. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FDEFAULTBIND"> <summary> The function that best represents the object. Only one function in a type information can have this attribute. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FHIDDEN"> <summary> The function should not be displayed to the user, although it exists and is bindable. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FUSESGETLASTERROR"> <summary> The function supports GetLastError. If an error occurs during the function, the caller can call GetLastError to retrieve the error code. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FDEFAULTCOLLELEM"> <summary> Permits an optimization in which the compiler looks for a member named "xyz" on the type of "abc". If such a member is found, and is flagged as an accessor function for an element of the default collection, a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FUIDEFAULT"> <summary> The type information member is the default member for display in the user interface. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FNONBROWSABLE"> <summary> The property appears in an object browser, but not in a properties browser. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FREPLACEABLE"> <summary> Tags the interface as having default behaviors. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FIMMEDIATEBIND"> <summary> Mapped as individual bindable properties. </summary> </member> <member name="T:System.Runtime.InteropServices.FUNCKIND"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.FUNCKIND" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCKIND.FUNC_VIRTUAL"> <summary> The function is accessed the same as <see cref="F:System.Runtime.InteropServices.FUNCKIND.FUNC_PUREVIRTUAL" />, except the function has an implementation. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCKIND.FUNC_PUREVIRTUAL"> <summary> The function is accessed through the virtual function table (VTBL), and takes an implicit this pointer. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCKIND.FUNC_NONVIRTUAL"> <summary> The function is accessed by static address and takes an implicit this pointer. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCKIND.FUNC_STATIC"> <summary> The function is accessed by static address and does not take an implicit this pointer. </summary> </member> <member name="F:System.Runtime.InteropServices.FUNCKIND.FUNC_DISPATCH"> <summary> The function can be accessed only through IDispatch. </summary> </member> <member name="T:System.Runtime.InteropServices.GCHandle"> <summary> Provides a means for accessing a managed object from unmanaged memory. </summary> </member> <member name="M:System.Runtime.InteropServices.GCHandle.AddrOfPinnedObject"> <summary> Retrieves the address of an object in a <see cref="F:System.Runtime.InteropServices.GCHandleType.Pinned" /> handle. </summary> <returns> The address of the of the Pinned object as an <see cref="T:System.IntPtr" />. </returns> <exception cref="T:System.InvalidOperationException"> The handle is any type other than <see cref="F:System.Runtime.InteropServices.GCHandleType.Pinned" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.GCHandle.Alloc(System.Object)"> <summary> Allocates a <see cref="F:System.Runtime.InteropServices.GCHandleType.Normal" /> handle for the specified object. </summary> <returns> A new <see cref="T:System.Runtime.InteropServices.GCHandle" /> that protects the object from garbage collection. This <see cref="T:System.Runtime.InteropServices.GCHandle" /> must be released with <see cref="M:System.Runtime.InteropServices.GCHandle.Free" /> when it is no longer needed. </returns> <param name="value"> The object that uses the <see cref="T:System.Runtime.InteropServices.GCHandle" />. </param> <exception cref="T:System.ArgumentException"> An instance with nonprimitive (non-blittable) members cannot be pinned. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.GCHandle.Alloc(System.Object,System.Runtime.InteropServices.GCHandleType)"> <summary> Allocates a handle of the specified type for the specified object. </summary> <returns> A new <see cref="T:System.Runtime.InteropServices.GCHandle" /> of the specified type. This <see cref="T:System.Runtime.InteropServices.GCHandle" /> must be released with <see cref="M:System.Runtime.InteropServices.GCHandle.Free" /> when it is no longer needed. </returns> <param name="value"> The object that uses the <see cref="T:System.Runtime.InteropServices.GCHandle" />. </param> <param name="type"> One of the <see cref="T:System.Runtime.InteropServices.GCHandleType" /> values, indicating the type of <see cref="T:System.Runtime.InteropServices.GCHandle" /> to create. </param> <exception cref="T:System.ArgumentException"> An instance with nonprimitive (non-blittable) members cannot be pinned. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.GCHandle.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Runtime.InteropServices.GCHandle" /> object is equal to the current <see cref="T:System.Runtime.InteropServices.GCHandle" /> object. </summary> <returns>true if the specified <see cref="T:System.Runtime.InteropServices.GCHandle" /> object is equal to the current <see cref="T:System.Runtime.InteropServices.GCHandle" /> object; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Runtime.InteropServices.GCHandle" /> object to compare with the current <see cref="T:System.Runtime.InteropServices.GCHandle" /> object. </param> </member> <member name="M:System.Runtime.InteropServices.GCHandle.Free"> <summary> Releases a <see cref="T:System.Runtime.InteropServices.GCHandle" />. </summary> <exception cref="T:System.InvalidOperationException"> The handle was freed or never initialized. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.GCHandle.FromIntPtr(System.IntPtr)"> <summary> Returns a new <see cref="T:System.Runtime.InteropServices.GCHandle" /> object created from a handle to a managed object. </summary> <returns> A new <see cref="T:System.Runtime.InteropServices.GCHandle" /> object that corresponds to the value parameter. </returns> <param name="value"> An <see cref="T:System.IntPtr" /> handle to a managed object to create a <see cref="T:System.Runtime.InteropServices.GCHandle" /> object from. </param> <exception cref="T:System.InvalidOperationException"> The value of the <paramref name="value" /> parameter is <see cref="F:System.IntPtr.Zero" />. </exception> </member> <member name="M:System.Runtime.InteropServices.GCHandle.GetHashCode"> <summary> Returns an identifier for the current <see cref="T:System.Runtime.InteropServices.GCHandle" /> object. </summary> <returns> An identifier for the current <see cref="T:System.Runtime.InteropServices.GCHandle" /> object. </returns> </member> <member name="P:System.Runtime.InteropServices.GCHandle.IsAllocated"> <summary> Gets a value indicating whether the handle is allocated. </summary> <returns>true if the handle is allocated; otherwise, false. </returns> </member> <member name="M:System.Runtime.InteropServices.GCHandle.op_Equality(System.Runtime.InteropServices.GCHandle,System.Runtime.InteropServices.GCHandle)"> <summary> Returns a value indicating whether two <see cref="T:System.Runtime.InteropServices.GCHandle" /> objects are equal. </summary> <returns>true if the <paramref name="a" /> and <paramref name="b" /> parameters are equal; otherwise, false. </returns> <param name="a"> A <see cref="T:System.Runtime.InteropServices.GCHandle" /> object to compare with the <paramref name="b" /> parameter. </param> <param name="b"> A <see cref="T:System.Runtime.InteropServices.GCHandle" /> object to compare with the <paramref name="a" /> parameter. </param> </member> <member name="M:System.Runtime.InteropServices.GCHandle.op_Explicit(System.IntPtr)~System.Runtime.InteropServices.GCHandle"> <summary> A <see cref="T:System.Runtime.InteropServices.GCHandle" /> is stored using an internal integer representation. </summary> <returns> The <see cref="T:System.Runtime.InteropServices.GCHandle" />. </returns> <param name="value"> An <see cref="T:System.IntPtr" /> that indicates the handle for which the conversion is required. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.GCHandle.op_Explicit(System.Runtime.InteropServices.GCHandle)~System.IntPtr"> <summary> A <see cref="T:System.Runtime.InteropServices.GCHandle" /> is stored using an internal integer representation. </summary> <returns> The integer value. </returns> <param name="value"> The <see cref="T:System.Runtime.InteropServices.GCHandle" /> for which the integer is required. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.GCHandle.op_Inequality(System.Runtime.InteropServices.GCHandle,System.Runtime.InteropServices.GCHandle)"> <summary> Returns a value indicating whether two <see cref="T:System.Runtime.InteropServices.GCHandle" /> objects are not equal. </summary> <returns>true if the <paramref name="a" /> and <paramref name="b" /> parameters are not equal; otherwise, false. </returns> <param name="a"> A <see cref="T:System.Runtime.InteropServices.GCHandle" /> object to compare with the <paramref name="b" /> parameter. </param> <param name="b"> A <see cref="T:System.Runtime.InteropServices.GCHandle" /> object to compare with the <paramref name="a" /> parameter. </param> </member> <member name="P:System.Runtime.InteropServices.GCHandle.Target"> <summary> Gets or sets the object this handle represents. </summary> <returns> The object this handle represents. </returns> <exception cref="T:System.InvalidOperationException"> The handle was freed, or never initialized. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.GCHandle.ToIntPtr(System.Runtime.InteropServices.GCHandle)"> <summary> Returns the internal integer representation of a <see cref="T:System.Runtime.InteropServices.GCHandle" /> object. </summary> <returns> An <see cref="T:System.IntPtr" /> object that represents a <see cref="T:System.Runtime.InteropServices.GCHandle" /> object. </returns> <param name="value"> A <see cref="T:System.Runtime.InteropServices.GCHandle" /> object to retrieve an internal integer representation from. </param> </member> <member name="T:System.Runtime.InteropServices.GCHandleType"> <summary> Represents the types of handles the <see cref="T:System.Runtime.InteropServices.GCHandle" /> class can allocate. </summary> </member> <member name="F:System.Runtime.InteropServices.GCHandleType.Weak"> <summary> This handle type is used to track an object, but allow it to be collected. When an object is collected, the contents of the <see cref="T:System.Runtime.InteropServices.GCHandle" /> are zeroed. Weak references are zeroed before the finalizer runs, so even if the finalizer resurrects the object, the Weak reference is still zeroed. </summary> </member> <member name="F:System.Runtime.InteropServices.GCHandleType.WeakTrackResurrection"> <summary> This handle type is similar to <see cref="F:System.Runtime.InteropServices.GCHandleType.Weak" />, but the handle is not zeroed if the object is resurrected during finalization. </summary> </member> <member name="F:System.Runtime.InteropServices.GCHandleType.Normal"> <summary> This handle type represents an opaque handle, meaning you cannot resolve the address of the pinned object through the handle. You can use this type to track an object and prevent its collection by the garbage collector. This enumeration member is useful when an unmanaged client holds the only reference, which is undetectable from the garbage collector, to a managed object. </summary> </member> <member name="F:System.Runtime.InteropServices.GCHandleType.Pinned"> <summary> This handle type is similar to <see cref="F:System.Runtime.InteropServices.GCHandleType.Normal" />, but allows the address of the pinned object to be taken. This prevents the garbage collector from moving the object and hence undermines the efficiency of the garbage collector. Use the <see cref="M:System.Runtime.InteropServices.GCHandle.Free" /> method to free the allocated handle as soon as possible. </summary> </member> <member name="T:System.Runtime.InteropServices.GuidAttribute"> <summary> Supplies an explicit <see cref="T:System.Guid" /> when an automatic GUID is undesirable. </summary> </member> <member name="M:System.Runtime.InteropServices.GuidAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.GuidAttribute" /> class with the specified GUID. </summary> <param name="guid"> The <see cref="T:System.Guid" /> to be assigned. </param> </member> <member name="P:System.Runtime.InteropServices.GuidAttribute.Value"> <summary> Gets the <see cref="T:System.Guid" /> of the class. </summary> <returns> The <see cref="T:System.Guid" /> of the class. </returns> </member> <member name="T:System.Runtime.InteropServices.HandleRef"> <summary> Wraps a managed object holding a handle to a resource that is passed to unmanaged code using platform invoke. </summary> </member> <member name="M:System.Runtime.InteropServices.HandleRef.#ctor(System.Object,System.IntPtr)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.HandleRef" /> class with the object to wrap and a handle to the resource used by unmanaged code. </summary> <param name="wrapper"> A managed object that should not be finalized until the platform invoke call returns. </param> <param name="handle"> An <see cref="T:System.IntPtr" /> that indicates a handle to a resource. </param> </member> <member name="P:System.Runtime.InteropServices.HandleRef.Handle"> <summary> Gets the handle to a resource. </summary> <returns> The handle to a resource. </returns> </member> <member name="M:System.Runtime.InteropServices.HandleRef.op_Explicit(System.Runtime.InteropServices.HandleRef)~System.IntPtr"> <summary> Returns the handle to a resource of the specified <see cref="T:System.Runtime.InteropServices.HandleRef" /> object. </summary> <returns> The handle to a resource of the specified <see cref="T:System.Runtime.InteropServices.HandleRef" /> object. </returns> <param name="value"> The object that needs a handle. </param> </member> <member name="M:System.Runtime.InteropServices.HandleRef.ToIntPtr(System.Runtime.InteropServices.HandleRef)"> <summary> Returns the internal integer representation of a <see cref="T:System.Runtime.InteropServices.HandleRef" /> object. </summary> <returns> An <see cref="T:System.IntPtr" /> object that represents a <see cref="T:System.Runtime.InteropServices.HandleRef" /> object. </returns> <param name="value"> A <see cref="T:System.Runtime.InteropServices.HandleRef" /> object to retrieve an internal integer representation from. </param> </member> <member name="P:System.Runtime.InteropServices.HandleRef.Wrapper"> <summary> Gets the object holding the handle to a resource. </summary> <returns> The object holding the handle to a resource. </returns> </member> <member name="T:System.Runtime.InteropServices.ICustomAdapter"> <summary> Provides a way for clients to access the actual object, rather than the adapter object handed out by a custom marshaler. </summary> </member> <member name="M:System.Runtime.InteropServices.ICustomAdapter.GetUnderlyingObject"> <summary> Provides access to the underlying object wrapped by a custom marshaler. </summary> <returns> The object contained by the adapter object. </returns> </member> <member name="T:System.Runtime.InteropServices.ICustomFactory"> <summary> Enables users to write activation code for managed objects that extend <see cref="T:System.MarshalByRefObject" />. </summary> </member> <member name="M:System.Runtime.InteropServices.ICustomFactory.CreateInstance(System.Type)"> <summary> Creates a new instance of the specified type. </summary> <returns> A <see cref="T:System.MarshalByRefObject" /> associated with the specified type. </returns> <param name="serverType"> The type to activate. </param> </member> <member name="T:System.Runtime.InteropServices.ICustomMarshaler"> <summary> Designed to provide custom wrappers for handling method calls. </summary> </member> <member name="M:System.Runtime.InteropServices.ICustomMarshaler.CleanUpManagedData(System.Object)"> <summary> Performs necessary cleanup of the managed data when it is no longer needed. </summary> <param name="ManagedObj"> The managed object to be destroyed. </param> </member> <member name="M:System.Runtime.InteropServices.ICustomMarshaler.CleanUpNativeData(System.IntPtr)"> <summary> Performs necessary cleanup of the unmanaged data when it is no longer needed. </summary> <param name="pNativeData"> A pointer to the unmanaged data to be destroyed. </param> </member> <member name="M:System.Runtime.InteropServices.ICustomMarshaler.GetNativeDataSize"> <summary> Returns the size of the native data to be marshaled. </summary> <returns> The size in bytes of the native data. </returns> </member> <member name="M:System.Runtime.InteropServices.ICustomMarshaler.MarshalManagedToNative(System.Object)"> <summary> Converts the managed data to unmanaged data. </summary> <returns> Returns the COM view of the managed object. </returns> <param name="ManagedObj"> The managed object to be converted. </param> </member> <member name="M:System.Runtime.InteropServices.ICustomMarshaler.MarshalNativeToManaged(System.IntPtr)"> <summary> Converts the unmanaged data to managed data. </summary> <returns> Returns the managed view of the COM data. </returns> <param name="pNativeData"> A pointer to the unmanaged data to be wrapped. </param> </member> <member name="T:System.Runtime.InteropServices.IDispatchImplAttribute"> <summary> Indicates which IDispatch implementation the common language runtime uses when exposing dual interfaces and dispinterfaces to COM. </summary> </member> <member name="M:System.Runtime.InteropServices.IDispatchImplAttribute.#ctor(System.Int16)"> <summary> Initializes a new instance of the IDispatchImplAttribute class with specified <see cref="T:System.Runtime.InteropServices.IDispatchImplType" /> value. </summary> <param name="implType"> Indicates which <see cref="T:System.Runtime.InteropServices.IDispatchImplType" /> enumeration will be used. </param> </member> <member name="M:System.Runtime.InteropServices.IDispatchImplAttribute.#ctor(System.Runtime.InteropServices.IDispatchImplType)"> <summary> Initializes a new instance of the IDispatchImplAttribute class with specified <see cref="T:System.Runtime.InteropServices.IDispatchImplType" /> value. </summary> <param name="implType"> Indicates which <see cref="T:System.Runtime.InteropServices.IDispatchImplType" /> enumeration will be used. </param> </member> <member name="P:System.Runtime.InteropServices.IDispatchImplAttribute.Value"> <summary> Gets the <see cref="T:System.Runtime.InteropServices.IDispatchImplType" /> value used by the class. </summary> <returns> The <see cref="T:System.Runtime.InteropServices.IDispatchImplType" /> value used by the class. </returns> </member> <member name="T:System.Runtime.InteropServices.IDispatchImplType"> <summary> Indicates which IDispatch implementation to use for a particular class. </summary> </member> <member name="F:System.Runtime.InteropServices.IDispatchImplType.SystemDefinedImpl"> <summary> Specifies that the common language runtime decides which IDispatch implementation to use. </summary> </member> <member name="F:System.Runtime.InteropServices.IDispatchImplType.InternalImpl"> <summary> Specifies that the IDispatch implemenation is supplied by the runtime. </summary> </member> <member name="F:System.Runtime.InteropServices.IDispatchImplType.CompatibleImpl"> <summary> Specifies that the IDispatch implementation is supplied by passing the type information for the object to the COM CreateStdDispatch API method. </summary> </member> <member name="T:System.Runtime.InteropServices.IDLDESC"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IDLDESC" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.IDLDESC.dwReserved"> <summary> Reserved; set to null. </summary> </member> <member name="F:System.Runtime.InteropServices.IDLDESC.wIDLFlags"> <summary> Indicates an <see cref="T:System.Runtime.InteropServices.IDLFLAG" /> value describing the type. </summary> </member> <member name="T:System.Runtime.InteropServices.IDLFLAG"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IDLFLAG" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.IDLFLAG.IDLFLAG_NONE"> <summary> Whether the parameter passes or receives information is unspecified. </summary> </member> <member name="F:System.Runtime.InteropServices.IDLFLAG.IDLFLAG_FIN"> <summary> The parameter passes information from the caller to the callee. </summary> </member> <member name="F:System.Runtime.InteropServices.IDLFLAG.IDLFLAG_FOUT"> <summary> The parameter returns information from the callee to the caller. </summary> </member> <member name="F:System.Runtime.InteropServices.IDLFLAG.IDLFLAG_FLCID"> <summary> The parameter is the local identifier of a client application. </summary> </member> <member name="F:System.Runtime.InteropServices.IDLFLAG.IDLFLAG_FRETVAL"> <summary> The parameter is the return value of the member. </summary> </member> <member name="T:System.Runtime.InteropServices.IMPLTYPEFLAGS"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.IMPLTYPEFLAGS.IMPLTYPEFLAG_FDEFAULT"> <summary> The interface or dispinterface represents the default for the source or sink. </summary> </member> <member name="F:System.Runtime.InteropServices.IMPLTYPEFLAGS.IMPLTYPEFLAG_FSOURCE"> <summary> This member of a coclass is called rather than implemented. </summary> </member> <member name="F:System.Runtime.InteropServices.IMPLTYPEFLAGS.IMPLTYPEFLAG_FRESTRICTED"> <summary> The member should not be displayed or programmable by users. </summary> </member> <member name="F:System.Runtime.InteropServices.IMPLTYPEFLAGS.IMPLTYPEFLAG_FDEFAULTVTABLE"> <summary> Sinks receive events through the virtual function table (VTBL). </summary> </member> <member name="T:System.Runtime.InteropServices.ImportedFromTypeLibAttribute"> <summary> Indicates that the types defined within an assembly were originally defined in a type library. </summary> </member> <member name="M:System.Runtime.InteropServices.ImportedFromTypeLibAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ImportedFromTypeLibAttribute" /> class with the name of the original type library file. </summary> <param name="tlbFile"> The location of the original type library file. </param> </member> <member name="P:System.Runtime.InteropServices.ImportedFromTypeLibAttribute.Value"> <summary> Gets the name of the original type library file. </summary> <returns> The name of the original type library file. </returns> </member> <member name="T:System.Runtime.InteropServices.ImporterEventKind"> <summary> Describes the callbacks that the type library importer makes when importing a type library. </summary> </member> <member name="F:System.Runtime.InteropServices.ImporterEventKind.NOTIF_TYPECONVERTED"> <summary> Specifies that the event is invoked when a type has been imported. </summary> </member> <member name="F:System.Runtime.InteropServices.ImporterEventKind.NOTIF_CONVERTWARNING"> <summary> Specifies that the event is invoked when a warning occurs during conversion. </summary> </member> <member name="F:System.Runtime.InteropServices.ImporterEventKind.ERROR_REFTOINVALIDTYPELIB"> <summary> This property is not supported in this version of the .NET Framework. </summary> </member> <member name="T:System.Runtime.InteropServices.InAttribute"> <summary> Indicates that data should be marshaled from the caller to the callee, but not back to the caller. </summary> </member> <member name="M:System.Runtime.InteropServices.InAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InAttribute" /> class. </summary> </member> <member name="T:System.Runtime.InteropServices.InterfaceTypeAttribute"> <summary> Indicates whether a managed interface is dual, dispatch-only, or IUnknown -only when exposed to COM. </summary> </member> <member name="M:System.Runtime.InteropServices.InterfaceTypeAttribute.#ctor(System.Int16)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InterfaceTypeAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.ComInterfaceType" /> enumeration member. </summary> <param name="interfaceType"> Describes how the interface should be exposed to COM clients. </param> </member> <member name="M:System.Runtime.InteropServices.InterfaceTypeAttribute.#ctor(System.Runtime.InteropServices.ComInterfaceType)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InterfaceTypeAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.ComInterfaceType" /> enumeration member. </summary> <param name="interfaceType"> One of the <see cref="T:System.Runtime.InteropServices.ComInterfaceType" /> values that describes how the interface should be exposed to COM clients. </param> </member> <member name="P:System.Runtime.InteropServices.InterfaceTypeAttribute.Value"> <summary> Gets the <see cref="T:System.Runtime.InteropServices.ComInterfaceType" /> value that describes how the interface should be exposed to COM. </summary> <returns> The <see cref="T:System.Runtime.InteropServices.ComInterfaceType" /> value that describes how the interface should be exposed to COM. </returns> </member> <member name="T:System.Runtime.InteropServices.InvalidComObjectException"> <summary> The exception thrown when an invalid COM object is used. </summary> </member> <member name="M:System.Runtime.InteropServices.InvalidComObjectException.#ctor"> <summary> Initializes an instance of the InvalidComObjectException with default properties. </summary> </member> <member name="M:System.Runtime.InteropServices.InvalidComObjectException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the COMException class from serialization data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Runtime.InteropServices.InvalidComObjectException.#ctor(System.String)"> <summary> Initializes an instance of the InvalidComObjectException with a message. </summary> <param name="message"> The message that indicates the reason for the exception. </param> </member> <member name="M:System.Runtime.InteropServices.InvalidComObjectException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InvalidComObjectException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Runtime.InteropServices.InvalidOleVariantTypeException"> <summary> The exception thrown by the marshaler when it encounters an argument of a variant type that can not be marshaled to managed code. </summary> </member> <member name="M:System.Runtime.InteropServices.InvalidOleVariantTypeException.#ctor"> <summary> Initializes a new instance of the InvalidOleVariantTypeException class with default values. </summary> </member> <member name="M:System.Runtime.InteropServices.InvalidOleVariantTypeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the InvalidOleVariantTypeException class from serialization data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Runtime.InteropServices.InvalidOleVariantTypeException.#ctor(System.String)"> <summary> Initializes a new instance of the InvalidOleVariantTypeException class with a specified message. </summary> <param name="message"> The message that indicates the reason for the exception. </param> </member> <member name="M:System.Runtime.InteropServices.InvalidOleVariantTypeException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InvalidOleVariantTypeException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Runtime.InteropServices.INVOKEKIND"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.INVOKEKIND.INVOKE_FUNC"> <summary> The member is called using a normal function invocation syntax. </summary> </member> <member name="F:System.Runtime.InteropServices.INVOKEKIND.INVOKE_PROPERTYGET"> <summary> The function is invoked using a normal property-access syntax. </summary> </member> <member name="F:System.Runtime.InteropServices.INVOKEKIND.INVOKE_PROPERTYPUT"> <summary> The function is invoked using a property value assignment syntax. </summary> </member> <member name="F:System.Runtime.InteropServices.INVOKEKIND.INVOKE_PROPERTYPUTREF"> <summary> The function is invoked using a property reference assignment syntax. </summary> </member> <member name="T:System.Runtime.InteropServices.IRegistrationServices"> <summary> Provides a set of services for registering and unregistering managed assemblies for use from COM. </summary> </member> <member name="M:System.Runtime.InteropServices.IRegistrationServices.GetManagedCategoryGuid"> <summary> Returns the GUID of the COM category that contains the managed classes. </summary> <returns> The GUID of the COM category that contains the managed classes. </returns> </member> <member name="M:System.Runtime.InteropServices.IRegistrationServices.GetProgIdForType(System.Type)"> <summary> Retrieves the COM ProgID for a specified type. </summary> <returns> The ProgID for the specified type. </returns> <param name="type"> The type whose ProgID is being requested. </param> </member> <member name="M:System.Runtime.InteropServices.IRegistrationServices.GetRegistrableTypesInAssembly(System.Reflection.Assembly)"> <summary> Retrieves a list of classes in an assembly that would be registered by a call to <see cref="M:System.Runtime.InteropServices.IRegistrationServices.RegisterAssembly(System.Reflection.Assembly,System.Runtime.InteropServices.AssemblyRegistrationFlags)" />. </summary> <returns> A <see cref="T:System.Type" /> array containing a list of classes in <paramref name="assembly" />. </returns> <param name="assembly"> The assembly to search for classes. </param> </member> <member name="M:System.Runtime.InteropServices.IRegistrationServices.RegisterAssembly(System.Reflection.Assembly,System.Runtime.InteropServices.AssemblyRegistrationFlags)"> <summary> Registers the classes in a managed assembly to enable creation from COM. </summary> <returns>true if <paramref name="assembly" /> contains types that were successfully registered; otherwise false if the assembly contains no eligible types. </returns> <param name="assembly"> The assembly to be registered. </param> <param name="flags"> An <see cref="T:System.Runtime.InteropServices.AssemblyRegistrationFlags" /> value indicating any special settings needed when registering <paramref name="assembly" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assembly" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The full name of <paramref name="assembly" /> is null. -or- A method marked with <see cref="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute" /> is not static. -or- There is more than one method marked with <see cref="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute" /> at a given level of the hierarchy. -or- The signature of the method marked with <see cref="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute" /> is not valid. </exception> </member> <member name="M:System.Runtime.InteropServices.IRegistrationServices.RegisterTypeForComClients(System.Type,System.Guid@)"> <summary> Registers the specified type with COM using the specified GUID. </summary> <param name="type"> The type to be registered for use from COM. </param> <param name="g"> GUID used to register the specified type. </param> </member> <member name="M:System.Runtime.InteropServices.IRegistrationServices.TypeRepresentsComType(System.Type)"> <summary> Determines whether the specified type is a COM type. </summary> <returns>true if the specified type is a COM type; otherwise false. </returns> <param name="type"> The type to determine if it is a COM type. </param> </member> <member name="M:System.Runtime.InteropServices.IRegistrationServices.TypeRequiresRegistration(System.Type)"> <summary> Determines whether the specified type requires registration. </summary> <returns>true if the type must be registered for use from COM; otherwise false. </returns> <param name="type"> The type to check for COM registration requirements. </param> </member> <member name="M:System.Runtime.InteropServices.IRegistrationServices.UnregisterAssembly(System.Reflection.Assembly)"> <summary> Unregisters the classes in a managed assembly. </summary> <returns>true if <paramref name="assembly" /> contains types that were successfully unregistered; otherwise false if the assembly contains no eligible types. </returns> <param name="assembly"> The assembly to be unregistered. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assembly" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The full name of <paramref name="assembly" /> is null. -or- A method marked with <see cref="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute" /> is not static. -or- There is more than one method marked with <see cref="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute" /> at a given level of the hierarchy. -or- The signature of the method marked with <see cref="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute" /> is not valid. </exception> </member> <member name="T:System.Runtime.InteropServices.ITypeLibConverter"> <summary> Provides a set of services that convert a managed assembly to a COM type library and vice versa. </summary> </member> <member name="M:System.Runtime.InteropServices.ITypeLibConverter.ConvertAssemblyToTypeLib(System.Reflection.Assembly,System.String,System.Runtime.InteropServices.TypeLibExporterFlags,System.Runtime.InteropServices.ITypeLibExporterNotifySink)"> <summary> Converts an assembly to a COM type library. </summary> <returns> An object that implements the ITypeLib interface. </returns> <param name="assembly"> The assembly to convert. </param> <param name="typeLibName"> The file name of the resulting type library. </param> <param name="flags"> A <see cref="T:System.Runtime.InteropServices.TypeLibExporterFlags" /> value indicating any special settings. </param> <param name="notifySink"> The <see cref="T:System.Runtime.InteropServices.ITypeLibExporterNotifySink" /> interface implemented by the caller. </param> </member> <member name="M:System.Runtime.InteropServices.ITypeLibConverter.ConvertTypeLibToAssembly(System.Object,System.String,System.Int32,System.Runtime.InteropServices.ITypeLibImporterNotifySink,System.Byte[],System.Reflection.StrongNameKeyPair,System.Boolean)"> <summary> Converts a COM type library to an assembly. </summary> <returns> An <see cref="T:System.Reflection.Emit.AssemblyBuilder" /> object containing the converted type library. </returns> <param name="typeLib"> The object that implements the ITypeLib interface. </param> <param name="asmFileName"> The file name of the resulting assembly. </param> <param name="flags"> A <see cref="T:System.Runtime.InteropServices.TypeLibImporterFlags" /> value indicating any special settings. </param> <param name="notifySink"> <see cref="T:System.Runtime.InteropServices.ITypeLibImporterNotifySink" /> interface implemented by the caller. </param> <param name="publicKey"> A byte array containing the public key. </param> <param name="keyPair"> A <see cref="T:System.Reflection.StrongNameKeyPair" /> object containing the public and private cryptographic key pair. </param> <param name="unsafeInterfaces"> If true, the interfaces require link time checks for <see cref="F:System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode" /> permission. If false, the interfaces require run time checks that require a stack walk and are more expensive, but help provide greater protection. </param> </member> <member name="M:System.Runtime.InteropServices.ITypeLibConverter.ConvertTypeLibToAssembly(System.Object,System.String,System.Runtime.InteropServices.TypeLibImporterFlags,System.Runtime.InteropServices.ITypeLibImporterNotifySink,System.Byte[],System.Reflection.StrongNameKeyPair,System.String,System.Version)"> <summary> Converts a COM type library to an assembly. </summary> <returns> An <see cref="T:System.Reflection.Emit.AssemblyBuilder" /> object containing the converted type library. </returns> <param name="typeLib"> The object that implements the ITypeLib interface. </param> <param name="asmFileName"> The file name of the resulting assembly. </param> <param name="flags"> A <see cref="T:System.Runtime.InteropServices.TypeLibImporterFlags" /> value indicating any special settings. </param> <param name="notifySink"> <see cref="T:System.Runtime.InteropServices.ITypeLibImporterNotifySink" /> interface implemented by the caller. </param> <param name="publicKey"> A byte array containing the public key. </param> <param name="keyPair"> A <see cref="T:System.Reflection.StrongNameKeyPair" /> object containing the public and private cryptographic key pair. </param> <param name="asmNamespace"> The namespace for the resulting assembly. </param> <param name="asmVersion"> The version of the resulting assembly. If null, the version of the type library is used. </param> </member> <member name="M:System.Runtime.InteropServices.ITypeLibConverter.GetPrimaryInteropAssembly(System.Guid,System.Int32,System.Int32,System.Int32,System.String@,System.String@)"> <summary> Gets the name and code base of a primary interop assembly for a specified type library. </summary> <returns>true if the primary interop assembly was found in the registry; otherwise false. </returns> <param name="g"> The GUID of the type library. </param> <param name="major"> The major version number of the type library. </param> <param name="minor"> The minor version number of the type library. </param> <param name="lcid"> The LCID of the type library. </param> <param name="asmName"> On successful return, the name of the primary interop assembly associated with <paramref name="g" />. </param> <param name="asmCodeBase"> On successful return, the code base of the primary interop assembly associated with <paramref name="g" />. </param> </member> <member name="T:System.Runtime.InteropServices.ITypeLibExporterNameProvider"> <summary> Provides control over the casing of names when exported to a type library. </summary> </member> <member name="M:System.Runtime.InteropServices.ITypeLibExporterNameProvider.GetNames"> <summary> Returns a list of names to control the casing of. </summary> <returns> An array of strings, where each element contains the name of a type to control casing for. </returns> </member> <member name="T:System.Runtime.InteropServices.ITypeLibExporterNotifySink"> <summary> Provides a callback mechanism for the assembly converter to inform the caller of the status of the conversion, and involve the caller in the conversion process itself. </summary> </member> <member name="M:System.Runtime.InteropServices.ITypeLibExporterNotifySink.ReportEvent(System.Runtime.InteropServices.ExporterEventKind,System.Int32,System.String)"> <summary> Notifies the caller that an event occured during the conversion of an assembly. </summary> <param name="eventKind"> An <see cref="T:System.Runtime.InteropServices.ExporterEventKind" /> value indicating the type of event. </param> <param name="eventCode"> Indicates extra information about the event. </param> <param name="eventMsg"> A message generated by the event. </param> </member> <member name="M:System.Runtime.InteropServices.ITypeLibExporterNotifySink.ResolveRef(System.Reflection.Assembly)"> <summary> Asks the user to resolve a reference to another assembly. </summary> <returns> The type library for <paramref name="assembly" />. </returns> <param name="assembly"> The assembly to resolve. </param> </member> <member name="T:System.Runtime.InteropServices.ITypeLibImporterNotifySink"> <summary> Provides a callback mechanism for the type library converter to inform the caller of the status of the conversion, and involve the caller in the conversion process itself. </summary> </member> <member name="M:System.Runtime.InteropServices.ITypeLibImporterNotifySink.ReportEvent(System.Runtime.InteropServices.ImporterEventKind,System.Int32,System.String)"> <summary> Notifies the caller that an event occured during the conversion of a type library. </summary> <param name="eventKind"> An <see cref="T:System.Runtime.InteropServices.ImporterEventKind" /> value indicating the type of event. </param> <param name="eventCode"> Indicates extra information about the event. </param> <param name="eventMsg"> A message generated by the event. </param> </member> <member name="M:System.Runtime.InteropServices.ITypeLibImporterNotifySink.ResolveRef(System.Object)"> <summary> Asks the user to resolve a reference to another type library. </summary> <returns> The assembly corresponding to <paramref name="typeLib" />. </returns> <param name="typeLib"> The object implementing the ITypeLib interface that needs to be resolved. </param> </member> <member name="T:System.Runtime.InteropServices.LayoutKind"> <summary> Controls the layout of an object when exported to unmanaged code. </summary> </member> <member name="F:System.Runtime.InteropServices.LayoutKind.Sequential"> <summary> The members of the object are laid out sequentially, in the order in which they appear when exported to unmanaged memory. The members are laid out according to the packing specified in <see cref="F:System.Runtime.InteropServices.StructLayoutAttribute.Pack" />, and can be noncontiguous. </summary> </member> <member name="F:System.Runtime.InteropServices.LayoutKind.Explicit"> <summary> The precise position of each member of an object in unmanaged memory is explicitly controlled. Each member must use the <see cref="T:System.Runtime.InteropServices.FieldOffsetAttribute" /> to indicate the position of that field within the type. </summary> </member> <member name="F:System.Runtime.InteropServices.LayoutKind.Auto"> <summary> The runtime automatically chooses an appropriate layout for the members of an object in unmanaged memory. Objects defined with this enumeration member cannot be exposed outside of managed code. Attempting to do so generates an exception. </summary> </member> <member name="T:System.Runtime.InteropServices.LCIDConversionAttribute"> <summary> Indicates that a method's unmanaged signature expects a locale identifier (LCID) parameter. </summary> </member> <member name="M:System.Runtime.InteropServices.LCIDConversionAttribute.#ctor(System.Int32)"> <summary> Initializes a new instance of the LCIDConversionAttribute class with the position of the LCID in the unmanaged signature. </summary> <param name="lcid"> Indicates the position of the LCID argument in the unmanaged signature, where 0 is the first argument. </param> </member> <member name="P:System.Runtime.InteropServices.LCIDConversionAttribute.Value"> <summary> Gets the position of the LCID argument in the unmanaged signature. </summary> <returns> The position of the LCID argument in the unmanaged signature, where 0 is the first argument. </returns> </member> <member name="T:System.Runtime.InteropServices.LIBFLAGS"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.LIBFLAGS" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.LIBFLAGS.LIBFLAG_FRESTRICTED"> <summary> The type library is restricted, and should not be displayed to users. </summary> </member> <member name="F:System.Runtime.InteropServices.LIBFLAGS.LIBFLAG_FCONTROL"> <summary> The type library describes controls, and should not be displayed in type browsers intended for nonvisual objects. </summary> </member> <member name="F:System.Runtime.InteropServices.LIBFLAGS.LIBFLAG_FHIDDEN"> <summary> The type library should not be displayed to users, although its use is not restricted. Should be used by controls. Hosts should create a new type library that wraps the control with extended properties. </summary> </member> <member name="F:System.Runtime.InteropServices.LIBFLAGS.LIBFLAG_FHASDISKIMAGE"> <summary> The type library exists in a persisted form on disk. </summary> </member> <member name="T:System.Runtime.InteropServices.Marshal"> <summary> Provides a collection of methods for allocating unmanaged memory, copying unmanaged memory blocks, and converting managed to unmanaged types, as well as other miscellaneous methods used when interacting with unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices.Marshal.AddRef(System.IntPtr)"> <summary> Increments the reference count on the specified interface. </summary> <returns> The new value of the reference count on the <paramref name="pUnk" /> parameter. </returns> <param name="pUnk"> The interface reference count to increment. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.AllocCoTaskMem(System.Int32)"> <summary> Allocates a block of memory of specified size from the COM task memory allocator. </summary> <returns> An integer representing the address of the block of memory allocated. This memory must be released with <see cref="M:System.Runtime.InteropServices.Marshal.FreeCoTaskMem(System.IntPtr)" />. </returns> <param name="cb"> The size of the block of memory to be allocated. </param> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to satisfy the request. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.Int32)"> <summary> Allocates memory from the unmanaged memory of the process. </summary> <returns> An <see cref="T:System.IntPtr" /> to the newly allocated memory. This memory must be released using the <see cref="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)" /> method. </returns> <param name="cb"> The number of bytes in memory required. </param> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to satisfy the request. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.IntPtr)"> <summary> Allocates memory from the process's unmanaged memory. </summary> <returns> An <see cref="T:System.IntPtr" /> to the newly allocated memory. This memory must be released using the <see cref="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)" /> method. </returns> <param name="cb"> The number of bytes in memory required. </param> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to satisfy the request. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.BindToMoniker(System.String)"> <summary> Gets an interface pointer identified by the specified moniker. </summary> <returns> An object containing a reference to the interface pointer identified by the <paramref name="monikerName" /> parameter. A moniker is a name, and in this case, the moniker is defined by an interface. </returns> <param name="monikerName"> The moniker corresponding to the desired interface pointer. </param> <exception cref="T:System.Runtime.InteropServices.COMException"> An unrecognized HRESULT was returned by the unmanaged BindToMoniker method. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ChangeWrapperHandleStrength(System.Object,System.Boolean)"> <summary> Changes the strength of a COM callable wrapper's (CCW) handle on the object it contains. </summary> <param name="otp"> The object whose COM callable wrapper (CCW) holds a reference counted handle. The handle is strong if the reference count on the CCW is greater than zero; otherwise it is weak. </param> <param name="fIsWeak">true to change the strength of the handle on the <paramref name="otp" /> parameter to weak, regardless of its reference count; false to reset the handle strength on <paramref name="otp" /> to be reference counted. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Byte[],System.Int32,System.IntPtr,System.Int32)"> <summary> Copies data from a one-dimensional, managed 8-bit unsigned integer array to an unmanaged memory pointer. </summary> <param name="source"> The one-dimensional array to copy from. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="destination"> The memory pointer to copy to. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> and <paramref name="length" /> are not valid. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Char[],System.Int32,System.IntPtr,System.Int32)"> <summary> Copies data from a one-dimensional, managed character array to an unmanaged memory pointer. </summary> <param name="source"> The one-dimensional array to copy from. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="destination"> The memory pointer to copy to. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> and <paramref name="length" /> are not valid. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Double[],System.Int32,System.IntPtr,System.Int32)"> <summary> Copies data from a one-dimensional, managed double-precision floating-point number array to an unmanaged memory pointer. </summary> <param name="source"> The one-dimensional array to copy from. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="destination"> The memory pointer to copy to. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> and <paramref name="length" /> are not valid. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Int16[],System.Int32,System.IntPtr,System.Int32)"> <summary> Copies data from a one-dimensional, managed 16-bit signed integer array to an unmanaged memory pointer. </summary> <param name="source"> The one-dimensional array to copy from. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="destination"> The memory pointer to copy to. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> and <paramref name="length" /> are not valid. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Int32[],System.Int32,System.IntPtr,System.Int32)"> <summary> Copies data from a one-dimensional, managed 32-bit signed integer array to an unmanaged memory pointer. </summary> <param name="source"> The one-dimensional array to copy from. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="destination"> The memory pointer to copy to. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> and <paramref name="length" /> are not valid. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="startIndex" /> or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Int64[],System.Int32,System.IntPtr,System.Int32)"> <summary> Copies data from a one-dimensional, managed 64-bit signed integer array to an unmanaged memory pointer. </summary> <param name="source"> The one-dimensional array to copy from. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="destination"> The memory pointer to copy to. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> and <paramref name="length" /> are not valid. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Byte[],System.Int32,System.Int32)"> <summary> Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array. </summary> <param name="source"> The memory pointer to copy from. </param> <param name="destination"> The array to copy to. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Char[],System.Int32,System.Int32)"> <summary> Copies data from an unmanaged memory pointer to a managed character array. </summary> <param name="source"> The memory pointer to copy from. </param> <param name="destination"> The array to copy to. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Double[],System.Int32,System.Int32)"> <summary> Copies data from an unmanaged memory pointer to a managed double-precision floating-point number array. </summary> <param name="source"> The memory pointer to copy from. </param> <param name="destination"> The array to copy to. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Int16[],System.Int32,System.Int32)"> <summary> Copies data from an unmanaged memory pointer to a managed 16-bit signed integer array. </summary> <param name="source"> The memory pointer to copy from. </param> <param name="destination"> The array to copy to. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Int32[],System.Int32,System.Int32)"> <summary> Copies data from an unmanaged memory pointer to a managed 32-bit signed integer array. </summary> <param name="source"> The memory pointer to copy from. </param> <param name="destination"> The array to copy to. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Int64[],System.Int32,System.Int32)"> <summary> Copies data from an unmanaged memory pointer to a managed 64-bit signed integer array. </summary> <param name="source"> The memory pointer to copy from. </param> <param name="destination"> The array to copy to. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.IntPtr[],System.Int32,System.Int32)"> <summary> Copies data from an unmanaged memory pointer to a managed <see cref="T:System.IntPtr" /> array. </summary> <param name="source"> The memory pointer to copy from. </param> <param name="destination"> The array to copy to. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is null. </exception> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Single[],System.Int32,System.Int32)"> <summary> Copies data from an unmanaged memory pointer to a managed single-precision floating-point number array. </summary> <param name="source"> The memory pointer to copy from. </param> <param name="destination"> The array to copy to. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr[],System.Int32,System.IntPtr,System.Int32)"> <summary> Copies data from a one-dimensional, managed <see cref="T:System.IntPtr" /> array to an unmanaged memory pointer. </summary> <param name="source"> The one-dimensional array to copy from. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="destination"> The memory pointer to copy to. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is null. </exception> </member> <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Single[],System.Int32,System.IntPtr,System.Int32)"> <summary> Copies data from a one-dimensional, managed single-precision floating-point number array to an unmanaged memory pointer. </summary> <param name="source"> The one-dimensional array to copy from. </param> <param name="startIndex"> The zero-based index into the array where Copy should start. </param> <param name="destination"> The memory pointer to copy to. </param> <param name="length"> The number of array elements to copy. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> and <paramref name="length" /> are not valid. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="source" />, <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.CreateAggregatedObject(System.IntPtr,System.Object)"> <summary> Aggregates a managed object with the specified COM object. </summary> <returns> The inner IUnknown pointer of the managed object. </returns> <param name="pOuter"> The outer IUnknown pointer. </param> <param name="o"> An object to aggregate. </param> </member> <member name="M:System.Runtime.InteropServices.Marshal.CreateWrapperOfType(System.Object,System.Type)"> <summary> Wraps the specified COM object in an object of the specified type. </summary> <returns> The newly wrapped object that is an instance of the desired type. </returns> <param name="o"> The object to be wrapped. </param> <param name="t"> The <see cref="T:System.Type" /> of wrapper to create. </param> <exception cref="T:System.ArgumentException"> <paramref name="t" /> must derive from __ComObject. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="t" /> parameter is null. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="o" /> cannot be converted to the destination type since it does not support all required interfaces. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.DestroyStructure(System.IntPtr,System.Type)"> <summary> Frees all substructures pointed to by the specified unmanaged memory block. </summary> <param name="ptr"> A pointer to an unmanaged block of memory. </param> <param name="structuretype"> Type of a formatted class. This provides the layout information necessary to delete the buffer in the <paramref name="ptr" /> parameter. </param> <exception cref="T:System.ArgumentException"> <paramref name="structureType" /> has an automatic layout. Use sequential or explicit instead. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.FinalReleaseComObject(System.Object)"> <summary> Releases all references to a runtime callable wrapper (RCW) by setting the reference count of the supplied RCW to 0. </summary> <returns> The new value of the reference count of the RCW associated with the <paramref name="o" />parameter, which is zero if the release is successful. </returns> <param name="o"> The RCW to be released. </param> <exception cref="T:System.ArgumentException"> <paramref name="o" /> is not a valid COM object. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="o" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.FreeBSTR(System.IntPtr)"> <summary> Frees a BSTR using SysFreeString. </summary> <param name="ptr"> The address of the BSTR to be freed. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.FreeCoTaskMem(System.IntPtr)"> <summary> Frees a block of memory allocated by the unmanaged COM task memory allocator with <see cref="M:System.Runtime.InteropServices.Marshal.AllocCoTaskMem(System.Int32)" />. </summary> <param name="ptr"> The address of the memory to be freed. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)"> <summary> Frees memory previously allocated from the unmanaged memory of the process with <see cref="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.IntPtr)" />. </summary> <param name="hglobal"> The handle returned by the original matching call to <see cref="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.IntPtr)" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GenerateGuidForType(System.Type)"> <summary> Returns the globally unique identifier (GUID) for the specified type, or generates a GUID using the algorithm used by the Type Library Exporter (Tlbexp.exe). </summary> <returns> A <see cref="T:System.Guid" /> for the specified type. </returns> <param name="type"> The <see cref="T:System.Type" /> to generate a GUID for. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GenerateProgIdForType(System.Type)"> <summary> Returns a programmatic identifier (ProgID) for the specified type. </summary> <returns> The ProgID of the specified type. </returns> <param name="type"> The <see cref="T:System.Type" /> to get a ProgID for. </param> <exception cref="T:System.ArgumentException"> The <paramref name="type" /> parameter is not a class that can be create by COM. The class must be public, have a public default constructor, and be COM visible. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetActiveObject(System.String)"> <summary> Obtains a running instance of the specified object from the Running Object Table (ROT). </summary> <returns> The object requested. You can cast this object to any COM interface that it supports. </returns> <param name="progID"> The ProgID of the object being requested. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetComInterfaceForObject(System.Object,System.Type)"> <summary> Returns an interface pointer that represents the specified interface for an object. </summary> <returns> The interface pointer representing the interface for the object. </returns> <param name="o"> The object providing the interface. </param> <param name="T"> The <see cref="T:System.Type" /> of interface that is requested. </param> <exception cref="T:System.ArgumentException"> The <paramref name="T" /> parameter is not an interface. -or- The type is not visible to COM. -or- The <paramref name="T" /> parameter is a generic type. </exception> <exception cref="T:System.InvalidCastException"> The <paramref name="o" /> parameter does not support the requested interface. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="o" /> parameter is null -or- The <paramref name="T" /> parameter is null</exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetComInterfaceForObjectInContext(System.Object,System.Type)"> <summary> Returns an interface pointer that represents the specified interface for an object, if the caller is in the same context as that object. </summary> <returns> The interface pointer specified by <paramref name="t" /> that represents the interface for the specified object, or null if the caller is not in the same context as the object. </returns> <param name="o"> The object that provides the interface. </param> <param name="t"> The <see cref="T:System.Type" /> of interface that is requested. </param> <exception cref="T:System.ArgumentException"> <paramref name="t" /> is not an interface. -or- The type is not visible to COM. </exception> <exception cref="T:System.InvalidCastException"> <paramref name="o" /> does not support the requested interface. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="o" /> is null. -or- <paramref name="t" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetComObjectData(System.Object,System.Object)"> <summary> Gets data referenced by the specified key from the specified COM object. </summary> <returns> The data represented by the <paramref name="key" /> parameter in the internal hash table of the <paramref name="obj" /> parameter. </returns> <param name="obj"> The COM object containing the desired data. </param> <param name="key"> The key in the internal hash table of <paramref name="obj" /> to retrieve the data from. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="obj" /> is null. -or- <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="obj" /> is not a COM object. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetComSlotForMethodInfo(System.Reflection.MemberInfo)"> <summary> Gets the virtual function table (VTBL) slot for a specified <see cref="T:System.Reflection.MemberInfo" /> when exposed to COM. </summary> <returns> The VTBL (also called v-table) slot <paramref name="m" /> identifier when it is exposed to COM. </returns> <param name="m"> A <see cref="T:System.Reflection.MemberInfo" /> that represents an interface method. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="m" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="m" /> parameter is not a <see cref="T:System.Reflection.MethodInfo" /> object. -or- The <paramref name="m" /> parameter is not an interface method. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointer(System.IntPtr,System.Type)"> <summary> Converts an unmanaged function pointer to a delegate. </summary> <returns> A delegate instance that can be cast to the appropriate delegate type. </returns> <param name="ptr"> An <see cref="T:System.IntPtr" /> type that is the unmanaged function pointer to be converted. </param> <param name="t"> The type of the delegate to be returned. </param> <exception cref="T:System.ArgumentException"> The <paramref name="t" /> parameter is not a delegate or is generic. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="ptr" /> parameter is null. -or- The <paramref name="t" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetEndComSlot(System.Type)"> <summary> Gets the last slot in the virtual function table (VTBL) of a type when exposed to COM. </summary> <returns> The last VTBL (also called v-table) slot of the interface when exposed to COM. If the <paramref name="t" /> parameter is a class, the returned VTBL slot is the last slot in the interface that is generated from the class. </returns> <param name="t"> A <see cref="T:System.Type" /> representing an interface or class. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetExceptionCode"> <summary> Retrieves a code that identifies the type of the exception that occurred. </summary> <returns> The type of the exception. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetExceptionForHR(System.Int32)"> <summary> Converts the specified HRESULT error code to a corresponding <see cref="T:System.Exception" /> object. </summary> <returns> An <see cref="T:System.Exception" /> object representing the converted HRESULT. </returns> <param name="errorCode"> The HRESULT to be converted. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetExceptionForHR(System.Int32,System.IntPtr)"> <summary> Converts the specified HRESULT error code to a corresponding <see cref="T:System.Exception" /> object, with additional error information passed in an IErrorInfo interface for the exception object. </summary> <returns> An <see cref="T:System.Exception" /> object representing the converted HRESULT and information obtained from <paramref name="errorInfo" />. </returns> <param name="errorCode"> The HRESULT to be converted. </param> <param name="errorInfo"> A pointer to the IErrorInfo interface that provides more information about the error. You can specify IntPtr(0) to use the current IErrorInfo interface, or IntPtr(-1) to ignore the current IErrorInfo interface and construct the exception just from the error code. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetExceptionPointers"> <summary> Retrieves a computer-independent description of an exception, and information about the state that existed for the thread when the exception occurred. </summary> <returns> An <see cref="T:System.IntPtr" /> to an EXCEPTION_POINTERS structure. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(System.Delegate)"> <summary> Converts a delegate into a function pointer callable from unmanaged code. </summary> <returns> An <see cref="T:System.IntPtr" /> value that can be passed to unmanaged code, which in turn can use it to call the underlying managed delegate. </returns> <param name="d"> The delegate to be passed to unmanaged code. </param> <exception cref="T:System.ArgumentException"> The <paramref name="d" /> parameter is a generic type </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="d" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetHINSTANCE(System.Reflection.Module)"> <summary> Returns the instance handle (HINSTANCE) for the specified module. </summary> <returns> The HINSTANCE for <paramref name="m" />; -1 if the module does not have an HINSTANCE. </returns> <param name="m"> The <see cref="T:System.Reflection.Module" /> whose HINSTANCE is desired. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="m" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetHRForException(System.Exception)"> <summary> Converts the specified exception to an HRESULT. </summary> <returns> The HRESULT mapped to the supplied exception. </returns> <param name="e"> The <see cref="T:System.Exception" /> to convert to an HRESULT. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetHRForLastWin32Error"> <summary> Returns the HRESULT corresponding to the last error incurred by Win32 code executed using <see cref="T:System.Runtime.InteropServices.Marshal" />. </summary> <returns> The HRESULT corresponding to the last Win32 error code. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetIDispatchForObject(System.Object)"> <summary> Returns an IDispatch interface from a managed object. </summary> <returns> The IDispatch pointer for the <paramref name="o" /> parameter. </returns> <param name="o"> The object whose IDispatch interface is requested. </param> <exception cref="T:System.InvalidCastException"> <paramref name="o" /> does not support the requested interface. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetIDispatchForObjectInContext(System.Object)"> <summary> Returns an IDispatch interface pointer from a managed object, if the caller is in the same context as that object. </summary> <returns> The IDispatch interface pointer for the <paramref name="o" /> parameter, or null if the caller is not in the same context as the specified object. </returns> <param name="o"> The object whose IDispatch interface is requested. </param> <exception cref="T:System.InvalidCastException"> <paramref name="o" /> does not support the requested interface. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="o" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetITypeInfoForType(System.Type)"> <summary> Returns an ITypeInfo interface from a managed type. </summary> <returns> The ITypeInfo pointer for the <paramref name="t" /> parameter. </returns> <param name="t"> The <see cref="T:System.Type" /> whose ITypeInfo interface is being requested. </param> <exception cref="T:System.ArgumentException"> <paramref name="t" /> is not a visible type to COM. </exception> <exception cref="T:System.Runtime.InteropServices.COMException"> A type library is registered for the assembly that contains the type, but the type definition cannot be found. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetIUnknownForObject(System.Object)"> <summary> Returns an IUnknown interface from a managed object. </summary> <returns> The IUnknown pointer for the <paramref name="o" /> parameter. </returns> <param name="o"> The object whose IUnknown interface is requested. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetIUnknownForObjectInContext(System.Object)"> <summary> Returns an IUnknown interface from a managed object, if the caller is in the same context as that object. </summary> <returns> The IUnknown pointer for the <paramref name="o" /> parameter, or null if the caller is not in the same context as the specified object. </returns> <param name="o"> The object whose IUnknown interface is requested. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetLastWin32Error"> <summary> Returns the error code returned by the last unmanaged function called using platform invoke that has the <see cref="F:System.Runtime.InteropServices.DllImportAttribute.SetLastError" /> flag set. </summary> <returns> The last error code set by a call to the Win32 SetLastError API method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetManagedThunkForUnmanagedMethodPtr(System.IntPtr,System.IntPtr,System.Int32)"> <summary> Gets a pointer to a thunk that marshals a call from managed to unmanaged code. </summary> <returns> A pointer to the thunk that will marshal a call from the <paramref name="pfnMethodToWrap" /> parameter. </returns> <param name="pfnMethodToWrap"> A pointer to the method to marshal. </param> <param name="pbSignature"> A pointer to the method signature. </param> <param name="cbSignature"> The number of bytes in <paramref name="pbSignature" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetMethodInfoForComSlot(System.Type,System.Int32,System.Runtime.InteropServices.ComMemberType@)"> <summary> Retrieves <see cref="T:System.Reflection.MethodInfo" /> for the specified virtual function table (VTBL) slot. </summary> <returns> The MemberInfo that represents the member at the specified VTBL (also called v-table) slot. </returns> <param name="t"> The type for which the MethodInfo is to be retrieved. </param> <param name="slot"> The VTBL slot. </param> <param name="memberType"> On successful return, the type of the member. This is one of the <see cref="T:System.Runtime.InteropServices.ComMemberType" /> enumeration members. </param> <exception cref="T:System.ArgumentException"> <paramref name="t" /> is not visible from COM. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetNativeVariantForObject(System.Object,System.IntPtr)"> <summary> Converts an object to a COM VARIANT. </summary> <param name="obj"> The object for which to get a COM VARIANT. </param> <param name="pDstNativeVariant"> An <see cref="T:System.IntPtr" /> to receive the VARIANT corresponding to the <paramref name="obj" /> parameter. </param> <exception cref="T:System.ArgumentException"> The <paramref name="obj" /> parameter is a generic type. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetObjectForIUnknown(System.IntPtr)"> <summary> Returns an instance of a type that represents a COM object by a pointer to its IUnknown interface. </summary> <returns> An object representing the specified unmanaged COM object. </returns> <param name="pUnk"> A pointer to the IUnknown interface. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetObjectForNativeVariant(System.IntPtr)"> <summary> Converts a COM VARIANT to an object. </summary> <returns> An object corresponding to the <paramref name="pSrcNativeVariant" /> parameter. </returns> <param name="pSrcNativeVariant"> An <see cref="T:System.IntPtr" /> containing a COM VARIANT. </param> <exception cref="T:System.Runtime.InteropServices.InvalidOleVariantTypeException"> <paramref name="pSrcNativeVariant" /> is not a valid VARIANT type. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="pSrcNativeVariant" /> has an unsupported type. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetObjectsForNativeVariants(System.IntPtr,System.Int32)"> <summary> Converts an array of COM VARIANTs to an array of objects. </summary> <returns> An object array corresponding to <paramref name="aSrcNativeVariant" />. </returns> <param name="aSrcNativeVariant"> An <see cref="T:System.IntPtr" /> containing the first element of an array of COM VARIANTs. </param> <param name="cVars"> The count of COM VARIANTs in <paramref name="aSrcNativeVariant" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="cVars" /> cannot be a negative number. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetStartComSlot(System.Type)"> <summary> Gets the first slot in the virtual function table (VTBL) that contains user defined methods. </summary> <returns> The first VTBL (also called v-table) slot that contains user defined methods. The first slot is 3 if the interface is IUnknown based, and 7 if the interface is IDispatch based. </returns> <param name="t"> A <see cref="T:System.Type" /> representing an interface. </param> <exception cref="T:System.ArgumentException"> <paramref name="t" /> is not visible from COM. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetThreadFromFiberCookie(System.Int32)"> <summary> Converts a fiber cookie into the corresponding <see cref="T:System.Threading.Thread" /> instance. </summary> <returns> A <see cref="T:System.Threading.Thread" /> corresponding to the <paramref name="cookie" /> parameter. </returns> <param name="cookie"> An integer representing a fiber cookie. </param> <exception cref="T:System.ArgumentException"> The <paramref name="cookie" /> parameter is 0. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypedObjectForIUnknown(System.IntPtr,System.Type)"> <summary> Returns a managed object of a specified type that represents a COM object. </summary> <returns> An instance of the class corresponding to the <see cref="T:System.Type" /> object that represents the requested unmanaged COM object. </returns> <param name="pUnk"> A pointer to the IUnknown interface of the unmanaged object. </param> <param name="t"> The <see cref="T:System.Type" /> of the requested managed class. </param> <exception cref="T:System.ArgumentException"> <paramref name="t" /> is not attributed with <see cref="T:System.Runtime.InteropServices.ComImportAttribute" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeForITypeInfo(System.IntPtr)"> <summary> Converts an ITypeInfo into a managed <see cref="T:System.Type" /> object. </summary> <returns> A managed <see cref="T:System.Type" /> that represents the unmanaged ITypeInfo. </returns> <param name="piTypeInfo"> The ITypeInfo interface to marshal. </param> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeInfoName(System.Runtime.InteropServices.ComTypes.ITypeInfo)"> <summary> Retrieves the name of the type represented by an ITypeInfo. </summary> <returns> The name of the type pointed to by the <paramref name="typeInfo" /> parameter. </returns> <param name="typeInfo"> A <see cref="T:System.Runtime.InteropServices.ComTypes.ITypeInfo" /> object that represents an ITypeInfo pointer. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="typeInfo" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeInfoName(System.Runtime.InteropServices.UCOMITypeInfo)"> <summary> Retrieves the name of the type represented by an ITypeInfo. </summary> <returns> The name of the type pointed to by the <paramref name="pTI" /> parameter. </returns> <param name="pTI"> A <see cref="T:System.Runtime.InteropServices.UCOMITypeInfo" /> that represents an ITypeInfo pointer. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeLibGuid(System.Runtime.InteropServices.ComTypes.ITypeLib)"> <summary> Retrieves the library identifier (LIBID) of a type library. </summary> <returns> The LIBID (that is, the <see cref="T:System.Guid" />) of the type library pointed to by the <paramref name="typelib" /> parameter. </returns> <param name="typelib"> An <see cref="T:System.Runtime.InteropServices.ComTypes.ITypeLib" /> object that represents an ITypeLib pointer. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeLibGuid(System.Runtime.InteropServices.UCOMITypeLib)"> <summary> Retrieves the library identifier (LIBID) of a type library. </summary> <returns> The LIBID (that is, the <see cref="T:System.Guid" />) of the type library pointed to by the <paramref name="pTLB" /> parameter. </returns> <param name="pTLB"> A <see cref="T:System.Runtime.InteropServices.UCOMITypeLib" /> that represents an ITypeLib pointer. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeLibGuidForAssembly(System.Reflection.Assembly)"> <summary> Retrieves the library identifier (LIBID) that is assigned to a type library when it was exported from the specified assembly. </summary> <returns> The LIBID (that is, the <see cref="T:System.Guid" />) that is assigned to a type library when it is exported from the <paramref name="asm" /> parameter. </returns> <param name="asm"> A managed <see cref="T:System.Reflection.Assembly" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeLibLcid(System.Runtime.InteropServices.ComTypes.ITypeLib)"> <summary> Retrieves the LCID of a type library. </summary> <returns> The LCID of the type library pointed to by the <paramref name="typelib" /> parameter. </returns> <param name="typelib"> A <see cref="T:System.Runtime.InteropServices.ComTypes.ITypeLib" /> object that represents an ITypeLib pointer. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeLibLcid(System.Runtime.InteropServices.UCOMITypeLib)"> <summary> Retrieves the LCID of a type library. </summary> <returns> The LCID of the type library pointed to by the <paramref name="pTLB" /> parameter. </returns> <param name="pTLB"> A <see cref="T:System.Runtime.InteropServices.UCOMITypeLib" /> that represents an ITypeLib pointer. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeLibName(System.Runtime.InteropServices.ComTypes.ITypeLib)"> <summary> Retrieves the name of a type library. </summary> <returns> The name of the type library pointed to by the <paramref name="typelib" /> parameter. </returns> <param name="typelib"> An <see cref="T:System.Runtime.InteropServices.ComTypes.ITypeLib" /> object that represents an ITypeLib pointer. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="typelib" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeLibName(System.Runtime.InteropServices.UCOMITypeLib)"> <summary> Retrieves the name of a type library. </summary> <returns> The name of the type library pointed to by the <paramref name="pTLB" /> parameter. </returns> <param name="pTLB"> A <see cref="T:System.Runtime.InteropServices.UCOMITypeLib" /> that represents an ITypeLib pointer. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetTypeLibVersionForAssembly(System.Reflection.Assembly,System.Int32@,System.Int32@)"> <summary> Retrieves the version number of a type library that will be exported from the specified assembly. </summary> <param name="inputAssembly"> A managed <see cref="T:System.Reflection.Assembly" /> object. </param> <param name="majorVersion"> The major version number. </param> <param name="minorVersion"> The minor version number. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetUniqueObjectForIUnknown(System.IntPtr)"> <summary> Creates a unique runtime callable wrapper (RCW) object for a given IUnknown. </summary> <returns> A unique runtime callable wrapper (RCW) for a given IUnknown. </returns> <param name="unknown"> A managed pointer to an IUnknown. </param> </member> <member name="M:System.Runtime.InteropServices.Marshal.GetUnmanagedThunkForManagedMethodPtr(System.IntPtr,System.IntPtr,System.Int32)"> <summary> Gets a pointer to a thunk that marshals a call from unmanaged to managed code. </summary> <returns> A pointer to the thunk that will marshal a call from <paramref name="pfnMethodToWrap" />. </returns> <param name="pfnMethodToWrap"> A pointer to the method to marshal. </param> <param name="pbSignature"> A pointer to the method signature. </param> <param name="cbSignature"> The number of bytes in <paramref name="pbSignature" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.IsComObject(System.Object)"> <summary> Indicates whether a specified object represents a COM object. </summary> <returns>true if the <paramref name="o" /> parameter is a COM type; otherwise, false. </returns> <param name="o"> The object to check. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.IsTypeVisibleFromCom(System.Type)"> <summary> Indicates whether a type is visible to COM clients. </summary> <returns>true if the type is visible to COM; otherwise, false. </returns> <param name="t"> The <see cref="T:System.Type" /> to check for COM visibility. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.NumParamBytes(System.Reflection.MethodInfo)"> <summary> Calculates the number of bytes in unmanaged memory that are required to hold the parameters for the specified method. </summary> <returns> The number of bytes required to represent the method parameters in unmanaged memory. </returns> <param name="m"> A <see cref="T:System.Reflection.MethodInfo" /> that identifies the method to be checked. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="m" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="m" /> parameter is not a <see cref="T:System.Reflection.MethodInfo" /> object. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.OffsetOf(System.Type,System.String)"> <summary> Returns the field offset of the unmanaged form of the managed class. </summary> <returns> The offset, in bytes, for the <paramref name="fieldName" /> parameter within the platform invoke declared class <paramref name="t" />. </returns> <param name="t"> A <see cref="T:System.Type" />, specifying the specified class. You must apply the <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> to the class. </param> <param name="fieldName"> The field within the <paramref name="t" /> parameter. </param> <exception cref="T:System.ArgumentException"> The class cannot be exported as a structure or the field is nonpublic. Beginning with the .NET Framework version 2.0, the field may be private. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="t" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Prelink(System.Reflection.MethodInfo)"> <summary> Executes one-time method setup tasks without calling the method. </summary> <param name="m"> A <see cref="T:System.Reflection.MethodInfo" /> that identifies the method to be checked. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="m" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="m" /> parameter is not a <see cref="T:System.Reflection.MethodInfo" /> object. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.PrelinkAll(System.Type)"> <summary> Performs a pre-link check for all methods on a class. </summary> <param name="c"> A <see cref="T:System.Type" /> that identifies the class whose methods are to be checked. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="c" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringAnsi(System.IntPtr)"> <summary> Copies all characters up to the first null from an unmanaged ANSI string to a managed <see cref="T:System.String" />. Widens each ANSI character to Unicode. </summary> <returns> A managed <see cref="T:System.String" /> object that holds a copy of the unmanaged ANSI string. If <paramref name="ptr" /> is null, the method returns a null string. </returns> <param name="ptr"> The address of the first character of the unmanaged string. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringAnsi(System.IntPtr,System.Int32)"> <summary> Allocates a managed <see cref="T:System.String" />, copies a specified number of characters from an unmanaged ANSI string into it, and widens each ANSI character to Unicode. </summary> <returns> A managed <see cref="T:System.String" /> that holds a copy of the native ANSI string if the value of the <paramref name="ptr" /> parameter is not null; otherwise, this method returns null. </returns> <param name="ptr"> The address of the first character of the unmanaged string. </param> <param name="len"> The byte count of the input string to copy. </param> <exception cref="T:System.ArgumentException"> <paramref name="len" /> is less than zero. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringAuto(System.IntPtr)"> <summary> Allocates a managed <see cref="T:System.String" /> and copies all characters up to the first null character from a string stored in unmanaged memory into it. </summary> <returns> A managed string that holds a copy of the unmanaged string if the value of the <paramref name="ptr" /> parameter is not null; otherwise, this method returns null. </returns> <param name="ptr"> For Unicode platforms, the address of the first Unicode character. -or- For ANSI plaforms, the address of the first ANSI character. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringAuto(System.IntPtr,System.Int32)"> <summary> Copies a specified number of characters from a string stored in unmanaged memory to a managed <see cref="T:System.String" />. </summary> <returns> A managed string that holds a copy of the native string if the value of the <paramref name="ptr" /> parameter is not null; otherwise, this method returns null. </returns> <param name="ptr"> For Unicode platforms, the address of the first Unicode character. -or- For ANSI plaforms, the address of the first ANSI character. </param> <param name="len"> The number of characters to copy. </param> <exception cref="T:System.ArgumentException"> <paramref name="len" /> is less than zero. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringBSTR(System.IntPtr)"> <summary> Allocates a managed <see cref="T:System.String" /> and copies a BSTR string stored in unmanaged memory into it. </summary> <returns> A managed string that holds a copy of the native string if the value of the <paramref name="ptr" /> parameter is not null; otherwise, this method returns null. </returns> <param name="ptr"> The address of the first character of the unmanaged string. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringUni(System.IntPtr)"> <summary> Allocates a managed <see cref="T:System.String" /> and copies all characters up to the first null character from an unmanaged Unicode string into it. </summary> <returns> A managed string holding a copy of the native string if the value of the <paramref name="ptr" /> parameter is not null; otherwise, this method returns null. </returns> <param name="ptr"> The address of the first character of the unmanaged string. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringUni(System.IntPtr,System.Int32)"> <summary> Copies a specified number of characters from a Unicode string stored in native heap to a managed <see cref="T:System.String" />. </summary> <returns> A managed string that holds a copy of the native string if the value of the <paramref name="ptr" /> parameter is not null; otherwise, this method returns null. </returns> <param name="ptr"> The address of the first character of the unmanaged string. </param> <param name="len"> The number of Unicode characters to copy. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.PtrToStructure(System.IntPtr,System.Object)"> <summary> Marshals data from an unmanaged block of memory to a managed object. </summary> <param name="ptr"> A pointer to an unmanaged block of memory. </param> <param name="structure"> The object to which the data is to be copied. This must be an instance of a formatted class. </param> <exception cref="T:System.ArgumentException"> Structure layout is not sequential or explicit. -or- Structure is a boxed value type. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.PtrToStructure(System.IntPtr,System.Type)"> <summary> Marshals data from an unmanaged block of memory to a newly allocated managed object of the specified type. </summary> <returns> A managed object containing the data pointed to by the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> A pointer to an unmanaged block of memory. </param> <param name="structureType"> The <see cref="T:System.Type" /> of object to be created. This type object must represent a formatted class or a structure. </param> <exception cref="T:System.ArgumentException"> The <paramref name="structureType" /> parameter layout is not sequential or explicit. -or- The <paramref name="structureType" /> parameter is a generic type. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="structureType" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.QueryInterface(System.IntPtr,System.Guid@,System.IntPtr@)"> <summary> Requests a pointer to a specified interface from a COM object. </summary> <returns> An HRESULT that indicates the success or failure of the call. </returns> <param name="pUnk"> The interface to be queried. </param> <param name="iid"> A <see cref="T:System.Guid" />, passed by reference, that is the interface identifier (IID) of the requested interface. </param> <param name="ppv"> When this method returns, contains a reference to the returned interface. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadByte(System.IntPtr)"> <summary> Reads a single byte from an unmanaged pointer. </summary> <returns> The byte read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The address in unmanaged memory from which to read. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadByte(System.IntPtr,System.Int32)"> <summary> Reads a single byte at a given offset (or index) from an unmanaged pointer. </summary> <returns> The byte read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The base address in unmanaged memory from which to read. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before reading. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadByte(System.Object,System.Int32)"> <summary> Reads a single byte from an unmanaged pointer. </summary> <returns> The byte read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The base address in unmanaged memory of the source object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before reading. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadInt16(System.IntPtr)"> <summary> Reads a 16-bit signed integer from the unmanaged memory. </summary> <returns> The 16-bit signed integer read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The address in unmanaged memory from which to read. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadInt16(System.IntPtr,System.Int32)"> <summary> Reads a 16-bit signed integer from unmanaged memory. </summary> <returns> The 16-bit signed integer read from <paramref name="ptr" />. </returns> <param name="ptr"> The base address in unmanaged memory from which to read. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before reading. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadInt16(System.Object,System.Int32)"> <summary> Reads a 16-bit signed integer from unmanaged memory. </summary> <returns> The 16-bit signed integer read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The base address in unmanaged memory of the source object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before reading. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadInt32(System.IntPtr)"> <summary> Reads a 32-bit signed integer from unmanaged memory. </summary> <returns> The 32-bit signed integer read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The address in unmanaged from which to read. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadInt32(System.IntPtr,System.Int32)"> <summary> Reads a 32-bit signed integer from unmanaged memory. </summary> <returns> The 32-bit signed integer read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The base address in unmanaged memory from which to read. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before reading. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadInt32(System.Object,System.Int32)"> <summary> Reads a 32-bit signed integer from unmanaged memory. </summary> <returns> The 32-bit signed integer read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The base address in unmanaged memory of the source object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before reading. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadInt64(System.IntPtr)"> <summary> Reads a 64-bit signed integer from unmanaged memory. </summary> <returns> The 64-bit signed integer read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The address in unmanaged memory from which to read. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadInt64(System.IntPtr,System.Int32)"> <summary> Reads a 64-bit signed integer from unmanaged memory. </summary> <returns> The 64-bit signed integer read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The base address in unmanaged memory from which to read. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before reading. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadInt64(System.Object,System.Int32)"> <summary> Reads a 64-bit signed integer from unmanaged memory. </summary> <returns> The 64-bit signed integer read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The base address in unmanaged memory of the source object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before reading. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadIntPtr(System.IntPtr)"> <summary> Reads a processor native sized integer from unmanaged memory. </summary> <returns> The IntPtr read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The address in unmanaged memory from which to read. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadIntPtr(System.IntPtr,System.Int32)"> <summary> Reads a processor native sized integer from unmanaged memory. </summary> <returns> The IntPtr read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The base address in unmanaged memory from which to read. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before reading. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReadIntPtr(System.Object,System.Int32)"> <summary> Reads a processor native sized integer from unmanaged memory. </summary> <returns> The IntPtr read from the <paramref name="ptr" /> parameter. </returns> <param name="ptr"> The base address in unmanaged memory of the source object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before reading. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReAllocCoTaskMem(System.IntPtr,System.Int32)"> <summary> Resizes a block of memory previously allocated with <see cref="M:System.Runtime.InteropServices.Marshal.AllocCoTaskMem(System.Int32)" />. </summary> <returns> An integer representing the address of the block of memory reallocated. This memory must be released with <see cref="M:System.Runtime.InteropServices.Marshal.FreeCoTaskMem(System.IntPtr)" />. </returns> <param name="pv"> A pointer to memory allocated with <see cref="M:System.Runtime.InteropServices.Marshal.AllocCoTaskMem(System.Int32)" />. </param> <param name="cb"> The new size of the allocated block. </param> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to satisfy the request. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReAllocHGlobal(System.IntPtr,System.IntPtr)"> <summary> Resizes a block of memory previously allocated with <see cref="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.IntPtr)" />. </summary> <returns> An <see cref="T:System.IntPtr" /> to the reallocated memory. This memory must be released using <see cref="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)" />. </returns> <param name="pv"> A pointer to memory allocated with <see cref="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.IntPtr)" />. </param> <param name="cb"> The new size of the allocated block. </param> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory to satisfy the request. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.Release(System.IntPtr)"> <summary> Decrements the reference count on the specified interface. </summary> <returns> The new value of the reference count on the interface specified by the <paramref name="pUnk" /> parameter. </returns> <param name="pUnk"> The interface to release. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReleaseComObject(System.Object)"> <summary> Decrements the reference count of the supplied runtime callable wrapper. </summary> <returns> The new value of the reference count of the runtime callable wrapper associated with <paramref name="o" />. This value is typically zero since the runtime callable wrapper keeps just one reference to the wrapped COM object regardless of the number of managed clients calling it. </returns> <param name="o"> The COM object to release. </param> <exception cref="T:System.ArgumentException"> <paramref name="o" /> is not a valid COM object. -or- <paramref name="o" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ReleaseThreadCache"> <summary> Releases the thread cache. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.SecureStringToBSTR(System.Security.SecureString)"> <summary> Allocates a BSTR and copies the contents of a managed <see cref="T:System.Security.SecureString" /> object into it. </summary> <returns> The address, in unmanaged memory, where the <paramref name="s" /> parameter was copied to, or 0 if a null <see cref="T:System.Security.SecureString" /> object was supplied. </returns> <param name="s"> The managed <see cref="T:System.Security.SecureString" /> object to be copied. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> <exception cref="T:System.NotSupportedException"> The current computer is not running Microsoft Windows 2000 Service Pack 3 or later. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.SecureStringToCoTaskMemAnsi(System.Security.SecureString)"> <summary> Copies the contents of a managed <see cref="T:System.Security.SecureString" /> object to a block of memory allocated from the unmanaged COM task allocator. </summary> <returns> The address, in unmanaged memory, where the <paramref name="s" /> parameter was copied to, or 0 if a null <see cref="T:System.Security.SecureString" /> object was supplied. </returns> <param name="s"> The managed <see cref="T:System.Security.SecureString" /> object to copy. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> <exception cref="T:System.NotSupportedException"> The current computer is not running Microsoft Windows 2000 Service Pack 3 or later. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.SecureStringToCoTaskMemUnicode(System.Security.SecureString)"> <summary> Copies the contents of a managed <see cref="T:System.Security.SecureString" /> object to a block of memory allocated from the unmanaged COM task allocator. </summary> <returns> The address, in unmanaged memory, where the <paramref name="s" /> parameter was copied to, or 0 if a null <see cref="T:System.Security.SecureString" /> object was supplied. </returns> <param name="s"> The managed <see cref="T:System.Security.SecureString" /> object to copy. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> <exception cref="T:System.NotSupportedException"> The current computer is not running Microsoft Windows 2000 Service Pack 3 or later. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> </member> <member name="M:System.Runtime.InteropServices.Marshal.SecureStringToGlobalAllocAnsi(System.Security.SecureString)"> <summary> Copies the contents of a managed <see cref="T:System.Security.SecureString" /> into unmanaged memory, converting into ANSI format as it copies. </summary> <returns> The address, in unmanaged memory, to where the <paramref name="s" /> parameter was copied, or 0 if a null <see cref="T:System.Security.SecureString" /> was supplied. </returns> <param name="s"> The managed <see cref="T:System.Security.SecureString" /> to be copied. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> <exception cref="T:System.NotSupportedException"> The current computer is not running Microsoft Windows 2000 Service Pack 3 or later. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.SecureStringToGlobalAllocUnicode(System.Security.SecureString)"> <summary> Copies the contents of a managed <see cref="T:System.Security.SecureString" /> into unmanaged memory. </summary> <returns> The address, in unmanaged memory, to where the <paramref name="s" /> parameter was copied, or 0 if a null <see cref="T:System.Security.SecureString" /> was supplied. </returns> <param name="s"> The managed <see cref="T:System.Security.SecureString" /> to be copied. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="s" /> parameter is null. </exception> <exception cref="T:System.NotSupportedException"> The current computer is not running Microsoft Windows 2000 Service Pack 3 or later. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> </member> <member name="M:System.Runtime.InteropServices.Marshal.SetComObjectData(System.Object,System.Object,System.Object)"> <summary> Sets data referenced by the specified key in the specified COM object. </summary> <returns>true if the data was set successfully; otherwise, false. </returns> <param name="obj"> The COM object in which to store the data. </param> <param name="key"> The key in the internal hash table of the COM object in which to store the data. </param> <param name="data"> The data to set. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="obj" /> is null. -or- <paramref name="key" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="obj" /> is not a COM object. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.SizeOf(System.Object)"> <summary> Returns the unmanaged size of an object in bytes. </summary> <returns> The size of the <paramref name="structure" /> parameter in unmanaged code. </returns> <param name="structure"> The object whose size is to be returned. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="structure" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.SizeOf(System.Type)"> <summary> Returns the size of an unmanaged type in bytes. </summary> <returns> The size of the <paramref name="structure" /> parameter in unmanaged code. </returns> <param name="t"> The <see cref="T:System.Type" /> whose size is to be returned. </param> <exception cref="T:System.ArgumentException"> The <paramref name="t" /> parameter is a generic type. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="t" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.StringToBSTR(System.String)"> <summary> Allocates a BSTR and copies the contents of a managed <see cref="T:System.String" /> into it. </summary> <returns> An unmanaged pointer to the BSTR, or 0 if a null string was supplied. </returns> <param name="s"> The managed string to be copied. </param> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The length for <paramref name="s" /> is out of range. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.StringToCoTaskMemAnsi(System.String)"> <summary> Copies the contents of a managed <see cref="T:System.String" /> to a block of memory allocated from the unmanaged COM task allocator. </summary> <returns> An integer representing a pointer to the block of memory allocated for the string, or 0 if a null string was supplied. </returns> <param name="s"> A managed string to be copied. </param> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="s" /> parameter exceeds the maximum length allowed by the operating system. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.StringToCoTaskMemAuto(System.String)"> <summary> Copies the contents of a managed <see cref="T:System.String" /> to a block of memory allocated from the unmanaged COM task allocator. </summary> <returns> The allocated memory block, or 0 if a null string was supplied. </returns> <param name="s"> A managed string to be copied. </param> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The length for <paramref name="s" /> is out of range. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.StringToCoTaskMemUni(System.String)"> <summary> Copies the contents of a managed <see cref="T:System.String" /> to a block of memory allocated from the unmanaged COM task allocator. </summary> <returns> An integer representing a pointer to the block of memory allocated for the string, or 0 if a null string was supplied. </returns> <param name="s"> A managed string to be copied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="s" /> parameter exceeds the maximum length allowed by the operating system. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.StringToHGlobalAnsi(System.String)"> <summary> Copies the contents of a managed <see cref="T:System.String" /> into unmanaged memory, converting into ANSI format as it copies. </summary> <returns> The address, in unmanaged memory, to where <paramref name="s" /> was copied, or 0 if a null string was supplied. </returns> <param name="s"> A managed string to be copied. </param> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="s" /> parameter exceeds the maximum length allowed by the operating system. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.StringToHGlobalAuto(System.String)"> <summary> Copies the contents of a managed <see cref="T:System.String" /> into unmanaged memory, converting into ANSI format if required. </summary> <returns> The address, in unmanaged memory, to where the string was copied, or 0 if a null string was supplied. </returns> <param name="s"> A managed string to be copied. </param> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.StringToHGlobalUni(System.String)"> <summary> Copies the contents of a managed <see cref="T:System.String" /> into unmanaged memory. </summary> <returns> The address, in unmanaged memory, to where the <paramref name="s" /> was copied, or 0 if a null string was supplied. </returns> <param name="s"> A managed string to be copied. </param> <exception cref="T:System.OutOfMemoryException"> The method could not allocate enough native heap memory. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="s" /> parameter exceeds the maximum length allowed by the operating system. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.StructureToPtr(System.Object,System.IntPtr,System.Boolean)"> <summary> Marshals data from a managed object to an unmanaged block of memory. </summary> <param name="structure"> A managed object holding the data to be marshaled. This object must be an instance of a formatted class. </param> <param name="ptr"> A pointer to an unmanaged block of memory, which must be allocated before this method is called. </param> <param name="fDeleteOld">true to have the <see cref="M:System.Runtime.InteropServices.Marshal.DestroyStructure(System.IntPtr,System.Type)" /> method called on the <paramref name="ptr" /> parameter before this method executes. Note that passing false can lead to a memory leak. </param> <exception cref="T:System.ArgumentException"> The <paramref name="structure" /> parameter is a generic type. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="F:System.Runtime.InteropServices.Marshal.SystemDefaultCharSize"> <summary> Represents the default character size on the system; the default is 2 for Unicode systems and 1 for ANSI systems. This field is read-only. </summary> </member> <member name="F:System.Runtime.InteropServices.Marshal.SystemMaxDBCSCharSize"> <summary> Represents the maximum size of a double byte character set (DBCS) size, in bytes, for the current operating system. This field is read-only. </summary> </member> <member name="M:System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(System.Int32)"> <summary> Throws an exception with a specific failure HRESULT value. </summary> <param name="errorCode"> The HRESULT corresponding to the desired exception. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(System.Int32,System.IntPtr)"> <summary> Throws an exception with a specific failure HRESULT. </summary> <param name="errorCode"> The HRESULT corresponding to the desired exception. </param> <param name="errorInfo"> A pointer to the IErrorInfo interface provided by the COM object. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.UnsafeAddrOfPinnedArrayElement(System.Array,System.Int32)"> <summary> Gets the address of the element at the specified index inside the specified array. </summary> <returns> The address of <paramref name="index" /> inside <paramref name="arr" />. </returns> <param name="arr"> The <see cref="T:System.Array" /> containing the desired element. </param> <param name="index"> The index in the <paramref name="arr" /> parameter of the desired element. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteByte(System.IntPtr,System.Byte)"> <summary> Writes a single byte value to unmanaged memory. </summary> <param name="ptr"> The address in unmanaged to write. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteByte(System.IntPtr,System.Int32,System.Byte)"> <summary> Writes a single byte value to unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory to write. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteByte(System.Object,System.Int32,System.Byte)"> <summary> Writes a single byte value to unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory of the target object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.IntPtr,System.Char)"> <summary> Writes a 16-bit signed integer value to unmanaged memory. </summary> <param name="ptr"> The address in unmanaged memory to write. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.IntPtr,System.Int16)"> <summary> Writes a 16-bit integer value to unmanaged memory. </summary> <param name="ptr"> The address in unmanaged memory to write. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.IntPtr,System.Int32,System.Char)"> <summary> Writes a 16-bit signed integer value to unmanaged memory. </summary> <param name="ptr"> The base address in the native heap to write. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.IntPtr,System.Int32,System.Int16)"> <summary> Writes a 16-bit signed integer value into unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory to write. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.Object,System.Int32,System.Char)"> <summary> Writes a 16-bit signed integer value to unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory of the target object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.Object,System.Int32,System.Int16)"> <summary> Writes a 16-bit signed integer value to unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory of the target object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt32(System.IntPtr,System.Int32)"> <summary> Writes a 32-bit signed integer value to unmanaged memory. </summary> <param name="ptr"> The address in unmanaged memory to write. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt32(System.IntPtr,System.Int32,System.Int32)"> <summary> Writes a 32-bit signed integer value into unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory to write. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt32(System.Object,System.Int32,System.Int32)"> <summary> Writes a 32-bit signed integer value to unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory of the target object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt64(System.IntPtr,System.Int32,System.Int64)"> <summary> Writes a 64-bit signed integer value to unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory to write. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt64(System.IntPtr,System.Int64)"> <summary> Writes a 64-bit signed integer value to unmanaged memory. </summary> <param name="ptr"> The address in unmanaged memory to write. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteInt64(System.Object,System.Int32,System.Int64)"> <summary> Writes a 64-bit signed integer value to unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory of the target object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteIntPtr(System.IntPtr,System.Int32,System.IntPtr)"> <summary> Writes a processor native sized integer value to unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory to write. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteIntPtr(System.IntPtr,System.IntPtr)"> <summary> Writes a processor native sized integer value into unmanaged memory. </summary> <param name="ptr"> The address in unmanaged memory to write. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> <paramref name="ptr" /> is not a recognized format. -or- <paramref name="ptr" /> is null. -or- <paramref name="ptr" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.WriteIntPtr(System.Object,System.Int32,System.IntPtr)"> <summary> Writes a processor native sized integer value to unmanaged memory. </summary> <param name="ptr"> The base address in unmanaged memory of the target object. </param> <param name="ofs"> An additional byte offset, added to the <paramref name="ptr" /> parameter before writing. </param> <param name="val"> The value to write. </param> <exception cref="T:System.AccessViolationException"> Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address. </exception> <exception cref="T:System.ArgumentException"> <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeBSTR(System.IntPtr)"> <summary> Frees a BSTR pointer that was allocated using the <see cref="M:System.Runtime.InteropServices.Marshal.SecureStringToBSTR(System.Security.SecureString)" /> method. </summary> <param name="s"> The address of the BSTR to free. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeCoTaskMemAnsi(System.IntPtr)"> <summary> Frees an unmanaged string pointer that was allocated using the <see cref="M:System.Runtime.InteropServices.Marshal.SecureStringToCoTaskMemAnsi(System.Security.SecureString)" /> method. </summary> <param name="s"> The address of the unmanaged string to free. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeCoTaskMemUnicode(System.IntPtr)"> <summary> Frees an unmanaged string pointer that was allocated using the <see cref="M:System.Runtime.InteropServices.Marshal.SecureStringToCoTaskMemUnicode(System.Security.SecureString)" /> method. </summary> <param name="s"> The address of the unmanaged string to free. </param> </member> <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeGlobalAllocAnsi(System.IntPtr)"> <summary> Frees an unmanaged string pointer that was allocated using the <see cref="M:System.Runtime.InteropServices.Marshal.SecureStringToGlobalAllocAnsi(System.Security.SecureString)" /> method. </summary> <param name="s"> The address of the unmanaged string to free. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeGlobalAllocUnicode(System.IntPtr)"> <summary> Frees an unmanaged string pointer that was allocated using the <see cref="M:System.Runtime.InteropServices.Marshal.SecureStringToCoTaskMemUnicode(System.Security.SecureString)" /> method. </summary> <param name="s"> The address of the unmanaged string to free. </param> </member> <member name="T:System.Runtime.InteropServices.MarshalAsAttribute"> <summary> Indicates how to marshal the data between managed and unmanaged code. </summary> </member> <member name="M:System.Runtime.InteropServices.MarshalAsAttribute.#ctor(System.Int16)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.MarshalAsAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> value. </summary> <param name="unmanagedType"> The <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> value the data is to be marshaled as. </param> </member> <member name="M:System.Runtime.InteropServices.MarshalAsAttribute.#ctor(System.Runtime.InteropServices.UnmanagedType)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.MarshalAsAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> enumeration member. </summary> <param name="unmanagedType"> The <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> value the data is to be marshaled as. </param> </member> <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.ArraySubType"> <summary> Specifies the element type of the unmanaged <see cref="F:System.Runtime.InteropServices.UnmanagedType.LPArray" /> or <see cref="F:System.Runtime.InteropServices.UnmanagedType.ByValArray" />. </summary> </member> <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.IidParameterIndex"> <summary> Specifies the parameter index of the unmanaged iid_is attribute used by COM. </summary> </member> <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalCookie"> <summary> Provides additional information to a custom marshaler. </summary> </member> <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalType"> <summary> Specifies the fully qualified name of a custom marshaler. </summary> </member> <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalTypeRef"> <summary> Implements <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalType" /> as a type. </summary> </member> <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.SafeArraySubType"> <summary> Indicates the element type of the <see cref="F:System.Runtime.InteropServices.UnmanagedType.SafeArray" />. </summary> </member> <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.SafeArrayUserDefinedSubType"> <summary> Indicates the user-defined element type of the <see cref="F:System.Runtime.InteropServices.UnmanagedType.SafeArray" />. </summary> </member> <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeConst"> <summary> Indicates the number of elements in the fixed-length array or the number of characters (not bytes) in a string to import. </summary> </member> <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeParamIndex"> <summary> Indicates which parameter contains the count of array elements, much like size_is in COM, and is zero-based. </summary> </member> <member name="P:System.Runtime.InteropServices.MarshalAsAttribute.Value"> <summary> Gets the <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> value the data is to be marshaled as. </summary> <returns> The <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> value the data is to be marshaled as. </returns> </member> <member name="T:System.Runtime.InteropServices.MarshalDirectiveException"> <summary> The exception that is thrown by the marshaler when it encounters a <see cref="T:System.Runtime.InteropServices.MarshalAsAttribute" /> it does not support. </summary> </member> <member name="M:System.Runtime.InteropServices.MarshalDirectiveException.#ctor"> <summary> Initializes a new instance of the MarshalDirectiveException class with default properties. </summary> </member> <member name="M:System.Runtime.InteropServices.MarshalDirectiveException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the MarshalDirectiveException class from serialization data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Runtime.InteropServices.MarshalDirectiveException.#ctor(System.String)"> <summary> Initializes a new instance of the MarshalDirectiveException class with a specified error message. </summary> <param name="message"> The error message that specifies the reason for the exception. </param> </member> <member name="M:System.Runtime.InteropServices.MarshalDirectiveException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.MarshalDirectiveException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Runtime.InteropServices.ObjectCreationDelegate"> <summary> Creates a COM object. </summary> <returns> An <see cref="T:System.IntPtr" /> object that represents the IUnknown interface of the COM object. </returns> <param name="aggregator"> A pointer to the managed object's IUnknown interface. </param> </member> <member name="T:System.Runtime.InteropServices.OptionalAttribute"> <summary> Indicates that a parameter is optional. </summary> </member> <member name="M:System.Runtime.InteropServices.OptionalAttribute.#ctor"> <summary> Initializes a new instance of the OptionalAttribute class with default values. </summary> </member> <member name="T:System.Runtime.InteropServices.OutAttribute"> <summary> Indicates that data should be marshaled from callee back to caller. </summary> </member> <member name="M:System.Runtime.InteropServices.OutAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.OutAttribute" /> class. </summary> </member> <member name="T:System.Runtime.InteropServices.PARAMDESC"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.PARAMDESC" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.PARAMDESC.lpVarValue"> <summary> Represents a pointer to a value that is being passed between processes. </summary> </member> <member name="F:System.Runtime.InteropServices.PARAMDESC.wParamFlags"> <summary> Represents bitmask values that describe the structure element, parameter, or return value. </summary> </member> <member name="T:System.Runtime.InteropServices.PARAMFLAG"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.PARAMFLAG" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.PARAMFLAG.PARAMFLAG_NONE"> <summary> Whether the parameter passes or receives information is unspecified. </summary> </member> <member name="F:System.Runtime.InteropServices.PARAMFLAG.PARAMFLAG_FIN"> <summary> The parameter passes information from the caller to the callee. </summary> </member> <member name="F:System.Runtime.InteropServices.PARAMFLAG.PARAMFLAG_FOUT"> <summary> The parameter returns information from the callee to the caller. </summary> </member> <member name="F:System.Runtime.InteropServices.PARAMFLAG.PARAMFLAG_FLCID"> <summary> The parameter is the local identifier of a client application. </summary> </member> <member name="F:System.Runtime.InteropServices.PARAMFLAG.PARAMFLAG_FRETVAL"> <summary> The parameter is the return value of the member. </summary> </member> <member name="F:System.Runtime.InteropServices.PARAMFLAG.PARAMFLAG_FOPT"> <summary> The parameter is optional. </summary> </member> <member name="F:System.Runtime.InteropServices.PARAMFLAG.PARAMFLAG_FHASDEFAULT"> <summary> The parameter has default behaviors defined. </summary> </member> <member name="F:System.Runtime.InteropServices.PARAMFLAG.PARAMFLAG_FHASCUSTDATA"> <summary> The parameter has custom data. </summary> </member> <member name="T:System.Runtime.InteropServices.PreserveSigAttribute"> <summary> Indicates that the HRESULT or retval signature transformation that takes place during COM interop calls should be suppressed. </summary> </member> <member name="M:System.Runtime.InteropServices.PreserveSigAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.PreserveSigAttribute" /> class. </summary> </member> <member name="T:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute"> <summary> Indicates that the attributed assembly is a primary interop assembly. </summary> </member> <member name="M:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute.#ctor(System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute" /> class with the major and minor version numbers of the type library for which this assembly is the primary interop assembly. </summary> <param name="major"> The major version of the type library for which this assembly is the primary interop assembly. </param> <param name="minor"> The minor version of the type library for which this assembly is the primary interop assembly. </param> </member> <member name="P:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute.MajorVersion"> <summary> Gets the major version number of the type library for which this assembly is the primary interop assembly. </summary> <returns> The major version number of the type library for which this assembly is the primary interop assembly. </returns> </member> <member name="P:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute.MinorVersion"> <summary> Gets the minor version number of the type library for which this assembly is the primary interop assembly. </summary> <returns> The minor version number of the type library for which this assembly is the primary interop assembly. </returns> </member> <member name="T:System.Runtime.InteropServices.ProgIdAttribute"> <summary> Allows the user to specify the ProgID of a class. </summary> </member> <member name="M:System.Runtime.InteropServices.ProgIdAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the ProgIdAttribute with the specified ProgID. </summary> <param name="progId"> The ProgID to be assigned to the class. </param> </member> <member name="P:System.Runtime.InteropServices.ProgIdAttribute.Value"> <summary> Gets the ProgID of the class. </summary> <returns> The ProgID of the class. </returns> </member> <member name="T:System.Runtime.InteropServices.RegistrationClassContext"> <summary> Specifies the set of execution contexts in which a class object will be made available for requests to construct instances. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.InProcessServer"> <summary> The code that creates and manages objects of this class is a DLL that runs in the same process as the caller of the function specifying the class context. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.InProcessHandler"> <summary> The code that manages objects of this class is an in-process handler. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.LocalServer"> <summary> The EXE code that creates and manages objects of this class runs on same machine but is loaded in a separate process space. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.InProcessServer16"> <summary> Not used. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.RemoteServer"> <summary> A remote machine context. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.InProcessHandler16"> <summary> Not used. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.Reserved1"> <summary> Not used. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.Reserved2"> <summary> Not used. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.Reserved3"> <summary> Not used. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.Reserved4"> <summary> Not used. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.NoCodeDownload"> <summary> Disallows the downloading of code from the Directory Service or the Internet. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.Reserved5"> <summary> Not used. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.NoCustomMarshal"> <summary> Specifies whether activation fails if it uses custom marshaling. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.EnableCodeDownload"> <summary> Allows the downloading of code from the Directory Service or the Internet. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.NoFailureLog"> <summary> Overrides the logging of failures. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.DisableActivateAsActivator"> <summary> Disables activate-as-activator (AAA) activations for this activation only. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.EnableActivateAsActivator"> <summary> Enables activate-as-activator (AAA) activations for this activation only. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationClassContext.FromDefaultContext"> <summary> Begin this activation from the default context of the current apartment. </summary> </member> <member name="T:System.Runtime.InteropServices.RegistrationConnectionType"> <summary> Defines the types of connections to a class object. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationConnectionType.SingleUse"> <summary> Once an application is connected to a class object with CoGetClassObject, the class object is removed from public view so that no other applications can connect to it. This value is commonly used for single document interface (SDI) applications. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationConnectionType.MultipleUse"> <summary> Multiple applications can connect to the class object through calls to CoGetClassObject. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationConnectionType.MultiSeparate"> <summary> Registers separate CLSCTX_LOCAL_SERVER and CLSCTX_INPROC_SERVER class factories. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationConnectionType.Suspended"> <summary> Suspends registration and activation requests for the specified CLSID until there is a call to CoResumeClassObjects. </summary> </member> <member name="F:System.Runtime.InteropServices.RegistrationConnectionType.Surrogate"> <summary> The class object is a surrogate process used to run DLL servers. </summary> </member> <member name="T:System.Runtime.InteropServices.RegistrationServices"> <summary> Provides a set of services for registering and unregistering managed assemblies for use from COM. </summary> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.RegistrationServices" /> class. </summary> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.GetManagedCategoryGuid"> <summary> Returns the GUID of the COM category that contains the managed classes. </summary> <returns> The GUID of the COM category that contains the managed classes. </returns> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.GetProgIdForType(System.Type)"> <summary> Retrieves the COM ProgID for the specified type. </summary> <returns> The ProgID for the specified type. </returns> <param name="type"> The type corresponding to the ProgID that is being requested. </param> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.GetRegistrableTypesInAssembly(System.Reflection.Assembly)"> <summary> Retrieves a list of classes in an assembly that would be registered by a call to <see cref="M:System.Runtime.InteropServices.RegistrationServices.RegisterAssembly(System.Reflection.Assembly,System.Runtime.InteropServices.AssemblyRegistrationFlags)" />. </summary> <returns> A <see cref="T:System.Type" /> array containing a list of classes in <paramref name="assembly" />. </returns> <param name="assembly"> The assembly to search for classes. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="assembly" /> parameter is null. </exception> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.RegisterAssembly(System.Reflection.Assembly,System.Runtime.InteropServices.AssemblyRegistrationFlags)"> <summary> Registers the classes in a managed assembly to enable creation from COM. </summary> <returns>true if <paramref name="assembly" /> contains types that were successfully registered; otherwise false if the assembly contains no eligible types. </returns> <param name="assembly"> The assembly to be registered. </param> <param name="flags"> An <see cref="T:System.Runtime.InteropServices.AssemblyRegistrationFlags" /> value indicating any special settings used when registering <paramref name="assembly" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assembly" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The full name of <paramref name="assembly" /> is null. -or- A method marked with <see cref="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute" /> is not static. -or- There is more than one method marked with <see cref="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute" /> at a given level of the hierarchy. -or- The signature of the method marked with <see cref="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute" /> is not valid. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> A user-defined custom registration function (marked with the <see cref="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute" /> attribute) throws an exception. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.RegisterTypeForComClients(System.Type,System.Guid@)"> <summary> Registers the specified type with COM using the specified GUID. </summary> <param name="type"> The <see cref="T:System.Type" /> to be registered for use from COM. </param> <param name="g"> The <see cref="T:System.Guid" /> used to register the specified type. </param> <exception cref="T:System.ArgumentException"> The <paramref name="type" /> parameter is null. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> parameter cannot be created. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.RegisterTypeForComClients(System.Type,System.Runtime.InteropServices.RegistrationClassContext,System.Runtime.InteropServices.RegistrationConnectionType)"> <summary> Registers the specified type with COM using the specified execution context and connection type. </summary> <returns> An integer that represents a cookie value. </returns> <param name="type"> The <see cref="T:System.Type" /> object to register for use from COM. </param> <param name="classContext"> One of the <see cref="T:System.Runtime.InteropServices.RegistrationClassContext" /> values that indicates the context in which the executable code will be run. </param> <param name="flags"> One of the <see cref="T:System.Runtime.InteropServices.RegistrationConnectionType" /> values that specifies how connections are made to the class object. </param> <exception cref="T:System.ArgumentException"> The <paramref name="type" /> parameter is null. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> parameter cannot be created. </exception> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.TypeRepresentsComType(System.Type)"> <summary> Indicates whether a type is marked with the <see cref="T:System.Runtime.InteropServices.ComImportAttribute" />, or derives from a type marked with the <see cref="T:System.Runtime.InteropServices.ComImportAttribute" /> and shares the same GUID as the parent. </summary> <returns>true if a type is marked with the <see cref="T:System.Runtime.InteropServices.ComImportAttribute" />, or derives from a type marked with the <see cref="T:System.Runtime.InteropServices.ComImportAttribute" /> and shares the same GUID as the parent; otherwise false. </returns> <param name="type"> The type to check for being a COM type. </param> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.TypeRequiresRegistration(System.Type)"> <summary> Determines whether the specified type requires registration. </summary> <returns>true if the type must be registered for use from COM; otherwise false. </returns> <param name="type"> The type to check for COM registration requirements. </param> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.UnregisterAssembly(System.Reflection.Assembly)"> <summary> Unregisters the classes in a managed assembly. </summary> <returns>true if <paramref name="assembly" /> contains types that were successfully unregistered; otherwise false if the assembly contains no eligible types. </returns> <param name="assembly"> The assembly to be unregistered. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="assembly" /> is null. </exception> <exception cref="T:System.InvalidOperationException"> The full name of <paramref name="assembly" /> is null. -or- A method marked with <see cref="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute" /> is not static. -or- There is more than one method marked with <see cref="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute" /> at a given level of the hierarchy. -or- The signature of the method marked with <see cref="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute" /> is not valid. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> A user-defined custom unregistration function (marked with the <see cref="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute" /> attribute) throws an exception. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.RegistrationServices.UnregisterTypeForComClients(System.Int32)"> <summary> Removes references to a type registered with the <see cref="M:System.Runtime.InteropServices.RegistrationServices.RegisterTypeForComClients(System.Type,System.Runtime.InteropServices.RegistrationClassContext,System.Runtime.InteropServices.RegistrationConnectionType)" /> method. </summary> <param name="cookie"> The cookie value returned by a previous call to the <see cref="M:System.Runtime.InteropServices.RegistrationServices.RegisterTypeForComClients(System.Type,System.Runtime.InteropServices.RegistrationClassContext,System.Runtime.InteropServices.RegistrationConnectionType)" /> method. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Runtime.InteropServices.RuntimeEnvironment"> <summary> Provides a collection of static methods that return information about the common language runtime environment. </summary> </member> <member name="M:System.Runtime.InteropServices.RuntimeEnvironment.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.RuntimeEnvironment" /> class. </summary> </member> <member name="M:System.Runtime.InteropServices.RuntimeEnvironment.FromGlobalAccessCache(System.Reflection.Assembly)"> <summary> Tests whether the specified assembly is loaded in the global assembly cache (GAC). </summary> <returns>true if the assembly is loaded in the GAC; otherwise, false. </returns> <param name="a"> The assembly to determine if it is loaded in the GAC. </param> </member> <member name="M:System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory"> <summary> Gets the directory where the common language runtime is installed. </summary> <returns> A string containing the path to the directory where the common language runtime is installed. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion"> <summary> Gets the version number of the common language runtime that is running the current process. </summary> <returns> A string containing the version number of the common language runtime. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Runtime.InteropServices.RuntimeEnvironment.SystemConfigurationFile"> <summary> Gets the path to the system configuration file. </summary> <returns> The path to the system configuration file. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Runtime.InteropServices.SafeArrayRankMismatchException"> <summary> The exception thrown when the rank of an incoming SAFEARRAY does not match the rank specified in the managed signature. </summary> </member> <member name="M:System.Runtime.InteropServices.SafeArrayRankMismatchException.#ctor"> <summary> Initializes a new instance of the SafeArrayTypeMismatchException class with default values. </summary> </member> <member name="M:System.Runtime.InteropServices.SafeArrayRankMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the SafeArrayTypeMismatchException class from serialization data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Runtime.InteropServices.SafeArrayRankMismatchException.#ctor(System.String)"> <summary> Initializes a new instance of the SafeArrayRankMismatchException class with the specified message. </summary> <param name="message"> The message that indicates the reason for the exception. </param> </member> <member name="M:System.Runtime.InteropServices.SafeArrayRankMismatchException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SafeArrayRankMismatchException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Runtime.InteropServices.SafeArrayTypeMismatchException"> <summary> The exception thrown when the type of the incoming SAFEARRAY does not match the type specified in the managed signature. </summary> </member> <member name="M:System.Runtime.InteropServices.SafeArrayTypeMismatchException.#ctor"> <summary> Initializes a new instance of the SafeArrayTypeMismatchException class with default values. </summary> </member> <member name="M:System.Runtime.InteropServices.SafeArrayTypeMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the SafeArrayTypeMismatchException class from serialization data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Runtime.InteropServices.SafeArrayTypeMismatchException.#ctor(System.String)"> <summary> Initializes a new instance of the SafeArrayTypeMismatchException class with the specified message. </summary> <param name="message"> The message that indicates the reason for the exception. </param> </member> <member name="M:System.Runtime.InteropServices.SafeArrayTypeMismatchException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SafeArrayTypeMismatchException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Runtime.InteropServices.SafeHandle"> <summary> Represents a wrapper class for operating system handles. This class must be inherited. </summary> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.#ctor(System.IntPtr,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SafeHandle" /> class with the specified invalid handle value. </summary> <param name="invalidHandleValue"> The value of an invalid handle (usually 0 or -1). Your implementation of <see cref="P:System.Runtime.InteropServices.SafeHandle.IsInvalid" /> should return true for this value. </param> <param name="ownsHandle">true to reliably let <see cref="T:System.Runtime.InteropServices.SafeHandle" /> release the handle during the finalization phase; otherwise, false (not recommended). </param> <exception cref="T:System.TypeLoadException"> The derived class resides in an assembly without unmanaged code access permission. </exception> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.Close"> <summary> Marks the handle for releasing and freeing resources. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.DangerousAddRef(System.Boolean@)"> <summary> Manually increments the reference counter on <see cref="T:System.Runtime.InteropServices.SafeHandle" /> instances. </summary> <param name="success">true if the reference counter was successfully incremented; otherwise, false. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.DangerousGetHandle"> <summary> Returns the value of the <see cref="F:System.Runtime.InteropServices.SafeHandle.handle" /> field. </summary> <returns> An IntPtr representing the value of the <see cref="F:System.Runtime.InteropServices.SafeHandle.handle" /> field. If the handle has been marked invalid with <see cref="M:System.Runtime.InteropServices.SafeHandle.SetHandleAsInvalid" />, this method still returns the original handle value, which can be a stale value. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.DangerousRelease"> <summary> Manually decrements the reference counter on a <see cref="T:System.Runtime.InteropServices.SafeHandle" /> instance. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.Dispose"> <summary> Releases all resources used by the <see cref="T:System.Runtime.InteropServices.SafeHandle" /> class. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Runtime.InteropServices.SafeHandle" /> class specifying whether to perform a normal dispose operation. </summary> <param name="disposing">true for a normal dispose operation; false to finalize the handle. </param> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.Finalize"> <summary> Frees all resources associated with the handle. </summary> </member> <member name="F:System.Runtime.InteropServices.SafeHandle.handle"> <summary> Specifies the handle to be wrapped. </summary> </member> <member name="P:System.Runtime.InteropServices.SafeHandle.IsClosed"> <summary> Gets a value indicating whether the handle is closed. </summary> <returns>true if the handle is closed; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Runtime.InteropServices.SafeHandle.IsInvalid"> <summary> When overridden in a derived class, gets a value indicating whether the handle value is invalid. </summary> <returns>true if the handle value is invalid; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.ReleaseHandle"> <summary> When overridden in a derived class, executes the code required to free the handle. </summary> <returns>true if the handle is released successfully; otherwise, in the event of a catastrophic failure, false. In this case, it generates a releaseHandleFailed MDA Managed Debugging Assistant. </returns> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.SetHandle(System.IntPtr)"> <summary> Sets the handle to the specified pre-existing handle. </summary> <param name="handle"> The pre-existing handle to use. </param> </member> <member name="M:System.Runtime.InteropServices.SafeHandle.SetHandleAsInvalid"> <summary> Marks a handle as no longer used. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Runtime.InteropServices.SEHException"> <summary> Represents Structured Exception Handler (SEH) errors. </summary> </member> <member name="M:System.Runtime.InteropServices.SEHException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SEHException" /> class. </summary> </member> <member name="M:System.Runtime.InteropServices.SEHException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SEHException" /> class from serialization data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Runtime.InteropServices.SEHException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SEHException" /> class with a specified message. </summary> <param name="message"> The message that indicates the reason for the exception. </param> </member> <member name="M:System.Runtime.InteropServices.SEHException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SEHException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Runtime.InteropServices.SEHException.CanResume"> <summary> Indicates whether the exception can be recovered from or not, and if the code can continue from the point where the exception was thrown. </summary> <returns> Resumable exceptions are not yet implemented, so this method always returns false. </returns> </member> <member name="T:System.Runtime.InteropServices.SetWin32ContextInIDispatchAttribute"> <summary> This attribute has been deprecated. </summary> </member> <member name="M:System.Runtime.InteropServices.SetWin32ContextInIDispatchAttribute.#ctor"> <summary> This attribute has been deprecated. </summary> </member> <member name="T:System.Runtime.InteropServices.STATSTG"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.STATSTG" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.atime"> <summary> Indicates the last access time for this storage, stream or byte array </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.cbSize"> <summary> Specifies the size in bytes of the stream or byte array. </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.clsid"> <summary> Indicates the class identifier for the storage object. </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.ctime"> <summary> Indicates the creation time for this storage, stream, or byte array. </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.grfLocksSupported"> <summary> Indicates the types of region locking supported by the stream or byte array. </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.grfMode"> <summary> Indicates the access mode that was specified when the object was opened. </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.grfStateBits"> <summary> Indicates the current state bits of the storage object (the value most recently set by the IStorage::SetStateBits method). </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.mtime"> <summary> Indicates the last modification time for this storage, stream, or byte array. </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.pwcsName"> <summary> Pointer to a null-terminated string containing the name of the object described by this structure. </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.reserved"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Runtime.InteropServices.STATSTG.type"> <summary> Indicates the type of storage object which is one of the values from the STGTY enumeration. </summary> </member> <member name="T:System.Runtime.InteropServices.StructLayoutAttribute"> <summary> The StructLayoutAttribute class allows the user to control the physical layout of the data fields of a class or structure. </summary> </member> <member name="M:System.Runtime.InteropServices.StructLayoutAttribute.#ctor(System.Int16)"> <summary> Initalizes a new instance of the <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.LayoutKind" /> enumeration member. </summary> <param name="layoutKind"> One of the <see cref="T:System.Runtime.InteropServices.LayoutKind" /> values that specifes how the class or structure should be arranged. </param> </member> <member name="M:System.Runtime.InteropServices.StructLayoutAttribute.#ctor(System.Runtime.InteropServices.LayoutKind)"> <summary> Initalizes a new instance of the <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.LayoutKind" /> enumeration member. </summary> <param name="layoutKind"> One of the <see cref="T:System.Runtime.InteropServices.LayoutKind" /> values that specifes how the class or structure should be arranged. </param> </member> <member name="F:System.Runtime.InteropServices.StructLayoutAttribute.CharSet"> <summary> Indicates how string data fields within the class should be marshaled as LPWSTR or LPSTR by default. </summary> </member> <member name="F:System.Runtime.InteropServices.StructLayoutAttribute.Pack"> <summary> Controls the alignment of data fields of a class or structure in memory. </summary> </member> <member name="F:System.Runtime.InteropServices.StructLayoutAttribute.Size"> <summary> Indicates the absolute size of the class or structure. </summary> </member> <member name="P:System.Runtime.InteropServices.StructLayoutAttribute.Value"> <summary> Gets the <see cref="T:System.Runtime.InteropServices.LayoutKind" /> value that specifies how the class or structure is arranged. </summary> <returns> The <see cref="T:System.Runtime.InteropServices.LayoutKind" /> value that specifies how the class or structure is arranged. </returns> </member> <member name="T:System.Runtime.InteropServices.SYSKIND"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.SYSKIND" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.SYSKIND.SYS_WIN16"> <summary> The target operating system for the type library is 16-bit Windows systems. By default, data fields are packed. </summary> </member> <member name="F:System.Runtime.InteropServices.SYSKIND.SYS_WIN32"> <summary> The target operating system for the type library is 32-bit Windows systems. By default, data fields are naturally aligned (for example, 2-byte integers are aligned on even-byte boundaries; 4-byte integers are aligned on quad-word boundaries, and so on). </summary> </member> <member name="F:System.Runtime.InteropServices.SYSKIND.SYS_MAC"> <summary> The target operating system for the type library is Apple Macintosh. By default, all data fields are aligned on even-byte boundaries. </summary> </member> <member name="T:System.Runtime.InteropServices.TYPEATTR"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.TYPEATTR" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.cbAlignment"> <summary> Specifies the byte alignment for an instance of this type. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.cbSizeInstance"> <summary> The size of an instance of this type. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.cbSizeVft"> <summary> The size of this type's virtual method table (VTBL). </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.cFuncs"> <summary> Indicates the number of functions on the interface this structure describes. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.cImplTypes"> <summary> Indicates the number of implemented interfaces on the interface this structure describes. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.cVars"> <summary> Indicates the number of variables and data fields on the interface described by this structure. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.dwReserved"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.guid"> <summary> The GUID of the type information. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.idldescType"> <summary> IDL attributes of the described type. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.lcid"> <summary> Locale of member names and documentation strings. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.lpstrSchema"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.MEMBER_ID_NIL"> <summary> A constant used with the <see cref="F:System.Runtime.InteropServices.TYPEATTR.memidConstructor" /> and <see cref="F:System.Runtime.InteropServices.TYPEATTR.memidDestructor" /> fields. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.memidConstructor"> <summary> ID of constructor, or <see cref="F:System.Runtime.InteropServices.TYPEATTR.MEMBER_ID_NIL" /> if none. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.memidDestructor"> <summary> ID of destructor, or <see cref="F:System.Runtime.InteropServices.TYPEATTR.MEMBER_ID_NIL" /> if none. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.tdescAlias"> <summary> If <see cref="F:System.Runtime.InteropServices.TYPEATTR.typekind" /> == <see cref="F:System.Runtime.InteropServices.TYPEKIND.TKIND_ALIAS" />, specifies the type for which this type is an alias. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.typekind"> <summary> A <see cref="T:System.Runtime.InteropServices.TYPEKIND" /> value describing the type this information describes. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.wMajorVerNum"> <summary> Major version number. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.wMinorVerNum"> <summary> Minor version number. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEATTR.wTypeFlags"> <summary> A <see cref="T:System.Runtime.InteropServices.TYPEFLAGS" /> value describing this information. </summary> </member> <member name="T:System.Runtime.InteropServices.TYPEDESC"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.TYPEDESC" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEDESC.lpValue"> <summary> If the variable is VT_SAFEARRAY or VT_PTR, the <see cref="F:System.Runtime.InteropServices.TYPEDESC.lpValue" /> field contains a pointer to a TYPEDESC that specifies the element type. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEDESC.vt"> <summary> Indicates the variant type for the item described by this TYPEDESC. </summary> </member> <member name="T:System.Runtime.InteropServices.TYPEFLAGS"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.TYPEFLAGS" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FAPPOBJECT"> <summary> A type description that describes an Application object. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FCANCREATE"> <summary> Instances of the type can be created by ITypeInfo::CreateInstance. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FLICENSED"> <summary> The type is licensed. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FPREDECLID"> <summary> The type is predefined. The client application should automatically create a single instance of the object that has this attribute. The name of the variable that points to the object is the same as the class name of the object. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FHIDDEN"> <summary> The type should not be displayed to browsers. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FCONTROL"> <summary> The type is a control from which other types will be derived, and should not be displayed to users. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FDUAL"> <summary> The interface supplies both IDispatch and VTBL binding. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FNONEXTENSIBLE"> <summary> The interface cannot add members at run time. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FOLEAUTOMATION"> <summary> The types used in the interface are fully compatible with Automation, including VTBL binding support. Setting dual on an interface sets this flag in addition to <see cref="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FDUAL" />. Not allowed on dispinterfaces. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FRESTRICTED"> <summary> Should not be accessible from macro languages. This flag is intended for system-level types or types that type browsers should not display. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FAGGREGATABLE"> <summary> The class supports aggregation. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FREPLACEABLE"> <summary> The object supports IConnectionPointWithDefault, and has default behaviors. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FDISPATCHABLE"> <summary> Indicates that the interface derives from IDispatch, either directly or indirectly. This flag is computed, there is no Object Description Language for the flag. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FREVERSEBIND"> <summary> Indicates base interfaces should be checked for name resolution before checking children, the reverse of the default behavior. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FPROXY"> <summary> Indicates that the interface will be using a proxy/stub dynamic link library. This flag specifies that the type library proxy should not be unregistered when the type library is unregistered. </summary> </member> <member name="T:System.Runtime.InteropServices.TYPEKIND"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.TYPEKIND" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEKIND.TKIND_ENUM"> <summary> A set of enumerators. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEKIND.TKIND_RECORD"> <summary> A structure with no methods. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEKIND.TKIND_MODULE"> <summary> A module that can only have static functions and data (for example, a DLL). </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEKIND.TKIND_INTERFACE"> <summary> A type that has virtual functions, all of which are pure. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEKIND.TKIND_DISPATCH"> <summary> A set of methods and properties that are accessible through IDispatch::Invoke. By default, dual interfaces return TKIND_DISPATCH. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEKIND.TKIND_COCLASS"> <summary> A set of implemented components interfaces. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEKIND.TKIND_ALIAS"> <summary> A type that is an alias for another type. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEKIND.TKIND_UNION"> <summary> A union of all members that have an offset of zero. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPEKIND.TKIND_MAX"> <summary> End of enumeration marker. </summary> </member> <member name="T:System.Runtime.InteropServices.TYPELIBATTR"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.TYPELIBATTR" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPELIBATTR.guid"> <summary> Represents a globally unique library ID of a type library. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPELIBATTR.lcid"> <summary> Represents a locale ID of a type library. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPELIBATTR.syskind"> <summary> Represents the target hardware platform of a type library. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPELIBATTR.wLibFlags"> <summary> Represents library flags. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPELIBATTR.wMajorVerNum"> <summary> Represents the major version number of a type library. </summary> </member> <member name="F:System.Runtime.InteropServices.TYPELIBATTR.wMinorVerNum"> <summary> Represents the minor version number of a type library. </summary> </member> <member name="T:System.Runtime.InteropServices.TypeLibConverter"> <summary> Provides a set of services that convert a managed assembly to a COM type library and vice versa. </summary> </member> <member name="M:System.Runtime.InteropServices.TypeLibConverter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.TypeLibConverter" /> class. </summary> </member> <member name="M:System.Runtime.InteropServices.TypeLibConverter.ConvertAssemblyToTypeLib(System.Reflection.Assembly,System.String,System.Runtime.InteropServices.TypeLibExporterFlags,System.Runtime.InteropServices.ITypeLibExporterNotifySink)"> <summary> Converts an assembly to a COM type library. </summary> <returns> An object that implements the ITypeLib interface. </returns> <param name="assembly"> The assembly to convert. </param> <param name="strTypeLibName"> The file name of the resulting type library. </param> <param name="flags"> A <see cref="T:System.Runtime.InteropServices.TypeLibExporterFlags" /> value indicating any special settings. </param> <param name="notifySink"> The <see cref="T:System.Runtime.InteropServices.ITypeLibExporterNotifySink" /> interface implemented by the caller. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.TypeLibConverter.ConvertTypeLibToAssembly(System.Object,System.String,System.Int32,System.Runtime.InteropServices.ITypeLibImporterNotifySink,System.Byte[],System.Reflection.StrongNameKeyPair,System.Boolean)"> <summary> Converts a COM type library to an assembly. </summary> <returns> An <see cref="T:System.Reflection.Emit.AssemblyBuilder" /> object containing the converted type library. </returns> <param name="typeLib"> The object that implements the ITypeLib interface. </param> <param name="asmFileName"> The file name of the resulting assembly. </param> <param name="flags"> A <see cref="T:System.Runtime.InteropServices.TypeLibImporterFlags" /> value indicating any special settings. </param> <param name="notifySink"> <see cref="T:System.Runtime.InteropServices.ITypeLibImporterNotifySink" /> interface implemented by the caller. </param> <param name="publicKey"> A byte array containing the public key. </param> <param name="keyPair"> A <see cref="T:System.Reflection.StrongNameKeyPair" /> object containing the public and private cryptographic key pair. </param> <param name="unsafeInterfaces"> If true, the interfaces require link time checks for <see cref="F:System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode" /> permission. If false, the interfaces require run time checks that require a stack walk and are more expensive, but help provide greater protection. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeLib" /> is null. -or- <paramref name="asmFileName" /> is null. -or- <paramref name="notifySink" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="asmFileName" /> is an empty string. -or- <paramref name="asmFileName" /> is longer than MAX_PATH. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="flags" /> is not <see cref="F:System.Runtime.InteropServices.TypeLibImporterFlags.PrimaryInteropAssembly" />. -or- <paramref name="publicKey" /> and <paramref name="keyPair" /> are null. </exception> <exception cref="T:System.Reflection.ReflectionTypeLoadException"> The metadata produced has errors preventing any types from loading. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.TypeLibConverter.ConvertTypeLibToAssembly(System.Object,System.String,System.Runtime.InteropServices.TypeLibImporterFlags,System.Runtime.InteropServices.ITypeLibImporterNotifySink,System.Byte[],System.Reflection.StrongNameKeyPair,System.String,System.Version)"> <summary> Converts a COM type library to an assembly. </summary> <returns> An <see cref="T:System.Reflection.Emit.AssemblyBuilder" /> object containing the converted type library. </returns> <param name="typeLib"> The object that implements the ITypeLib interface. </param> <param name="asmFileName"> The file name of the resulting assembly. </param> <param name="flags"> A <see cref="T:System.Runtime.InteropServices.TypeLibImporterFlags" /> value indicating any special settings. </param> <param name="notifySink"> <see cref="T:System.Runtime.InteropServices.ITypeLibImporterNotifySink" /> interface implemented by the caller. </param> <param name="publicKey"> A byte array containing the public key. </param> <param name="keyPair"> A <see cref="T:System.Reflection.StrongNameKeyPair" /> object containing the public and private cryptographic key pair. </param> <param name="asmNamespace"> The namespace for the resulting assembly. </param> <param name="asmVersion"> The version of the resulting assembly. If null, the version of the type library is used. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="typeLib" /> is null. -or- <paramref name="asmFileName" /> is null. -or- <paramref name="notifySink" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="asmFileName" /> is an empty string. -or- <paramref name="asmFileName" /> is longer than MAX_PATH. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="flags" /> is not <see cref="F:System.Runtime.InteropServices.TypeLibImporterFlags.PrimaryInteropAssembly" />. -or- <paramref name="publicKey" /> and <paramref name="keyPair" /> are null. </exception> <exception cref="T:System.Reflection.ReflectionTypeLoadException"> The metadata produced has errors preventing any types from loading. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Runtime.InteropServices.TypeLibConverter.GetPrimaryInteropAssembly(System.Guid,System.Int32,System.Int32,System.Int32,System.String@,System.String@)"> <summary> Gets the name and code base of a primary interop assembly for a specified type library. </summary> <returns>true if the primary interop assembly was found in the registry; otherwise false. </returns> <param name="g"> The GUID of the type library. </param> <param name="major"> The major version number of the type library. </param> <param name="minor"> The minor version number of the type library. </param> <param name="lcid"> The LCID of the type library. </param> <param name="asmName"> On successful return, the name of the primary interop assembly associated with <paramref name="g" />. </param> <param name="asmCodeBase"> On successful return, the code base of the primary interop assembly associated with <paramref name="g" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.RegistryPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Runtime.InteropServices.TypeLibExporterFlags"> <summary> Indicates how a type library should be produced. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibExporterFlags.None"> <summary> Specifies no flags. This is the default. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibExporterFlags.OnlyReferenceRegistered"> <summary> Exports references to types that were imported from COM as IUnknown if the type does not have a registered type library. Set this flag when you want the type library exporter to look for dependent types in the registry rather than in the same directory as the input assembly. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibExporterFlags.CallerResolvedReferences"> <summary> Allows the caller to explicitly resolve type library references without consulting the registry. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibExporterFlags.OldNames"> <summary> When exporting type libraries, the .NET Framework resolves type name conflicts by decorating the type with the name of the namespace; for example, System.Windows.Forms.HorizontalAlignment is exported as System_Windows_Forms_HorizontalAlignment. When there is a conflict with the name of a type that is not visible from COM, the .NET Framework exports the undecorated name. Set the <see cref="F:System.Runtime.InteropServices.TypeLibExporterFlags.OldNames" /> flag or use the /oldnames option in the Type Library Exporter (Tlbexp.exe) to force the .NET Framework to export the decorated name. Note that exporting the decorated name was the default behavior in versions prior to the .NET Framework version 2.0. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibExporterFlags.ExportAs32Bit"> <summary> When compiling on a 64-bit computer, specifies that the Type Library Exporter (Tlbexp.exe) generates a 32-bit type library. All data types are transformed appropriately. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibExporterFlags.ExportAs64Bit"> <summary> When compiling on a 32-bit computer, specifies that the Type Library Exporter (Tlbexp.exe) generates a 64-bit type library. All data types are transformed appropriately. </summary> </member> <member name="T:System.Runtime.InteropServices.TypeLibFuncAttribute"> <summary> Contains the <see cref="T:System.Runtime.InteropServices.FUNCFLAGS" /> that were originally imported for this method from the COM type library. </summary> </member> <member name="M:System.Runtime.InteropServices.TypeLibFuncAttribute.#ctor(System.Int16)"> <summary> Initializes a new instance of the TypeLibFuncAttribute class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value. </summary> <param name="flags"> The <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value for the attributed method as found in the type library it was imported from. </param> </member> <member name="M:System.Runtime.InteropServices.TypeLibFuncAttribute.#ctor(System.Runtime.InteropServices.TypeLibFuncFlags)"> <summary> Initializes a new instance of the TypeLibFuncAttribute class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value. </summary> <param name="flags"> The <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value for the attributed method as found in the type library it was imported from. </param> </member> <member name="P:System.Runtime.InteropServices.TypeLibFuncAttribute.Value"> <summary> Gets the <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value for this method. </summary> <returns> The <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value for this method. </returns> </member> <member name="T:System.Runtime.InteropServices.TypeLibFuncFlags"> <summary> Describes the original settings of the FUNCFLAGS in the COM type library from where this method was imported. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FRestricted"> <summary> This flag is intended for system-level functions or functions that type browsers should not display. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FSource"> <summary> The function returns an object that is a source of events. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FBindable"> <summary> The function that supports data binding. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FRequestEdit"> <summary> When set, any call to a method that sets the property results first in a call to IPropertyNotifySink::OnRequestEdit. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FDisplayBind"> <summary> The function that is displayed to the user as bindable. <see cref="F:System.Runtime.InteropServices.TypeLibFuncFlags.FBindable" /> must also be set. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FDefaultBind"> <summary> The function that best represents the object. Only one function in a type information can have this attribute. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FHidden"> <summary> The function should not be displayed to the user, although it exists and is bindable. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FUsesGetLastError"> <summary> The function supports GetLastError. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FDefaultCollelem"> <summary> Permits an optimization in which the compiler looks for a member named "xyz" on the type "abc". If such a member is found and is flagged as an accessor function for an element of the default collection, then a call is generated to that member function. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FUiDefault"> <summary> The type information member is the default member for display in the user interface. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FNonBrowsable"> <summary> The property appears in an object browser, but not in a properties browser. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FReplaceable"> <summary> Tags the interface as having default behaviors. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FImmediateBind"> <summary> The function is mapped as individual bindable properties. </summary> </member> <member name="T:System.Runtime.InteropServices.TypeLibImportClassAttribute"> <summary> Specifies which <see cref="T:System.Type" /> exclusively uses an interface. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.InteropServices.TypeLibImportClassAttribute.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.TypeLibImportClassAttribute" /> class specifying the <see cref="T:System.Type" /> that exclusively uses an interface. </summary> <param name="importClass"> The <see cref="T:System.Type" /> object that exclusively uses an interface. </param> </member> <member name="P:System.Runtime.InteropServices.TypeLibImportClassAttribute.Value"> <summary> Gets the name of a <see cref="T:System.Type" /> object that exclusively uses an interface. </summary> <returns> The name of a <see cref="T:System.Type" /> object that exclusively uses an interface. </returns> </member> <member name="T:System.Runtime.InteropServices.TypeLibImporterFlags"> <summary> Indicates how an assembly should be produced. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.None"> <summary> Specifies no flags. This is the default. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.PrimaryInteropAssembly"> <summary> Generates a primary interop assembly. See <see cref="T:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute" /> for details. A keyfile must be specified. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.UnsafeInterfaces"> <summary> Imports all interfaces as interfaces that suppress the common language runtime's stack crawl for <see cref="F:System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode" /> permission. Be sure you understand the responsibilities associated with suppressing this security check. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.SafeArrayAsSystemArray"> <summary> Imports all SAFEARRAYs as <see cref="T:System.Array" /> rather than a typed, single dimensional, zero-based managed array. This option is useful when dealing with multi dimensional, non zero-based SAFEARRAYs which otherwise can not be accessed unless you edit the resulting assembly using the ILDASM and ILASM tools. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.TransformDispRetVals"> <summary> Transforms [out, retval] parameters of methods on dispatch-only interfaces (dispinterfaces) into return values. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.PreventClassMembers"> <summary> Not used. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.SerializableValueClasses"> <summary> Specifies the use of serailizable classes. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.ImportAsX86"> <summary> Imports a type library for the X86 platform. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.ImportAsX64"> <summary> Imports a type library for the X86 64 bit platform. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.ImportAsItanium"> <summary> Imports a type library for the Itanuim platform. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.ImportAsAgnostic"> <summary> Imports a type library for any platform. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibImporterFlags.ReflectionOnlyLoading"> <summary> Specifies the use of reflection only loading. </summary> </member> <member name="T:System.Runtime.InteropServices.TypeLibTypeAttribute"> <summary> Contains the <see cref="T:System.Runtime.InteropServices.TYPEFLAGS" /> that were originally imported for this type from the COM type library. </summary> </member> <member name="M:System.Runtime.InteropServices.TypeLibTypeAttribute.#ctor(System.Int16)"> <summary> Initializes a new instance of the TypeLibTypeAttribute class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value. </summary> <param name="flags"> The <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value for the attributed type as found in the type library it was imported from. </param> </member> <member name="M:System.Runtime.InteropServices.TypeLibTypeAttribute.#ctor(System.Runtime.InteropServices.TypeLibTypeFlags)"> <summary> Initializes a new instance of the TypeLibTypeAttribute class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value. </summary> <param name="flags"> The <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value for the attributed type as found in the type library it was imported from. </param> </member> <member name="P:System.Runtime.InteropServices.TypeLibTypeAttribute.Value"> <summary> Gets the <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value for this type. </summary> <returns> The <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value for this type. </returns> </member> <member name="T:System.Runtime.InteropServices.TypeLibTypeFlags"> <summary> Describes the original settings of the <see cref="T:System.Runtime.InteropServices.TYPEFLAGS" /> in the COM type library from which the type was imported. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FAppObject"> <summary> A type description that describes an Application object. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FCanCreate"> <summary> Instances of the type can be created by ITypeInfo::CreateInstance. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FLicensed"> <summary> The type is licensed. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FPreDeclId"> <summary> The type is predefined. The client application should automatically create a single instance of the object that has this attribute. The name of the variable that points to the object is the same as the class name of the object. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FHidden"> <summary> The type should not be displayed to browsers. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FControl"> <summary> The type is a control from which other types will be derived, and should not be displayed to users. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FDual"> <summary> The interface supplies both IDispatch and V-table binding. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FNonExtensible"> <summary> The interface cannot add members at run time. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FOleAutomation"> <summary> The types used in the interface are fully compatible with Automation, including vtable binding support. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FRestricted"> <summary> This flag is intended for system-level types or types that type browsers should not display. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FAggregatable"> <summary> The class supports aggregation. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FReplaceable"> <summary> The object supports IConnectionPointWithDefault, and has default behaviors. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable"> <summary> Indicates that the interface derives from IDispatch, either directly or indirectly. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FReverseBind"> <summary> Indicates base interfaces should be checked for name resolution before checking child interfaces. This is the reverse of the default behavior. </summary> </member> <member name="T:System.Runtime.InteropServices.TypeLibVarAttribute"> <summary> Contains the <see cref="T:System.Runtime.InteropServices.VARFLAGS" /> that were originally imported for this field from the COM type library. </summary> </member> <member name="M:System.Runtime.InteropServices.TypeLibVarAttribute.#ctor(System.Int16)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.TypeLibVarAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value. </summary> <param name="flags"> The <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value for the attributed field as found in the type library it was imported from. </param> </member> <member name="M:System.Runtime.InteropServices.TypeLibVarAttribute.#ctor(System.Runtime.InteropServices.TypeLibVarFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.TypeLibVarAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value. </summary> <param name="flags"> The <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value for the attributed field as found in the type library it was imported from. </param> </member> <member name="P:System.Runtime.InteropServices.TypeLibVarAttribute.Value"> <summary> Gets the <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value for this field. </summary> <returns> The <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value for this field. </returns> </member> <member name="T:System.Runtime.InteropServices.TypeLibVarFlags"> <summary> Describes the original settings of the <see cref="T:System.Runtime.InteropServices.VARFLAGS" /> in the COM type library from which the variable was imported. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FReadOnly"> <summary> Assignment to the variable should not be allowed. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FSource"> <summary> The variable returns an object that is a source of events. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FBindable"> <summary> The variable supports data binding. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FRequestEdit"> <summary> Indicates that the property supports the COM OnRequestEdit notification. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FDisplayBind"> <summary> The variable is displayed as bindable. <see cref="F:System.Runtime.InteropServices.TypeLibVarFlags.FBindable" /> must also be set. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FDefaultBind"> <summary> The variable is the single property that best represents the object. Only one variable in a type info can have this value. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FHidden"> <summary> The variable should not be displayed in a browser, though it exists and is bindable. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FRestricted"> <summary> This flag is intended for system-level functions or functions that type browsers should not display. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FDefaultCollelem"> <summary> Permits an optimization in which the compiler looks for a member named "xyz" on the type "abc". If such a member is found and is flagged as an accessor function for an element of the default collection, then a call is generated to that member function. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FUiDefault"> <summary> The default display in the user interface. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FNonBrowsable"> <summary> The variable appears in an object browser, but not in a properties browser. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FReplaceable"> <summary> Tags the interface as having default behaviors. </summary> </member> <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FImmediateBind"> <summary> The variable is mapped as individual bindable properties. </summary> </member> <member name="T:System.Runtime.InteropServices.TypeLibVersionAttribute"> <summary> Specifies the version number of an exported type library. </summary> </member> <member name="M:System.Runtime.InteropServices.TypeLibVersionAttribute.#ctor(System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.TypeLibVersionAttribute" /> class with the major and minor version numbers of the type library. </summary> <param name="major"> The major version number of the type library. </param> <param name="minor"> The minor version number of the type library. </param> </member> <member name="P:System.Runtime.InteropServices.TypeLibVersionAttribute.MajorVersion"> <summary> Gets the major version number of the type library. </summary> <returns> The major version number of the type library. </returns> </member> <member name="P:System.Runtime.InteropServices.TypeLibVersionAttribute.MinorVersion"> <summary> Gets the minor version number of the type library. </summary> <returns> The minor version number of the type library. </returns> </member> <member name="T:System.Runtime.InteropServices.UCOMIBindCtx"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.BIND_OPTS" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIBindCtx.EnumObjectParam(System.Runtime.InteropServices.UCOMIEnumString@)"> <summary> Enumerate the strings which are the keys of the internally-maintained table of contextual object parameters. </summary> <param name="ppenum"> On successful return, a reference to the object parameter enumerator. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIBindCtx.GetBindOptions(System.Runtime.InteropServices.BIND_OPTS@)"> <summary> Return the current binding options stored in this bind context. </summary> <param name="pbindopts"> A pointer to the structure to receive the binding options. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIBindCtx.GetObjectParam(System.String,System.Object@)"> <summary> Lookup the given key in the internally-maintained table of contextual object parameters and return the corresponding object, if one exists. </summary> <param name="pszKey"> The name of the object to search for. </param> <param name="ppunk"> On successful return, the object interface pointer. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIBindCtx.GetRunningObjectTable(System.Runtime.InteropServices.UCOMIRunningObjectTable@)"> <summary> Return access to the Running Object Table (ROT) relevant to this binding process. </summary> <param name="pprot"> On successful return, a reference to the ROT. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIBindCtx.RegisterObjectBound(System.Object)"> <summary> Register the passed object as one of the objects that has been bound during a moniker operation and which should be released when it is complete. </summary> <param name="punk"> The object to register for release. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIBindCtx.RegisterObjectParam(System.String,System.Object)"> <summary> Register the given object pointer under the specified name in the internally-maintained table of object pointers. </summary> <param name="pszKey"> The name to register <paramref name="punk" /> with. </param> <param name="punk"> The object to register. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIBindCtx.ReleaseBoundObjects"> <summary> Releases all the objects currently registered with the bind context by <see cref="M:System.Runtime.InteropServices.UCOMIBindCtx.RegisterObjectBound(System.Object)" />. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIBindCtx.RevokeObjectBound(System.Object)"> <summary> Removes the object from the set of registered objects that need to be released. </summary> <param name="punk"> The object to unregister for release. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIBindCtx.RevokeObjectParam(System.String)"> <summary> Revoke the registration of the object currently found under this key in the internally-maintained table of contextual object parameters, if any such key is currently registered. </summary> <param name="pszKey"> The key to unregister. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIBindCtx.SetBindOptions(System.Runtime.InteropServices.BIND_OPTS@)"> <summary> Store in the bind context a block of parameters that will apply to later UCOMIMoniker operations using this bind context. </summary> <param name="pbindopts"> The structure containing the binding options to set. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIConnectionPoint"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IConnectionPoint" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIConnectionPoint.Advise(System.Object,System.Int32@)"> <summary> Establishes an advisory connection between the connection point and the caller's sink object. </summary> <param name="pUnkSink"> Reference to the sink to receive calls for the outgoing interface managed by this connection point. </param> <param name="pdwCookie"> On successful return, contains the connection cookie. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIConnectionPoint.EnumConnections(System.Runtime.InteropServices.UCOMIEnumConnections@)"> <summary> Creates an enumerator object for iteration through the connections that exist to this connection point. </summary> <param name="ppEnum"> On successful return, contains the newly created enumerator. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIConnectionPoint.GetConnectionInterface(System.Guid@)"> <summary> Returns the IID of the outgoing interface managed by this connection point. </summary> <param name="pIID"> On successful return, contains the IID of the outgoing interface managed by this connection point. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIConnectionPoint.GetConnectionPointContainer(System.Runtime.InteropServices.UCOMIConnectionPointContainer@)"> <summary> Retrieves the IConnectionPointContainer interface pointer to the connectable object that conceptually owns this connection point. </summary> <param name="ppCPC"> On successful return, contains the connectable object's IConnectionPointContainer interface. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIConnectionPoint.Unadvise(System.Int32)"> <summary> Terminates an advisory connection previously established through <see cref="M:System.Runtime.InteropServices.UCOMIConnectionPoint.Advise(System.Object,System.Int32@)" />. </summary> <param name="dwCookie"> The connection cookie previously returned from <see cref="M:System.Runtime.InteropServices.UCOMIConnectionPoint.Advise(System.Object,System.Int32@)" />. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIConnectionPointContainer"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IConnectionPointContainer" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIConnectionPointContainer.EnumConnectionPoints(System.Runtime.InteropServices.UCOMIEnumConnectionPoints@)"> <summary> Creates an enumerator of all the connection points supported in the connectable object, one connection point per IID. </summary> <param name="ppEnum"> On successful return, contains the interface pointer of the enumerator. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIConnectionPointContainer.FindConnectionPoint(System.Guid@,System.Runtime.InteropServices.UCOMIConnectionPoint@)"> <summary> Asks the connectable object if it has a connection point for a particular IID, and if so, returns the IConnectionPoint interface pointer to that connection point. </summary> <param name="riid"> A reference to the outgoing interface IID whose connection point is being requested. </param> <param name="ppCP"> On successful return, contains the connection point that manages the outgoing interface <paramref name="riid" />. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIEnumConnectionPoints"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumConnectionPoints.Clone(System.Runtime.InteropServices.UCOMIEnumConnectionPoints@)"> <summary> Creates another enumerator that contains the same enumeration state as the current one. </summary> <param name="ppenum"> On successful return, a reference to the newly created enumerator. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumConnectionPoints.Next(System.Int32,System.Runtime.InteropServices.UCOMIConnectionPoint[],System.Int32@)"> <summary> Retrieves a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of IConnectionPoint references to return in <paramref name="rgelt" />. </param> <param name="rgelt"> On successful return, a reference to the enumerated connections. </param> <param name="pceltFetched"> On successful return, a reference to the actual number of connections enumerated in <paramref name="rgelt" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumConnectionPoints.Reset"> <summary> Resets the enumeration sequence to the beginning. </summary> <returns> An HRESULT with the value S_OK. </returns> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumConnectionPoints.Skip(System.Int32)"> <summary> Skips over a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to skip in the enumeration. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIEnumConnections"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IEnumConnections" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumConnections.Clone(System.Runtime.InteropServices.UCOMIEnumConnections@)"> <summary> Creates another enumerator that contains the same enumeration state as the current one. </summary> <param name="ppenum"> On successful return, a reference to the newly created enumerator. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumConnections.Next(System.Int32,System.Runtime.InteropServices.CONNECTDATA[],System.Int32@)"> <summary> Retrieves a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of <see cref="T:System.Runtime.InteropServices.CONNECTDATA" /> structures to return in <paramref name="rgelt" />. </param> <param name="rgelt"> On successful return, a reference to the enumerated connections. </param> <param name="pceltFetched"> On successful return, a reference to the actual number of connections enumerated in <paramref name="rgelt" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumConnections.Reset"> <summary> Resets the enumeration sequence to the beginning. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumConnections.Skip(System.Int32)"> <summary> Skips over a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to skip in the enumeration. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIEnumMoniker"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IEnumMoniker" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumMoniker.Clone(System.Runtime.InteropServices.UCOMIEnumMoniker@)"> <summary> Creates another enumerator that contains the same enumeration state as the current one. </summary> <param name="ppenum"> On successful return, a reference to the newly created enumerator. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumMoniker.Next(System.Int32,System.Runtime.InteropServices.UCOMIMoniker[],System.Int32@)"> <summary> Retrieves a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of monikers to return in <paramref name="rgelt" />. </param> <param name="rgelt"> On successful return, a reference to the enumerated monikers. </param> <param name="pceltFetched"> On successful return, a reference to the actual number of monikers enumerated in <paramref name="rgelt" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumMoniker.Reset"> <summary> Resets the enumeration sequence to the beginning. </summary> <returns> An HRESULT with the value S_OK. </returns> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumMoniker.Skip(System.Int32)"> <summary> Skips over a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to skip in the enumeration. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIEnumString"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IEnumString" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumString.Clone(System.Runtime.InteropServices.UCOMIEnumString@)"> <summary> Creates another enumerator that contains the same enumeration state as the current one. </summary> <param name="ppenum"> On successful return, a reference to the newly created enumerator. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumString.Next(System.Int32,System.String[],System.Int32@)"> <summary> Retrieves a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of strings to return in <paramref name="rgelt" />. </param> <param name="rgelt"> On successful return, a reference to the enumerated strings. </param> <param name="pceltFetched"> On successful return, a reference to the actual number of strings enumerated in <paramref name="rgelt" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumString.Reset"> <summary> Resets the enumeration sequence to the beginning. </summary> <returns> An HRESULT with the value S_OK. </returns> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumString.Skip(System.Int32)"> <summary> Skips over a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to skip in the enumeration. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIEnumVARIANT"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IEnumVARIANT" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumVARIANT.Clone(System.Int32)"> <summary> Creates another enumerator that contains the same enumeration state as the current one. </summary> <param name="ppenum"> On successful return, a reference to the newly created enumerator. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumVARIANT.Next(System.Int32,System.Int32,System.Int32)"> <summary> Retrieves a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to return in <paramref name="rgelt" />. </param> <param name="rgvar"> On successful return, a reference to the enumerated elements. </param> <param name="pceltFetched"> On successful return, a reference to the actual number of elements enumerated in <paramref name="rgelt" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumVARIANT.Reset"> <summary> Resets the enumeration sequence to the beginning. </summary> <returns> An HRESULT with the value S_OK. </returns> </member> <member name="M:System.Runtime.InteropServices.UCOMIEnumVARIANT.Skip(System.Int32)"> <summary> Skips over a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the number of elements skipped equals <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to skip in the enumeration. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIMoniker"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IMoniker" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.BindToObject(System.Runtime.InteropServices.UCOMIBindCtx,System.Runtime.InteropServices.UCOMIMoniker,System.Guid@,System.Object@)"> <summary> Uses the moniker to bind to the object it identifies. </summary> <param name="pbc"> A reference to the IBindCtx interface on the bind context object used in this binding operation. </param> <param name="pmkToLeft"> A reference to the moniker to the left of this moniker, if the moniker is part of a composite moniker. </param> <param name="riidResult"> The interface identifier (IID) of the interface the client intends to use to communicate with the object that the moniker identifies. </param> <param name="ppvResult"> On successful return, reference to the interface requested by <paramref name="riidResult" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.BindToStorage(System.Runtime.InteropServices.UCOMIBindCtx,System.Runtime.InteropServices.UCOMIMoniker,System.Guid@,System.Object@)"> <summary> Retrieves an interface pointer to the storage that contains the object identified by the moniker. </summary> <param name="pbc"> A reference to the IBindCtx interface on the bind context object used during this binding operation. </param> <param name="pmkToLeft"> A reference to the moniker to the left of this moniker, if the moniker is part of a composite moniker. </param> <param name="riid"> The interface identifier (IID) of the storage interface requested. </param> <param name="ppvObj"> On successful return, a reference to the interface requested by <paramref name="riid" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.CommonPrefixWith(System.Runtime.InteropServices.UCOMIMoniker,System.Runtime.InteropServices.UCOMIMoniker@)"> <summary> Creates a new moniker based on the common prefix that this moniker shares with another moniker. </summary> <param name="pmkOther"> A reference to the IMoniker interface on another moniker to compare with this for a common prefix. </param> <param name="ppmkPrefix"> On successful return, contains the moniker that is the common prefix of this moniker and <paramref name="pmkOther" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.ComposeWith(System.Runtime.InteropServices.UCOMIMoniker,System.Boolean,System.Runtime.InteropServices.UCOMIMoniker@)"> <summary> Combines the current moniker with another moniker, creating a new composite moniker. </summary> <param name="pmkRight"> A reference to the IMoniker interface on the moniker to compose onto the end of this moniker. </param> <param name="fOnlyIfNotGeneric"> If true, the caller requires a nongeneric composition, so the operation proceeds only if <paramref name="pmkRight" /> is a moniker class that this moniker can compose with in some way other than forming a generic composite. If false, the method can create a generic composite if necessary. </param> <param name="ppmkComposite"> On successful return, a reference to the resulting composite moniker. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.Enum(System.Boolean,System.Runtime.InteropServices.UCOMIEnumMoniker@)"> <summary> Supplies a pointer to an enumerator that can enumerate the components of a composite moniker. </summary> <param name="fForward"> If true, enumerates the monikers from left to right. If false, enumerates from right to left. </param> <param name="ppenumMoniker"> On successful return, references the enumerator object for the moniker. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.GetClassID(System.Guid@)"> <summary> Retrieves the class identifier (CLSID) of an object. </summary> <param name="pClassID"> On successful return, contains the CLSID. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.GetDisplayName(System.Runtime.InteropServices.UCOMIBindCtx,System.Runtime.InteropServices.UCOMIMoniker,System.String@)"> <summary> Gets the display name, which is a user-readable representation of this moniker. </summary> <param name="pbc"> A reference to the bind context to use in this operation. </param> <param name="pmkToLeft"> A reference to the moniker to the left of this moniker, if the moniker is part of a composite moniker. </param> <param name="ppszDisplayName"> On successful return, contains the display name string. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.GetSizeMax(System.Int64@)"> <summary> Returns the size in bytes of the stream needed to save the object. </summary> <param name="pcbSize"> On successful return, contains a long value indicating the size in bytes of the stream needed to save this object. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.GetTimeOfLastChange(System.Runtime.InteropServices.UCOMIBindCtx,System.Runtime.InteropServices.UCOMIMoniker,System.Runtime.InteropServices.FILETIME@)"> <summary> Provides a number representing the time the object identified by this moniker was last changed. </summary> <param name="pbc"> A reference to the bind context to be used in this binding operation. </param> <param name="pmkToLeft"> A reference to the moniker to the left of this moniker, if the moniker is part of a composite moniker. </param> <param name="pFileTime"> On successful return, contains the time of last change. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.Hash(System.Int32@)"> <summary> Calculates a 32-bit integer using the internal state of the moniker. </summary> <param name="pdwHash"> On successful return, contains the hash value for this moniker. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.Inverse(System.Runtime.InteropServices.UCOMIMoniker@)"> <summary> Provides a moniker that, when composed to the right of this moniker or one of similar structure, composes to nothing. </summary> <param name="ppmk"> On successful return, contains a moniker that is the inverse of this moniker. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.IsDirty"> <summary> Checks the object for changes since it was last saved. </summary> <returns> An S_OKHRESULT value if the object has changed; otherwise, an S_FALSEHRESULT value. </returns> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.IsEqual(System.Runtime.InteropServices.UCOMIMoniker)"> <summary> Compares this moniker with a specified moniker and indicates whether they are identical. </summary> <param name="pmkOtherMoniker"> A reference to the moniker to be used for comparison. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.IsRunning(System.Runtime.InteropServices.UCOMIBindCtx,System.Runtime.InteropServices.UCOMIMoniker,System.Runtime.InteropServices.UCOMIMoniker)"> <summary> Determines whether the object that is identified by this moniker is currently loaded and running. </summary> <param name="pbc"> A reference to the bind context to be used in this binding operation. </param> <param name="pmkToLeft"> A reference to the moniker to the left of this moniker if this moniker is part of a composite. </param> <param name="pmkNewlyRunning"> A reference to the moniker most recently added to the Running Object Table. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.IsSystemMoniker(System.Int32@)"> <summary> Indicates whether this moniker is of one of the system-supplied moniker classes. </summary> <param name="pdwMksys"> A pointer to an integer that is one of the values from the MKSYS enumeration, and refers to one of the COM moniker classes. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.Load(System.Runtime.InteropServices.UCOMIStream)"> <summary> Initializes an object from the stream where it was previously saved. </summary> <param name="pStm"> Stream from which the object is loaded. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.ParseDisplayName(System.Runtime.InteropServices.UCOMIBindCtx,System.Runtime.InteropServices.UCOMIMoniker,System.String,System.Int32@,System.Runtime.InteropServices.UCOMIMoniker@)"> <summary> Reads as many characters of the specified display name as it understands and builds a moniker corresponding to the portion read. </summary> <param name="pbc"> A reference to the bind context to be used in this binding operation. </param> <param name="pmkToLeft"> A reference to the moniker that has been built out of the display name up to this point. </param> <param name="pszDisplayName"> A reference to the string containing the remaining display name to parse. </param> <param name="pchEaten"> On successful return, contains the number of characters in <paramref name="pszDisplayName" /> that were consumed in this step. </param> <param name="ppmkOut"> Reference to the moniker that was built from <paramref name="pszDisplayName" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.Reduce(System.Runtime.InteropServices.UCOMIBindCtx,System.Int32,System.Runtime.InteropServices.UCOMIMoniker@,System.Runtime.InteropServices.UCOMIMoniker@)"> <summary> Returns a reduced moniker which is another moniker that refers to the same object as this moniker but can be bound with equal or greater efficiency. </summary> <param name="pbc"> A reference to the IBindCtx interface on the bind context to be used in this binding operation. </param> <param name="dwReduceHowFar"> Specifies how far this moniker should be reduced. </param> <param name="ppmkToLeft"> A reference to the moniker to the left of this moniker. </param> <param name="ppmkReduced"> On successful return, a reference to the reduced form of this moniker, which can be null if an error occurs or if this moniker is reduced to nothing. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.RelativePathTo(System.Runtime.InteropServices.UCOMIMoniker,System.Runtime.InteropServices.UCOMIMoniker@)"> <summary> Supplies a moniker that, when appended to this moniker (or one with a similar structure), yields the specified moniker. </summary> <param name="pmkOther"> A reference to the moniker to which a relative path should be taken. </param> <param name="ppmkRelPath"> On successful return, reference to the relative moniker. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIMoniker.Save(System.Runtime.InteropServices.UCOMIStream,System.Boolean)"> <summary> Saves an object to the specified stream. </summary> <param name="pStm"> The stream into which the object is saved. </param> <param name="fClearDirty"> Indicates whether to clear the modified flag after the save is complete. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIPersistFile"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IPersistFile" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIPersistFile.GetClassID(System.Guid@)"> <summary> Retrieves the class identifier (CLSID) of an object. </summary> <param name="pClassID"> On successful return, a reference to the CLSID. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIPersistFile.GetCurFile(System.String@)"> <summary> Retrieves either the absolute path to current working file of the object, or if there is no current working file, the default filename prompt of the object. </summary> <param name="ppszFileName"> The address of a pointer to a zero-terminated string containing the path for the current file, or the default filename prompt (such as *.txt). </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIPersistFile.IsDirty"> <summary> Checks an object for changes since it was last saved to its current file. </summary> <returns>S_OK if the file has changed since it was last saved; S_FALSE if the file has not changed since it was last saved. </returns> </member> <member name="M:System.Runtime.InteropServices.UCOMIPersistFile.Load(System.String,System.Int32)"> <summary> Opens the specified file and initializes an object from the file contents. </summary> <param name="pszFileName"> A zero-terminated string containing the absolute path of the file to open. </param> <param name="dwMode"> A combination of values from the STGM enumeration to indicate the access mode in which to open <paramref name="pszFileName" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIPersistFile.Save(System.String,System.Boolean)"> <summary> Saves a copy of the object into the specified file. </summary> <param name="pszFileName"> A zero-terminated string containing the absolute path of the file to which the object is saved. </param> <param name="fRemember"> Indicates whether <paramref name="pszFileName" /> is to be used as the current working file. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIPersistFile.SaveCompleted(System.String)"> <summary> Notifies the object that it can write to its file. </summary> <param name="pszFileName"> The absolute path of the file where the object was previously saved. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIRunningObjectTable"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IRunningObjectTable" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIRunningObjectTable.EnumRunning(System.Runtime.InteropServices.UCOMIEnumMoniker@)"> <summary> Enumerates the objects currently registered as running. </summary> <param name="ppenumMoniker"> On successful return, the new enumerator for the ROT. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIRunningObjectTable.GetObject(System.Runtime.InteropServices.UCOMIMoniker,System.Object@)"> <summary> Returns the registered object if the supplied object name is registered as running. </summary> <param name="pmkObjectName"> Reference to the moniker to search for in the ROT. </param> <param name="ppunkObject"> On successful return, contains the requested running object. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIRunningObjectTable.GetTimeOfLastChange(System.Runtime.InteropServices.UCOMIMoniker,System.Runtime.InteropServices.FILETIME@)"> <summary> Searches for this moniker in the ROT and reports the recorded time of change, if present. </summary> <param name="pmkObjectName"> Reference to the moniker to search for in the ROT. </param> <param name="pfiletime"> On successful return, contains the objects last change time. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIRunningObjectTable.IsRunning(System.Runtime.InteropServices.UCOMIMoniker)"> <summary> Determines if the specified moniker is currently registered in the Running Object Table. </summary> <param name="pmkObjectName"> Reference to the moniker to search for in the Running Object Table. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIRunningObjectTable.NoteChangeTime(System.Int32,System.Runtime.InteropServices.FILETIME@)"> <summary> Makes a note of the time that a particular object has changed so IMoniker::GetTimeOfLastChange can report an appropriate change time. </summary> <param name="dwRegister"> The ROT entry of the changed object. </param> <param name="pfiletime"> Reference to the object's last change time. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIRunningObjectTable.Register(System.Int32,System.Object,System.Runtime.InteropServices.UCOMIMoniker,System.Int32@)"> <summary> Registers that the supplied object has entered the running state. </summary> <param name="grfFlags"> Specifies whether the Running Object Table's (ROT) reference to <paramref name="punkObject" /> is weak or strong, and controls access to the object through its entry in the ROT. </param> <param name="punkObject"> Reference to the object being registered as running. </param> <param name="pmkObjectName"> Reference to the moniker that identifies <paramref name="punkObject" />. </param> <param name="pdwRegister"> Reference to a 32-bit value that can be used to identify this ROT entry in subsequent calls to <see cref="M:System.Runtime.InteropServices.UCOMIRunningObjectTable.Revoke(System.Int32)" /> or <see cref="M:System.Runtime.InteropServices.UCOMIRunningObjectTable.NoteChangeTime(System.Int32,System.Runtime.InteropServices.FILETIME@)" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIRunningObjectTable.Revoke(System.Int32)"> <summary> Unregisters the specified object from the ROT. </summary> <param name="dwRegister"> The ROT entry to revoke. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMIStream"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.IStream" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.Clone(System.Runtime.InteropServices.UCOMIStream@)"> <summary> Creates a new stream object with its own seek pointer that references the same bytes as the original stream. </summary> <param name="ppstm"> On successful return, contains the new stream object. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.Commit(System.Int32)"> <summary> Ensures that any changes made to a stream object open in transacted mode are reflected in the parent storage. </summary> <param name="grfCommitFlags"> Controls how the changes for the stream object are committed. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.CopyTo(System.Runtime.InteropServices.UCOMIStream,System.Int64,System.IntPtr,System.IntPtr)"> <summary> Copies a specified number of bytes from the current seek pointer in the stream to the current seek pointer in another stream. </summary> <param name="pstm"> Reference to the destination stream. </param> <param name="cb"> The number of bytes to copy from the source stream. </param> <param name="pcbRead"> On successful return, contains the actual number of bytes read from the source. </param> <param name="pcbWritten"> On successful return, contains the actual number of bytes written to the destination. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.LockRegion(System.Int64,System.Int64,System.Int32)"> <summary> Restricts access to a specified range of bytes in the stream. </summary> <param name="libOffset"> The byte offset for the beginning of the range. </param> <param name="cb"> The length of the range, in bytes, to restrict. </param> <param name="dwLockType"> The requested restrictions on accessing the range. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.Read(System.Byte[],System.Int32,System.IntPtr)"> <summary> Reads a specified number of bytes from the stream object into memory starting at the current seek pointer. </summary> <param name="pv"> On successful return, contains the data read frtom the stream. </param> <param name="cb"> The number of bytes to read from the stream object. </param> <param name="pcbRead"> Pointer to a ULONG variable that receives the actual number of bytes read from the stream object. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.Revert"> <summary> Discards all changes that have been made to a transacted stream since the last <see cref="M:System.Runtime.InteropServices.UCOMIStream.Commit(System.Int32)" /> call. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.Seek(System.Int64,System.Int32,System.IntPtr)"> <summary> Changes the seek pointer to a new location relative to the beginning of the stream, to the end of the stream, or to the current seek pointer. </summary> <param name="dlibMove"> Displacement to add to <paramref name="dwOrigin" />. </param> <param name="dwOrigin"> Specifies the origin of the seek. The origin can be the beginning of the file, the current seek pointer, or the end of the file. </param> <param name="plibNewPosition"> On successful return, contains the offset of the seek pointer from the beginning of the stream. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.SetSize(System.Int64)"> <summary> Changes the size of the stream object. </summary> <param name="libNewSize"> Specifies the new size of the stream as a number of bytes. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.Stat(System.Runtime.InteropServices.STATSTG@,System.Int32)"> <summary> Retrieves the <see cref="T:System.Runtime.InteropServices.STATSTG" /> structure for this stream. </summary> <param name="pstatstg"> On successful return, contains a STATSTG structure which describes this stream object. </param> <param name="grfStatFlag"> Specifies some of the members in the STATSTG structure that this method does not return, thus saving some memory allocation operations. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.UnlockRegion(System.Int64,System.Int64,System.Int32)"> <summary> Removes the access restriction on a range of bytes previously restricted with <see cref="M:System.Runtime.InteropServices.UCOMIStream.LockRegion(System.Int64,System.Int64,System.Int32)" />. </summary> <param name="libOffset"> The byte offset for the beginning of the range. </param> <param name="cb"> The length, in bytes, of the range to restrict. </param> <param name="dwLockType"> The access restrictions previously placed on the range. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMIStream.Write(System.Byte[],System.Int32,System.IntPtr)"> <summary> Writes a specified number of bytes into the stream object starting at the current seek pointer. </summary> <param name="pv"> Buffer to write this stream to. </param> <param name="cb"> The number of bytes to write into the stream. </param> <param name="pcbWritten"> On successful return, contains the actual number of bytes written to the stream object. The caller can set this pointer to null, in which case this method does not provide the actual number of bytes written. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMITypeComp"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.ITypeComp" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeComp.Bind(System.String,System.Int32,System.Int16,System.Runtime.InteropServices.UCOMITypeInfo@,System.Runtime.InteropServices.DESCKIND@,System.Runtime.InteropServices.BINDPTR@)"> <summary> Maps a name to a member of a type, or binds global variables and functions contained in a type library. </summary> <param name="szName"> The name to bind. </param> <param name="lHashVal"> A hash value for <paramref name="szName" /> computed by LHashValOfNameSys. </param> <param name="wFlags"> A flags word containing one or more of the invoke flags defined in the INVOKEKIND enumeration. </param> <param name="ppTInfo"> On successful return, a reference to the type description that contains the item to which it is bound, if a FUNCDESC or VARDESC was returned. </param> <param name="pDescKind"> A reference to a DESCKIND enumerator that indicates whether the name bound to is a VARDESC, FUNCDESC, or TYPECOMP. </param> <param name="pBindPtr"> A reference to the bound-to VARDESC, FUNCDESC, or ITypeComp interface. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeComp.BindType(System.String,System.Int32,System.Runtime.InteropServices.UCOMITypeInfo@,System.Runtime.InteropServices.UCOMITypeComp@)"> <summary> Binds to the type descriptions contained within a type library. </summary> <param name="szName"> The name to bind. </param> <param name="lHashVal"> A hash value for <paramref name="szName" /> determined by LHashValOfNameSys. </param> <param name="ppTInfo"> On successful return, a reference to an ITypeInfo of the type to which <paramref name="szName" /> was bound. </param> <param name="ppTComp"> On successful return, a reference to an ITypeComp variable. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMITypeInfo"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.ITypeInfo" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.AddressOfMember(System.Int32,System.Runtime.InteropServices.INVOKEKIND,System.IntPtr@)"> <summary> Retrieves the addresses of static functions or variables, such as those defined in a DLL. </summary> <param name="memid"> Member ID of the static member's address to retrieve. </param> <param name="invKind"> Specifies whether the member is a property, and if so, what kind. </param> <param name="ppv"> On successful return, a reference to the static member. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.CreateInstance(System.Object,System.Guid@,System.Object@)"> <summary> Creates a new instance of a type that describes a component class (coclass). </summary> <param name="pUnkOuter"> Object which acts as the controlling IUnknown. </param> <param name="riid"> The IID of the interface that the caller will use to communicate with the resulting object. </param> <param name="ppvObj"> On successful return, a reference to the created object. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetContainingTypeLib(System.Runtime.InteropServices.UCOMITypeLib@,System.Int32@)"> <summary> Retrieves the type library that contains this type description and its index within that type library. </summary> <param name="ppTLB"> On successful return, a reference to the containing type library. </param> <param name="pIndex"> On successful return, a reference to the index of the type description within the containing type library. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetDllEntry(System.Int32,System.Runtime.InteropServices.INVOKEKIND,System.String@,System.String@,System.Int16@)"> <summary> Retrieves a description or specification of an entry point for a function in a DLL. </summary> <param name="memid"> ID of the member function whose DLL entry description is to be returned. </param> <param name="invKind"> Specifies the kind of member identified by <paramref name="memid" />. </param> <param name="pBstrDllName"> If not null, the function sets <paramref name="pBstrDllName" /> to a BSTR that contains the name of the DLL. </param> <param name="pBstrName"> If not null, the function sets <paramref name="lpbstrName" /> to a BSTR that contains the name of the entry point. </param> <param name="pwOrdinal"> If not null, and the function is defined by an ordinal, then <paramref name="lpwOrdinal" /> is set to point to the ordinal. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)"> <summary> Retrieves the documentation string, the complete Help file name and path, and the context ID for the Help topic for a specified type description. </summary> <param name="index"> ID of the member whose documentation is to be returned. </param> <param name="strName"> On successful return, the name of the item method. </param> <param name="strDocString"> On successful return, the documentation string for the specified item. </param> <param name="dwHelpContext"> On successful return, a reference to the Help context associated with the specified item. </param> <param name="strHelpFile"> On successful return, the fully qualified name of the Help file. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetFuncDesc(System.Int32,System.IntPtr@)"> <summary> Retrieves the <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure that contains information about a specified function. </summary> <param name="index"> Index of the function description to return. </param> <param name="ppFuncDesc"> Reference to a FUNCDESC that describes the specified function. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetIDsOfNames(System.String[],System.Int32,System.Int32[])"> <summary> Maps between member names and member IDs, and parameter names and parameter IDs. </summary> <param name="rgszNames"> On succesful return, an array of names to map. </param> <param name="cNames"> Count of names to map. </param> <param name="pMemId"> Reference to an array in which name mappings are placed. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetImplTypeFlags(System.Int32,System.Int32@)"> <summary> Retrieves the <see cref="T:System.Runtime.InteropServices.IMPLTYPEFLAGS" /> value for one implemented interface or base interface in a type description. </summary> <param name="index"> Index of the implemented interface or base interface. </param> <param name="pImplTypeFlags"> On successful return, a reference to the IMPLTYPEFLAGS enumeration. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetMops(System.Int32,System.String@)"> <summary> Retrieves marshaling information. </summary> <param name="memid"> The member ID that indicates which marshaling information is needed. </param> <param name="pBstrMops"> A reference to the opcode string used in marshaling the fields of the structure described by the referenced type description, or returns null if there is no information to return. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetNames(System.Int32,System.String[],System.Int32,System.Int32@)"> <summary> Retrieves the variable with the specified member ID (or the name of the property or method and its parameters) that correspond to the specified function ID. </summary> <param name="memid"> The ID of the member whose name (or names) is to be returned. </param> <param name="rgBstrNames"> On succesful return, contains the name (or names) associated with the member. </param> <param name="cMaxNames"> Length of the <paramref name="rgBstrNames" /> array. </param> <param name="pcNames"> On succesful return, the number of names in the <paramref name="rgBstrNames" /> array. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetRefTypeInfo(System.Int32,System.Runtime.InteropServices.UCOMITypeInfo@)"> <summary> If a type description references other type descriptions, it retrieves the referenced type descriptions. </summary> <param name="hRef"> Handle to the referenced type description to return. </param> <param name="ppTI"> On successful return, the referenced type description. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetRefTypeOfImplType(System.Int32,System.Int32@)"> <summary> If a type description describes a COM class, it retrieves the type description of the implemented interface types. </summary> <param name="index"> Index of the implemented type whose handle is returned. </param> <param name="href"> Reference to a handle for the implemented interface. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetTypeAttr(System.IntPtr@)"> <summary> Retrieves a <see cref="T:System.Runtime.InteropServices.TYPEATTR" /> structure that contains the attributes of the type description. </summary> <param name="ppTypeAttr"> On successful return, a reference to the structure that contains the attributes of this type description. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetTypeComp(System.Runtime.InteropServices.UCOMITypeComp@)"> <summary> Retrieves the ITypeComp interface for the type description, which enables a client compiler to bind to the type description's members. </summary> <param name="ppTComp"> On successful return, a reference to the UCOMITypeComp of the containing type library. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.GetVarDesc(System.Int32,System.IntPtr@)"> <summary> Retrieves a VARDESC structure that describes the specified variable. </summary> <param name="index"> Index of the variable description to return. </param> <param name="ppVarDesc"> On successful return, a reference to the VARDESC that describes the specified variable. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.Invoke(System.Object,System.Int32,System.Int16,System.Runtime.InteropServices.DISPPARAMS@,System.Object@,System.Runtime.InteropServices.EXCEPINFO@,System.Int32@)"> <summary> Invokes a method, or accesses a property of an object, that implements the interface described by the type description. </summary> <param name="pvInstance"> Reference to the interface described by this type description. </param> <param name="memid"> Identifies the interface member. </param> <param name="wFlags"> Flags describing the context of the invoke call. </param> <param name="pDispParams"> Reference to a structure that contains an array of arguments, an array of DISPIDs for named arguments, and counts of the number of elements in each array. </param> <param name="pVarResult"> Reference to the location at which the result is to be stored. If <paramref name="wFlags" /> specifies DISPATCH_PROPERTYPUT or DISPATCH_PROPERTYPUTREF, <paramref name="pVarResult" /> is ignored. Set to null if no result is desired. </param> <param name="pExcepInfo"> Points to an exception information structure, which is filled in only if DISP_E_EXCEPTION is returned. </param> <param name="puArgErr"> If Invoke returns DISP_E_TYPEMISMATCH, <paramref name="puArgErr" /> indicates the index within <paramref name="rgvarg" /> of the argument with incorrect type. If more than one argument returns an error, <paramref name="puArgErr" /> indicates only the first argument with an error. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.ReleaseFuncDesc(System.IntPtr)"> <summary> Releases a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> previously returned by <see cref="M:System.Runtime.InteropServices.UCOMITypeInfo.GetFuncDesc(System.Int32,System.IntPtr@)" />. </summary> <param name="pFuncDesc"> Reference to the FUNCDESC to release. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.ReleaseTypeAttr(System.IntPtr)"> <summary> Releases a <see cref="T:System.Runtime.InteropServices.TYPEATTR" /> previously returned by <see cref="M:System.Runtime.InteropServices.UCOMITypeInfo.GetTypeAttr(System.IntPtr@)" />. </summary> <param name="pTypeAttr"> Reference to the TYPEATTR to release. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeInfo.ReleaseVarDesc(System.IntPtr)"> <summary> Releases a VARDESC previously returned by <see cref="M:System.Runtime.InteropServices.UCOMITypeInfo.GetVarDesc(System.Int32,System.IntPtr@)" />. </summary> <param name="pVarDesc"> Reference to the VARDESC to release. </param> </member> <member name="T:System.Runtime.InteropServices.UCOMITypeLib"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.ITypeLib" /> instead. </summary> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeLib.FindName(System.String,System.Int32,System.Runtime.InteropServices.UCOMITypeInfo[],System.Int32[],System.Int16@)"> <summary> Finds occurrences of a type description in a type library. </summary> <param name="szNameBuf"> The name to search for. </param> <param name="lHashVal"> A hash value to speed up the search, computed by the LHashValOfNameSys function. If <paramref name="lHashVal" /> is 0, a value is computed. </param> <param name="ppTInfo"> On successful return, an array of pointers to the type descriptions that contain the name specified in <paramref name="szNameBuf" />. </param> <param name="rgMemId"> An array of the MEMBERID 's of the found items; <paramref name="rgMemId" /> [i] is the MEMBERID that indexes into the type description specified by <paramref name="ppTInfo" /> [i]. Cannot be null. </param> <param name="pcFound"> On entry, indicates how many instances to look for. For example, <paramref name="pcFound" /> = 1 can be called to find the first occurrence. The search stops when one instance is found. On exit, indicates the number of instances that were found. If the in and out values of <paramref name="pcFound" /> are identical, there might be more type descriptions that contain the name. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeLib.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)"> <summary> Retrieves the library's documentation string, the complete Help file name and path, and the context identifier for the library Help topic in the Help file. </summary> <param name="index"> Index of the type description whose documentation is to be returned. </param> <param name="strName"> Returns a string that contains the name of the specified item. </param> <param name="strDocString"> Returns a string that contains the documentation string for the specified item. </param> <param name="dwHelpContext"> Returns the Help context identifier associated with the specified item. </param> <param name="strHelpFile"> Returns a string that contains the fully qualified name of the Help file. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeLib.GetLibAttr(System.IntPtr@)"> <summary> Retrieves the structure that contains the library's attributes. </summary> <param name="ppTLibAttr"> On successful return, a structure that contains the library's attributes. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeLib.GetTypeComp(System.Runtime.InteropServices.UCOMITypeComp@)"> <summary> Enables a client compiler to bind to a library's types, variables, constants, and global functions. </summary> <param name="ppTComp"> On successful return, an instance of a UCOMITypeComp instance for this ITypeLib. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeLib.GetTypeInfo(System.Int32,System.Runtime.InteropServices.UCOMITypeInfo@)"> <summary> Retrieves the specified type description in the library. </summary> <param name="index"> Index of the UCOMITypeInfo interface to return. </param> <param name="ppTI"> On successful return, a UCOMITypeInfo describing the type referenced by <paramref name="index" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeLib.GetTypeInfoCount"> <summary> Returns the number of type descriptions in the type library. </summary> <returns> The number of type descriptions in the type library. </returns> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeLib.GetTypeInfoOfGuid(System.Guid@,System.Runtime.InteropServices.UCOMITypeInfo@)"> <summary> Retrieves the type description that corresponds to the specified GUID. </summary> <param name="guid"> IID of the interface of CLSID of the class whose type info is requested. </param> <param name="ppTInfo"> On successful return, the requested ITypeInfo interface. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeLib.GetTypeInfoType(System.Int32,System.Runtime.InteropServices.TYPEKIND@)"> <summary> Retrieves the type of a type description. </summary> <param name="index"> The index of the type description within the type library. </param> <param name="pTKind"> Reference to the TYPEKIND enumeration for the type description. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeLib.IsName(System.String,System.Int32)"> <summary> Indicates whether a passed-in string contains the name of a type or member described in the library. </summary> <returns>true if <paramref name="szNameBuf" /> was found in the type library; otherwise false. </returns> <param name="szNameBuf"> The string to test. </param> <param name="lHashVal"> The hash value of <paramref name="szNameBuf" />. </param> </member> <member name="M:System.Runtime.InteropServices.UCOMITypeLib.ReleaseTLibAttr(System.IntPtr)"> <summary> Releases the <see cref="T:System.Runtime.InteropServices.TYPELIBATTR" /> originally obtained from <see cref="M:System.Runtime.InteropServices.UCOMITypeLib.GetLibAttr(System.IntPtr@)" />. </summary> <param name="pTLibAttr"> The TLIBATTR to release. </param> </member> <member name="T:System.Runtime.InteropServices.UnknownWrapper"> <summary> Wraps objects the marshaler should marshal as a VT_UNKNOWN. </summary> </member> <member name="M:System.Runtime.InteropServices.UnknownWrapper.#ctor(System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.UnknownWrapper" /> class with the object to be wrapped. </summary> <param name="obj"> The object being wrapped. </param> </member> <member name="P:System.Runtime.InteropServices.UnknownWrapper.WrappedObject"> <summary> Gets the object contained by this wrapper. </summary> <returns> The wrapped object. </returns> </member> <member name="T:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute"> <summary> Controls the marshaling behavior of a delegate signature passed as an unmanaged function pointer to or from unmanaged code. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.#ctor(System.Runtime.InteropServices.CallingConvention)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute" /> class with the specified calling convention. </summary> <param name="callingConvention"> The specified calling convention. </param> </member> <member name="F:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.BestFitMapping"> <summary> Enables or disables best-fit mapping behavior when converting Unicode characters to ANSI characters. </summary> </member> <member name="P:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.CallingConvention"> <summary> Gets the value of the calling convention. </summary> <returns> The value of the calling convention specified by the <see cref="M:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.#ctor(System.Runtime.InteropServices.CallingConvention)" /> constructor. </returns> </member> <member name="F:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.CharSet"> <summary> Indicates how to marshal string parameters to the method, and controls name mangling. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.SetLastError"> <summary> Indicates whether the callee calls the SetLastError Win32 API function before returning from the attributed method. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.ThrowOnUnmappableChar"> <summary> Enables or disables the throwing of an exception on an unmappable Unicode character that is converted to an ANSI "?" character. </summary> </member> <member name="T:System.Runtime.InteropServices.UnmanagedType"> <summary> Identifies how to marshal parameters or fields to unmanaged code. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.Bool"> <summary> A 4-byte Boolean value (true != 0, false = 0). This is the Win32 BOOL type. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.I1"> <summary> A 1-byte signed integer. You can use this member to transform a Boolean value into a 1-byte, C-style bool (true = 1, false = 0). </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.U1"> <summary> A 1-byte unsigned integer. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.I2"> <summary> A 2-byte signed integer. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.U2"> <summary> A 2-byte unsigned integer. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.I4"> <summary> A 4-byte signed integer. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.U4"> <summary> A 4-byte unsigned integer. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.I8"> <summary> An 8-byte signed integer. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.U8"> <summary> An 8-byte unsigned integer. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.R4"> <summary> A 4-byte floating point number. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.R8"> <summary> An 8-byte floating point number. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.Currency"> <summary> Used on a <see cref="T:System.Decimal" /> to marshal the decimal value as a COM currency type instead of as a Decimal. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.BStr"> <summary> A Unicode character string that is a length-prefixed double byte. You can use this member, which is the default string in COM, on the <see cref="T:System.String" /> data type. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.LPStr"> <summary> A single byte, null-terminated ANSI character string. You can use this member on the <see cref="T:System.String" /> or <see cref="T:System.Text.StringBuilder" /> data types </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.LPWStr"> <summary> A 2-byte, null-terminated Unicode character string. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.LPTStr"> <summary> A platform-dependent character string: ANSI on Windows 98 and Unicode on Windows NT and Windows XP. This value is only supported for platform invoke, and not COM interop, because exporting a string of type LPTStr is not supported. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.ByValTStr"> <summary> Used for in-line, fixed-length character arrays that appear within a structure. The character type used with <see cref="F:System.Runtime.InteropServices.UnmanagedType.ByValTStr" /> is determined by the <see cref="T:System.Runtime.InteropServices.CharSet" /> argument of the <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> applied to the containing structure. Always use the <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeConst" /> field to indicate the size of the array. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.IUnknown"> <summary> A COM IUnknown pointer. You can use this member on the <see cref="T:System.Object" /> data type. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.IDispatch"> <summary> A COM IDispatch pointer (Object in Microsoft Visual Basic 6.0). </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.Struct"> <summary> A VARIANT, which is used to marshal managed formatted classes and value types. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.Interface"> <summary> A COM interface pointer. The <see cref="T:System.Guid" /> of the interface is obtained from the class metadata. Use this member to specify the exact interface type or the default interface type if you apply it to a class. This member produces <see cref="F:System.Runtime.InteropServices.UnmanagedType.IUnknown" /> behavior when you apply it to the <see cref="T:System.Object" /> data type. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.SafeArray"> <summary> A SafeArray is a self-describing array that carries the type, rank, and bounds of the associated array data. You can use this member with the <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.SafeArraySubType" /> field to override the default element type. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.ByValArray"> <summary> When <see cref="P:System.Runtime.InteropServices.MarshalAsAttribute.Value" /> is set to ByValArray, the <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeConst" /> must be set to indicate the number of elements in the array. The <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.ArraySubType" /> field can optionally contain the <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> of the array elements when it is necessary to differentiate among string types. You can only use this <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> on an array that appear as fields in a structure. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.SysInt"> <summary> A platform-dependent, signed integer. 4-bytes on 32 bit Windows, 8-bytes on 64 bit Windows. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.SysUInt"> <summary> A platform-dependent, unsigned integer. 4-bytes on 32 bit Windows, 8-bytes on 64 bit Windows. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.VBByRefStr"> <summary> Allows Visual Basic 2005 to change a string in unmanaged code, and have the results reflected in managed code. This value is only supported for platform invoke. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.AnsiBStr"> <summary> An ANSI character string that is a length prefixed, single byte. You can use this member on the <see cref="T:System.String" /> data type. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.TBStr"> <summary> A length-prefixed, platform-dependent char string. ANSI on Windows 98, Unicode on Windows NT. You rarely use this BSTR-like member. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.VariantBool"> <summary> A 2-byte, OLE-defined VARIANT_BOOL type (true = -1, false = 0). </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.FunctionPtr"> <summary> An integer that can be used as a C-style function pointer. You can use this member on a <see cref="T:System.Delegate" /> data type or a type that inherits from a <see cref="T:System.Delegate" />. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.AsAny"> <summary> A dynamic type that determines the type of an object at run time and marshals the object as that type. Valid for platform invoke methods only. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.LPArray"> <summary> A pointer to the first element of a C-style array. When marshaling from managed to unmanaged, the length of the array is determined by the length of the managed array. When marshaling from unmanaged to managed, the length of the array is determined from the <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeConst" /> and the <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeParamIndex" /> fields, optionally followed by the unmanaged type of the elements within the array when it is necessary to differentiate among string types. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.LPStruct"> <summary> A pointer to a C-style structure that you use to marshal managed formatted classes. Valid for platform invoke methods only. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.CustomMarshaler"> <summary> Specifies the custom marshaler class when used with <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalType" /> or <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalTypeRef" />. The <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalCookie" /> field can be used to pass additional information to the custom marshaler. You can use this member on any reference type. </summary> </member> <member name="F:System.Runtime.InteropServices.UnmanagedType.Error"> <summary> This native type associated with an <see cref="F:System.Runtime.InteropServices.UnmanagedType.I4" /> or a <see cref="F:System.Runtime.InteropServices.UnmanagedType.U4" /> causes the parameter to be exported as a HRESULT in the exported type library. </summary> </member> <member name="T:System.Runtime.InteropServices.VARDESC"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.VARDESC" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.VARDESC.elemdescVar"> <summary> Contains the variable type. </summary> </member> <member name="F:System.Runtime.InteropServices.VARDESC.lpstrSchema"> <summary> This field is reserved for future use. </summary> </member> <member name="F:System.Runtime.InteropServices.VARDESC.memid"> <summary> Indicates the member ID of a variable. </summary> </member> <member name="F:System.Runtime.InteropServices.VARDESC.varkind"> <summary> Defines how a variable should be marshaled. </summary> </member> <member name="F:System.Runtime.InteropServices.VARDESC.wVarFlags"> <summary> Defines the properties of a variable. </summary> </member> <member name="T:System.Runtime.InteropServices.VARDESC.DESCUNION"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.VARDESC.DESCUNION" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.VARDESC.DESCUNION.lpvarValue"> <summary> Describes a symbolic constant. </summary> </member> <member name="F:System.Runtime.InteropServices.VARDESC.DESCUNION.oInst"> <summary> Indicates the offset of this variable within the instance. </summary> </member> <member name="T:System.Runtime.InteropServices.VarEnum"> <summary> Indicates how to marshal the array elements when an array is marshaled from managed to unmanaged code as a <see cref="F:System.Runtime.InteropServices.UnmanagedType.SafeArray" />. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_EMPTY"> <summary> Indicates that a value was not specified. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_NULL"> <summary> Indicates a null value, similar to a null value in SQL. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_I2"> <summary> Indicates a short integer. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_I4"> <summary> Indicates a long integer. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_R4"> <summary> Indicates a float value. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_R8"> <summary> Indicates a double value. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_CY"> <summary> Indicates a currency value. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_DATE"> <summary> Indicates a DATE value. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_BSTR"> <summary> Indicates a BSTR string. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_DISPATCH"> <summary> Indicates an IDispatch pointer. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_ERROR"> <summary> Indicates an SCODE. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_BOOL"> <summary> Indicates a Boolean value. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_VARIANT"> <summary> Indicates a VARIANT far pointer. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_UNKNOWN"> <summary> Indicates an IUnknown pointer. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_DECIMAL"> <summary> Indicates a decimal value. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_I1"> <summary> Indicates a char value. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_UI1"> <summary> Indicates a byte. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_UI2"> <summary> Indicates an unsignedshort. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_UI4"> <summary> Indicates an unsignedlong. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_I8"> <summary> Indicates a 64-bit integer. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_UI8"> <summary> Indicates an 64-bit unsigned integer. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_INT"> <summary> Indicates an integer value. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_UINT"> <summary> Indicates an unsigned integer value. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_VOID"> <summary> Indicates a C style void. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_HRESULT"> <summary> Indicates an HRESULT. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_PTR"> <summary> Indicates a pointer type. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_SAFEARRAY"> <summary> Indicates a SAFEARRAY. Not valid in a VARIANT. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_CARRAY"> <summary> Indicates a C style array. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_USERDEFINED"> <summary> Indicates a user defined type. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_LPSTR"> <summary> Indicates a null-terminated string. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_LPWSTR"> <summary> Indicates a wide string terminated by null. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_RECORD"> <summary> Indicates a user defined type. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_FILETIME"> <summary> Indicates a FILETIME value. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_BLOB"> <summary> Indicates length prefixed bytes. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_STREAM"> <summary> Indicates that the name of a stream follows. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_STORAGE"> <summary> Indicates that the name of a storage follows. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_STREAMED_OBJECT"> <summary> Indicates that a stream contains an object. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_STORED_OBJECT"> <summary> Indicates that a storage contains an object. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_BLOB_OBJECT"> <summary> Indicates that a blob contains an object. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_CF"> <summary> Indicates the clipboard format. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_CLSID"> <summary> Indicates a class ID. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_VECTOR"> <summary> Indicates a simple, counted array. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_ARRAY"> <summary> Indicates a SAFEARRAY pointer. </summary> </member> <member name="F:System.Runtime.InteropServices.VarEnum.VT_BYREF"> <summary> Indicates that a value is a reference. </summary> </member> <member name="T:System.Runtime.InteropServices.VARFLAGS"> <summary> Use <see cref="T:System.Runtime.InteropServices.ComTypes.VARFLAGS" /> instead. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FREADONLY"> <summary> Assignment to the variable should not be allowed. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FSOURCE"> <summary> The variable returns an object that is a source of events. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FBINDABLE"> <summary> The variable supports data binding. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FREQUESTEDIT"> <summary> When set, any attempt to directly change the property results in a call to IPropertyNotifySink::OnRequestEdit. The implementation of OnRequestEdit determines if the change is accepted. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FDISPLAYBIND"> <summary> The variable is displayed to the user as bindable. <see cref="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FBINDABLE" /> must also be set. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FDEFAULTBIND"> <summary> The variable is the single property that best represents the object. Only one variable in type information can have this attribute. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FHIDDEN"> <summary> The variable should not be displayed to the user in a browser, although it exists and is bindable. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FRESTRICTED"> <summary> The variable should not be accessible from macro languages. This flag is intended for system-level variables or variables that you do not want type browsers to display. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FDEFAULTCOLLELEM"> <summary> Permits an optimization in which the compiler looks for a member named "xyz" on the type of "abc". If such a member is found and is flagged as an accessor function for an element of the default collection, then a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FUIDEFAULT"> <summary> The variable is the default display in the user interface. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FNONBROWSABLE"> <summary> The variable appears in an object browser, but not in a properties browser. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FREPLACEABLE"> <summary> Tags the interface as having default behaviors. </summary> </member> <member name="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FIMMEDIATEBIND"> <summary> The variable is mapped as individual bindable properties. </summary> </member> <member name="T:System.Runtime.InteropServices.VariantWrapper"> <summary> Marshals data of type VT_VARIANT | VT_BYREF from managed to unmanaged code. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.InteropServices.VariantWrapper.#ctor(System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.VariantWrapper" /> class for the specified <see cref="T:System.Object" /> parameter. </summary> <param name="obj"> The object to marshal. </param> </member> <member name="P:System.Runtime.InteropServices.VariantWrapper.WrappedObject"> <summary> Gets the object wrapped by the <see cref="T:System.Runtime.InteropServices.VariantWrapper" /> object. </summary> <returns> The object wrapped by the <see cref="T:System.Runtime.InteropServices.VariantWrapper" /> object. </returns> </member> <member name="T:System.Runtime.InteropServices.AllowReversePInvokeCallsAttribute"> <summary> Allows an unmanaged method to call a managed method. </summary> </member> <member name="M:System.Runtime.InteropServices.AllowReversePInvokeCallsAttribute.#ctor"></member> <member name="T:System.Runtime.InteropServices.ComTypes.BIND_OPTS"> <summary> Stores the parameters that are used during a moniker binding operation. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.BIND_OPTS.cbStruct"> <summary> Specifies the size, in bytes, of the BIND_OPTS structure. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.BIND_OPTS.dwTickCountDeadline"> <summary> Indicates the amount of time (clock time in milliseconds, as returned by the GetTickCount function) that the caller specified to complete the binding operation. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.BIND_OPTS.grfFlags"> <summary> Controls aspects of moniker binding operations. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.BIND_OPTS.grfMode"> <summary> Represents flags that should be used when opening the file that contains the object identified by the moniker. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.BINDPTR"> <summary> Contains a pointer to a bound-to <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure, <see cref="T:System.Runtime.InteropServices.VARDESC" /> structure, or an ITypeComp interface. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.BINDPTR.lpfuncdesc"> <summary> Represents a pointer to a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.BINDPTR.lptcomp"> <summary> Represents a pointer to an <see cref="T:System.Runtime.InteropServices.ComTypes.ITypeComp" /> interface. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.BINDPTR.lpvardesc"> <summary> Represents a pointer to a <see cref="T:System.Runtime.InteropServices.VARDESC" /> structure. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.CALLCONV"> <summary> Identifies the calling convention used by a method described in a METHODDATA structure. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_CDECL"> <summary> Indicates that the C declaration (CDECL) calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_MSCPASCAL"> <summary> Indicates that the MSC Pascal (MSCPASCAL) calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_PASCAL"> <summary> Indicates that the Pascal calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_MACPASCAL"> <summary> Indicates that the Macintosh Pascal (MACPASCAL) calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_STDCALL"> <summary> Indicates that the standard calling convention (STDCALL) is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_RESERVED"> <summary> This value is reserved for future use. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_SYSCALL"> <summary> Indicates that the standard SYSCALL calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_MPWCDECL"> <summary> Indicates that the Macintosh Programmers' Workbench (MPW) CDECL calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_MPWPASCAL"> <summary> Indicates that the Macintosh Programmers' Workbench (MPW) PASCAL calling convention is used for a method. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_MAX"> <summary> Indicates the end of the <see cref="T:System.Runtime.InteropServices.ComTypes.CALLCONV" /> enumeration. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.CONNECTDATA"> <summary> Describes a connection that exists to a given connection point. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CONNECTDATA.dwCookie"> <summary> Represents a connection token that is returned from a call to <see cref="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Advise(System.Object,System.Int32@)" />. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.CONNECTDATA.pUnk"> <summary> Represents a pointer to the IUnknown interface on a connected advisory sink. The caller must call IUnknown::Release on this pointer when the CONNECTDATA structure is no longer needed. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.DESCKIND"> <summary> Identifies the type description being bound to. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_NONE"> <summary> Indicates that no match was found. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_FUNCDESC"> <summary> Indicates that a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure was returned. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_VARDESC"> <summary> Indicates that a VARDESC was returned. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_TYPECOMP"> <summary> Indicates that a TYPECOMP was returned. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_IMPLICITAPPOBJ"> <summary> Indicates that an IMPLICITAPPOBJ was returned. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_MAX"> <summary> Indicates an end-of-enumeration marker. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.DISPPARAMS"> <summary> Contains the arguments passed to a method or property by IDispatch::Invoke. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.DISPPARAMS.cArgs"> <summary> Represents the count of arguments. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.DISPPARAMS.cNamedArgs"> <summary> Represents the count of named arguments </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.DISPPARAMS.rgdispidNamedArgs"> <summary> Represents the dispatch IDs of named arguments. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.DISPPARAMS.rgvarg"> <summary> Represents a reference to the array of arguments. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.ELEMDESC"> <summary> Contains the type description and process transfer information for a variable, function, or a function parameter. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.ELEMDESC.desc"> <summary> Contains information about an element. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.ELEMDESC.tdesc"> <summary> Identifies the type of the element. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.ELEMDESC.DESCUNION"> <summary> Contains information about an element. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.ELEMDESC.DESCUNION.idldesc"> <summary> Contains information for remoting the element. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.ELEMDESC.DESCUNION.paramdesc"> <summary> Contains information about the parameter. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.EXCEPINFO"> <summary> Describes the exceptions that occur during IDispatch::Invoke. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.bstrDescription"> <summary> Describes the error intended for the customer. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.bstrHelpFile"> <summary> Contains the fully-qualified drive, path, and file name of a Help file that contains more information about the error. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.bstrSource"> <summary> Indicates the name of the source of the exception. Typically, this is an application name. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.dwHelpContext"> <summary> Indicates the Help context ID of the topic within the Help file. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.pfnDeferredFillIn"> <summary> Represents a pointer to a function that takes an <see cref="T:System.Runtime.InteropServices.EXCEPINFO" /> structure as an argument and returns an HRESULT value. If deferred fill-in is not desired, this field is set to null. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.pvReserved"> <summary> This field is reserved; it must be set to null. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.scode"> <summary> A return value describing the error. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.wCode"> <summary> Represents an error code identifying the error. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.wReserved"> <summary> This field is reserved; it must be set to 0. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.FILETIME"> <summary> Represents the number of 100-nanosecond intervals since January 1, 1601. This structure is a 64-bit value. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FILETIME.dwHighDateTime"> <summary> Specifies the high 32 bits of the FILETIME. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FILETIME.dwLowDateTime"> <summary> Specifies the low 32 bits of the FILETIME. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.FUNCDESC"> <summary> Defines a function description. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.callconv"> <summary> Specifies the calling convention of a function. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.cParams"> <summary> Counts the total number of parameters. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.cParamsOpt"> <summary> Counts the optional parameters. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.cScodes"> <summary> Counts the permitted return values. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.elemdescFunc"> <summary> Contains the return type of the function. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.funckind"> <summary> Specifies whether the function is virtual, static, or dispatch-only. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.invkind"> <summary> Specifies the type of a property function. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.lprgelemdescParam"> <summary> Indicates the size of <see cref="F:System.Runtime.InteropServices.FUNCDESC.cParams" />. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.lprgscode"> <summary> Stores the count of errors a function can return on a 16-bit system. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.memid"> <summary> Identifies the function member ID. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.oVft"> <summary> Specifies the offset in the VTBL for <see cref="F:System.Runtime.InteropServices.FUNCKIND.FUNC_VIRTUAL" />. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.wFuncFlags"> <summary> Indicates the <see cref="T:System.Runtime.InteropServices.FUNCFLAGS" /> of a function. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.FUNCFLAGS"> <summary> Identifies the constants that define the properties of a function. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FRESTRICTED"> <summary> The function should not be accessible from macro languages. This flag is intended for system-level functions or functions that type browsers should not display. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FSOURCE"> <summary> The function returns an object that is a source of events. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FBINDABLE"> <summary> The function that supports data binding. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FREQUESTEDIT"> <summary> When set, any call to a method that sets the property results first in a call to IPropertyNotifySink::OnRequestEdit. The implementation of OnRequestEdit determines if the call is allowed to set the property. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FDISPLAYBIND"> <summary> The function that is displayed to the user as bindable. <see cref="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FBINDABLE" /> must also be set. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FDEFAULTBIND"> <summary> The function that best represents the object. Only one function in a type can have this attribute. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FHIDDEN"> <summary> The function should not be displayed to the user, although it exists and is bindable. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FUSESGETLASTERROR"> <summary> The function supports GetLastError. If an error occurs during the function, the caller can call GetLastError to retrieve the error code. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FDEFAULTCOLLELEM"> <summary> Permits an optimization in which the compiler looks for a member named "xyz" on the type of "abc". If such a member is found, and is flagged as an accessor function for an element of the default collection, a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FUIDEFAULT"> <summary> The type information member is the default member for display in the user interface. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FNONBROWSABLE"> <summary> The property appears in an object browser, but not in a properties browser. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FREPLACEABLE"> <summary> Tags the interface as having default behaviors. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FIMMEDIATEBIND"> <summary> Mapped as individual bindable properties. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.FUNCKIND"> <summary> Defines how to access a function. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCKIND.FUNC_VIRTUAL"> <summary> The function is accessed in the same way as <see cref="F:System.Runtime.InteropServices.FUNCKIND.FUNC_PUREVIRTUAL" />, except the function has an implementation. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCKIND.FUNC_PUREVIRTUAL"> <summary> The function is accessed through the virtual function table (VTBL), and takes an implicit this pointer. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCKIND.FUNC_NONVIRTUAL"> <summary> The function is accessed by static address and takes an implicit this pointer. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCKIND.FUNC_STATIC"> <summary> The function is accessed by static address and does not take an implicit this pointer. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.FUNCKIND.FUNC_DISPATCH"> <summary> The function can be accessed only through IDispatch. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IBindCtx"> <summary> Provides the managed definition of the IBindCtx interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.EnumObjectParam(System.Runtime.InteropServices.ComTypes.IEnumString@)"> <summary> Enumerates the strings that are the keys of the internally maintained table of contextual object parameters. </summary> <param name="ppenum"> When this method returns, contains a reference to the object parameter enumerator. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.GetBindOptions(System.Runtime.InteropServices.ComTypes.BIND_OPTS@)"> <summary> Returns the current binding options stored in the current bind context. </summary> <param name="pbindopts"> A pointer to the structure to receive the binding options. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.GetObjectParam(System.String,System.Object@)"> <summary> Looks up the given key in the internally maintained table of contextual object parameters and returns the corresponding object, if one exists. </summary> <param name="pszKey"> The name of the object to search for. </param> <param name="ppunk"> When this method returns, contains the object interface pointer. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.GetRunningObjectTable(System.Runtime.InteropServices.ComTypes.IRunningObjectTable@)"> <summary> Returns access to the Running Object Table (ROT) relevant to this binding process. </summary> <param name="pprot"> When this method returns, contains a reference to the Running Object Table (ROT). This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.RegisterObjectBound(System.Object)"> <summary> Registers the passed object as one of the objects that has been bound during a moniker operation and that should be released when the operation is complete. </summary> <param name="punk"> The object to register for release. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.RegisterObjectParam(System.String,System.Object)"> <summary> Registers the specified object pointer under the specified name in the internally maintained table of object pointers. </summary> <param name="pszKey"> The name to register <paramref name="punk" /> with. </param> <param name="punk"> The object to register. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.ReleaseBoundObjects"> <summary> Releases all the objects currently registered with the bind context by using the <see cref="M:System.Runtime.InteropServices.ComTypes.IBindCtx.RegisterObjectBound(System.Object)" /> method. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.RevokeObjectBound(System.Object)"> <summary> Removes the object from the set of registered objects that need to be released. </summary> <param name="punk"> The object to unregister for release. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.RevokeObjectParam(System.String)"> <summary> Revokes the registration of the object currently found under the specified key in the internally maintained table of contextual object parameters, if that key is currently registered. </summary> <returns> An S_OKHRESULT value if the specified key was successfully removed from the table; otherwise, an S_FALSEHRESULT value. </returns> <param name="pszKey"> The key to unregister. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.SetBindOptions(System.Runtime.InteropServices.ComTypes.BIND_OPTS@)"> <summary> Stores a block of parameters in the bind context. These parameters will apply to later UCOMIMoniker operations that use this bind context. </summary> <param name="pbindopts"> The structure containing the binding options to set. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IConnectionPoint"> <summary> Provides the managed definition of the IConnectionPoint interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Advise(System.Object,System.Int32@)"> <summary> Establishes an advisory connection between the connection point and the caller's sink object. </summary> <param name="pUnkSink"> A reference to the sink to receive calls for the outgoing interface managed by this connection point. </param> <param name="pdwCookie"> When this method returns, contains the connection cookie. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.EnumConnections(System.Runtime.InteropServices.ComTypes.IEnumConnections@)"> <summary> Creates an enumerator object for iteration through the connections that exist to this connection point. </summary> <param name="ppEnum"> When this method returns, contains the newly created enumerator. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.GetConnectionInterface(System.Guid@)"> <summary> Returns the IID of the outgoing interface managed by this connection point. </summary> <param name="pIID"> When this parameter returns, contains the IID of the outgoing interface managed by this connection point. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.GetConnectionPointContainer(System.Runtime.InteropServices.ComTypes.IConnectionPointContainer@)"> <summary> Retrieves the IConnectionPointContainer interface pointer to the connectable object that conceptually owns this connection point. </summary> <param name="ppCPC"> When this parameter returns, contains the connectable object's IConnectionPointContainer interface. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Unadvise(System.Int32)"> <summary> Terminates an advisory connection previously established through the <see cref="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Advise(System.Object,System.Int32@)" /> method. </summary> <param name="dwCookie"> The connection cookie previously returned from the <see cref="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Advise(System.Object,System.Int32@)" /> method. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IConnectionPointContainer"> <summary> Provides the managed definition of the IConnectionPointContainer interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPointContainer.EnumConnectionPoints(System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints@)"> <summary> Creates an enumerator of all the connection points supported in the connectable object, one connection point per IID. </summary> <param name="ppEnum"> When this method returns, contains the interface pointer of the enumerator. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPointContainer.FindConnectionPoint(System.Guid@,System.Runtime.InteropServices.ComTypes.IConnectionPoint@)"> <summary> Asks the connectable object if it has a connection point for a particular IID, and if so, returns the IConnectionPoint interface pointer to that connection point. </summary> <param name="riid"> A reference to the outgoing interface IID whose connection point is being requested. </param> <param name="ppCP"> When this method returns, contains the connection point that manages the outgoing interface <paramref name="riid" />. This parameter is passed uninitialized. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IDLDESC"> <summary> Contains information needed for transferring a structure element, parameter, or function return value between processes. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IDLDESC.dwReserved"> <summary> Reserved; set to null. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IDLDESC.wIDLFlags"> <summary> Indicates an <see cref="T:System.Runtime.InteropServices.IDLFLAG" /> value describing the type. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IDLFLAG"> <summary> Describes how to transfer a structure element, parameter, or function return value between processes. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IDLFLAG.IDLFLAG_NONE"> <summary> Does not specify whether the parameter passes or receives information. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IDLFLAG.IDLFLAG_FIN"> <summary> The parameter passes information from the caller to the callee. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IDLFLAG.IDLFLAG_FOUT"> <summary> The parameter returns information from the callee to the caller. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IDLFLAG.IDLFLAG_FLCID"> <summary> The parameter is the local identifier of a client application. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IDLFLAG.IDLFLAG_FRETVAL"> <summary> The parameter is the return value of the member. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints"> <summary> Manages the definition of the IEnumConnectionPoints interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints.Clone(System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints@)"> <summary> Creates a new enumerator that contains the same enumeration state as the current one. </summary> <param name="ppenum"> When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints.Next(System.Int32,System.Runtime.InteropServices.ComTypes.IConnectionPoint[],System.IntPtr)"> <summary> Retrieves a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of IConnectionPoint references to return in <paramref name="rgelt" />. </param> <param name="rgelt"> When this method returns, contains a reference to the enumerated connections. This parameter is passed uninitialized. </param> <param name="pceltFetched"> When this method returns, contains a reference to the actual number of connections enumerated in <paramref name="rgelt" />. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints.Reset"> <summary> Resets the enumeration sequence to the beginning. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints.Skip(System.Int32)"> <summary> Skips a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to skip in the enumeration. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IEnumConnections"> <summary> Manages the definition of the IEnumConnections interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnections.Clone(System.Runtime.InteropServices.ComTypes.IEnumConnections@)"> <summary> Creates a new enumerator that contains the same enumeration state as the current one. </summary> <param name="ppenum"> When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnections.Next(System.Int32,System.Runtime.InteropServices.ComTypes.CONNECTDATA[],System.IntPtr)"> <summary> Retrieves a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of <see cref="T:System.Runtime.InteropServices.CONNECTDATA" /> structures to return in <paramref name="rgelt" />. </param> <param name="rgelt"> When this method returns, contains a reference to the enumerated connections. This parameter is passed uninitialized. </param> <param name="pceltFetched"> When this method returns, contains a reference to the actual number of connections enumerated in <paramref name="rgelt" />. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnections.Reset"> <summary> Resets the enumeration sequence to the beginning. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnections.Skip(System.Int32)"> <summary> Skips a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to skip in the enumeration. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IEnumMoniker"> <summary> Manages the definition of the IEnumMoniker interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumMoniker.Clone(System.Runtime.InteropServices.ComTypes.IEnumMoniker@)"> <summary> Creates a new enumerator that contains the same enumeration state as the current one. </summary> <param name="ppenum"> When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumMoniker.Next(System.Int32,System.Runtime.InteropServices.ComTypes.IMoniker[],System.IntPtr)"> <summary> Retrieves a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of monikers to return in <paramref name="rgelt" />. </param> <param name="rgelt"> When this method returns, contains a reference to the enumerated monikers. This parameter is passed uninitialized. </param> <param name="pceltFetched"> When this method returns, contains a reference to the actual number of monikers enumerated in <paramref name="rgelt" />. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumMoniker.Reset"> <summary> Resets the enumeration sequence to the beginning. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumMoniker.Skip(System.Int32)"> <summary> Skips a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to skip in the enumeration. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IEnumString"> <summary> Manages the definition of the IEnumString interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumString.Clone(System.Runtime.InteropServices.ComTypes.IEnumString@)"> <summary> Creates a new enumerator that contains the same enumeration state as the current one. </summary> <param name="ppenum"> When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumString.Next(System.Int32,System.String[],System.IntPtr)"> <summary> Retrieves a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of strings to return in <paramref name="rgelt" />. </param> <param name="rgelt"> When this method returns, contains a reference to the enumerated strings. This parameter is passed uninitialized. </param> <param name="pceltFetched"> When this method returns, contains a reference to the actual number of strings enumerated in <paramref name="rgelt" />. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumString.Reset"> <summary> Resets the enumeration sequence to the beginning. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumString.Skip(System.Int32)"> <summary> Skips a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to skip in the enumeration. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IEnumVARIANT"> <summary> Manages the definition of the IEnumVARIANT interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumVARIANT.Clone"> <summary> Creates a new enumerator that contains the same enumeration state as the current one. </summary> <returns> An <see cref="T:System.Runtime.InteropServices.ComTypes.IEnumVARIANT" /> reference to the newly created enumerator. </returns> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumVARIANT.Next(System.Int32,System.Object[],System.IntPtr)"> <summary> Retrieves a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to return in <paramref name="rgelt" />. </param> <param name="rgVar"> When this method returns, contains a reference to the enumerated elements. This parameter is passed uninitialized. </param> <param name="pceltFetched"> When this method returns, contains a reference to the actual number of elements enumerated in <paramref name="rgelt" />. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumVARIANT.Reset"> <summary> Resets the enumeration sequence to the beginning. </summary> <returns> An HRESULT with the value S_OK. </returns> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IEnumVARIANT.Skip(System.Int32)"> <summary> Skips a specified number of items in the enumeration sequence. </summary> <returns>S_OK if the number of elements skipped equals <paramref name="celt" /> parameter; otherwise, S_FALSE. </returns> <param name="celt"> The number of elements to skip in the enumeration. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IMoniker"> <summary> Provides the managed definition of the IMoniker interface, with COM functionality from IPersist and IPersistStream. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.BindToObject(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.Guid@,System.Object@)"> <summary> Uses the moniker to bind to the object that it identifies. </summary> <param name="pbc"> A reference to the IBindCtx interface on the bind context object used in this binding operation. </param> <param name="pmkToLeft"> A reference to the moniker to the left of the current moniker, if the moniker is part of a composite moniker. </param> <param name="riidResult"> The interface identifier (IID) of the interface that the client intends to use to communicate with the object that the moniker identifies. </param> <param name="ppvResult"> When this method returns, contains a reference to the interface requested by <paramref name="riidResult" />. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.BindToStorage(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.Guid@,System.Object@)"> <summary> Retrieves an interface pointer to the storage that contains the object identified by the moniker. </summary> <param name="pbc"> A reference to the IBindCtx interface on the bind context object used during this binding operation. </param> <param name="pmkToLeft"> A reference to the moniker to the left of the current moniker, if the moniker is part of a composite moniker. </param> <param name="riid"> The interface identifier (IID) of the storage interface requested. </param> <param name="ppvObj"> When this method returns, contains a reference to the interface requested by <paramref name="riid" />. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.CommonPrefixWith(System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.IMoniker@)"> <summary> Creates a new moniker based on the common prefix that this moniker shares with another moniker. </summary> <param name="pmkOther"> A reference to the IMoniker interface on another moniker to compare with the current moniker for a common prefix. </param> <param name="ppmkPrefix"> When this method returns, contains the moniker that is the common prefix of the current moniker and <paramref name="pmkOther" />. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.ComposeWith(System.Runtime.InteropServices.ComTypes.IMoniker,System.Boolean,System.Runtime.InteropServices.ComTypes.IMoniker@)"> <summary> Combines the current moniker with another moniker, creating a new composite moniker. </summary> <param name="pmkRight"> A reference to the IMoniker interface on a moniker to append to the end of the current moniker. </param> <param name="fOnlyIfNotGeneric">true to indicate that the caller requires a nongeneric composition. The operation proceeds only if <paramref name="pmkRight" /> is a moniker class that the current moniker can combine with in some way other than forming a generic composite. false to indicate that the method can create a generic composite if necessary. </param> <param name="ppmkComposite"> When this method returns, contains a reference to the resulting composite moniker. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Enum(System.Boolean,System.Runtime.InteropServices.ComTypes.IEnumMoniker@)"> <summary> Supplies a pointer to an enumerator that can enumerate the components of a composite moniker. </summary> <param name="fForward">true to enumerate the monikers from left to right. false to enumerate from right to left. </param> <param name="ppenumMoniker"> When this method returns, contains a reference to the enumerator object for the moniker. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.GetClassID(System.Guid@)"> <summary> Retrieves the class identifier (CLSID) of an object. </summary> <param name="pClassID"> When this method returns, contains the CLSID. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.GetDisplayName(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.String@)"> <summary> Gets the display name, which is a user-readable representation of the current moniker. </summary> <param name="pbc"> A reference to the bind context to use in this operation. </param> <param name="pmkToLeft"> A reference to the moniker to the left of the current moniker, if the moniker is part of a composite moniker. </param> <param name="ppszDisplayName"> When this method returns, contains the display name string. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.GetSizeMax(System.Int64@)"> <summary> Returns the size, in bytes, of the stream needed to save the object. </summary> <param name="pcbSize"> When this method returns, contains a long value indicating the size, in bytes, of the stream needed to save this object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.GetTimeOfLastChange(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.FILETIME@)"> <summary> Provides a number representing the time that the object identified by the current moniker was last changed. </summary> <param name="pbc"> A reference to the bind context to use in this binding operation. </param> <param name="pmkToLeft"> A reference to the moniker to the left of the current moniker, if the moniker is part of a composite moniker. </param> <param name="pFileTime"> When this method returns, contains the time of the last change. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Hash(System.Int32@)"> <summary> Calculates a 32-bit integer using the internal state of the moniker. </summary> <param name="pdwHash"> When this method returns, contains the hash value for this moniker. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Inverse(System.Runtime.InteropServices.ComTypes.IMoniker@)"> <summary> Provides a moniker that, when composed to the right of the current moniker or one of similar structure, composes to nothing. </summary> <param name="ppmk"> When this method returns, contains a moniker that is the inverse of the current moniker. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.IsDirty"> <summary> Checks the object for changes since it was last saved. </summary> <returns> An S_OKHRESULT value if the object has changed; otherwise, an S_FALSEHRESULT value. </returns> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.IsEqual(System.Runtime.InteropServices.ComTypes.IMoniker)"> <summary> Compares the current moniker with a specified moniker and indicates whether they are identical. </summary> <returns> An S_OKHRESULT value if the monikers are identical; otherwise, an S_FALSEHRESULT value. </returns> <param name="pmkOtherMoniker"> A reference to the moniker to use for comparison. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.IsRunning(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.IMoniker)"> <summary> Determines whether the object that is identified by the current moniker is currently loaded and running. </summary> <returns> An S_OKHRESULT value if the moniker is running; an S_FALSEHRESULT value if the moniker is not running; or an E_UNEXPECTEDHRESULT value. </returns> <param name="pbc"> A reference to the bind context to use in this binding operation. </param> <param name="pmkToLeft"> A reference to the moniker to the left of the current moniker if the current moniker is part of a composite. </param> <param name="pmkNewlyRunning"> A reference to the moniker most recently added to the Running Object Table (ROT). </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.IsSystemMoniker(System.Int32@)"> <summary> Indicates whether this moniker is of one of the system-supplied moniker classes. </summary> <returns> An S_OKHRESULT value if the moniker is a system moniker; otherwise, an S_FALSEHRESULT value. </returns> <param name="pdwMksys"> When this method returns, contains a pointer to an integer that is one of the values from the MKSYS enumeration, and refers to one of the COM moniker classes. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Load(System.Runtime.InteropServices.ComTypes.IStream)"> <summary> Initializes an object from the stream where it was previously saved. </summary> <param name="pStm"> The stream that the object is loaded from. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.ParseDisplayName(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.String,System.Int32@,System.Runtime.InteropServices.ComTypes.IMoniker@)"> <summary> Reads as many characters of the specified display name as the <see cref="M:System.Runtime.InteropServices.ComTypes.IMoniker.ParseDisplayName(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.String,System.Int32@,System.Runtime.InteropServices.ComTypes.IMoniker@)" /> understands and builds a moniker corresponding to the portion read. </summary> <param name="pbc"> A reference to the bind context to use in this binding operation. </param> <param name="pmkToLeft"> A reference to the moniker that has been built from the display name up to this point. </param> <param name="pszDisplayName"> A reference to the string containing the remaining display name to parse. </param> <param name="pchEaten"> When this method returns, contains the number of characters that were consumed in parsing <paramref name="pszDisplayName" />. This parameter is passed uninitialized. </param> <param name="ppmkOut"> When this method returns, contains a reference to the moniker that was built from <paramref name="pszDisplayName" />. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Reduce(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Int32,System.Runtime.InteropServices.ComTypes.IMoniker@,System.Runtime.InteropServices.ComTypes.IMoniker@)"> <summary> Returns a reduced moniker, which is another moniker that refers to the same object as the current moniker but can be bound with equal or greater efficiency. </summary> <param name="pbc"> A reference to the IBindCtx interface on the bind context to use in this binding operation. </param> <param name="dwReduceHowFar"> A value that specifies how far the current moniker should be reduced. </param> <param name="ppmkToLeft"> A reference to the moniker to the left of the current moniker. </param> <param name="ppmkReduced"> When this method returns, contains a reference to the reduced form of the current moniker, which can be null if an error occurs or if the current moniker is reduced to nothing. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.RelativePathTo(System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.IMoniker@)"> <summary> Supplies a moniker that, when appended to the current moniker (or one with a similar structure), yields the specified moniker. </summary> <param name="pmkOther"> A reference to the moniker to which a relative path should be taken. </param> <param name="ppmkRelPath"> When this method returns, contains a reference to the relative moniker. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Save(System.Runtime.InteropServices.ComTypes.IStream,System.Boolean)"> <summary> Saves an object to the specified stream. </summary> <param name="pStm"> The stream to which the object is saved. </param> <param name="fClearDirty">true to clear the modified flag after the save is complete; otherwise false</param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS"> <summary> Defines the attributes of an implemented or inherited interface of a type. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS.IMPLTYPEFLAG_FDEFAULT"> <summary> The interface or dispinterface represents the default for the source or sink. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS.IMPLTYPEFLAG_FSOURCE"> <summary> This member of a coclass is called rather than implemented. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS.IMPLTYPEFLAG_FRESTRICTED"> <summary> The member should not be displayed or programmable by users. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS.IMPLTYPEFLAG_FDEFAULTVTABLE"> <summary> Sinks receive events through the virtual function table (VTBL). </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND"> <summary> Specifies how to invoke a function by IDispatch::Invoke. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.INVOKEKIND.INVOKE_FUNC"> <summary> The member is called using a normal function invocation syntax. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.INVOKEKIND.INVOKE_PROPERTYGET"> <summary> The function is invoked using a normal property access syntax. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.INVOKEKIND.INVOKE_PROPERTYPUT"> <summary> The function is invoked using a property value assignment syntax. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.INVOKEKIND.INVOKE_PROPERTYPUTREF"> <summary> The function is invoked using a property reference assignment syntax. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IPersistFile"> <summary> Provides the managed definition of the IPersistFile interface, with functionality from IPersist. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.GetClassID(System.Guid@)"> <summary> Retrieves the class identifier (CLSID) of an object. </summary> <param name="pClassID"> When this method returns, contains a reference to the CLSID. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.GetCurFile(System.String@)"> <summary> Retrieves either the absolute path to the current working file of the object or, if there is no current working file, the default file name prompt of the object. </summary> <param name="ppszFileName"> When this method returns, contains the address of a pointer to a zero-terminated string containing the path for the current file, or the default file name prompt (such as *.txt). This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.IsDirty"> <summary> Checks an object for changes since it was last saved to its current file. </summary> <returns>S_OK if the file has changed since it was last saved; S_FALSE if the file has not changed since it was last saved. </returns> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.Load(System.String,System.Int32)"> <summary> Opens the specified file and initializes an object from the file contents. </summary> <param name="pszFileName"> A zero-terminated string containing the absolute path of the file to open. </param> <param name="dwMode"> A combination of values from the STGM enumeration to indicate the access mode in which to open <paramref name="pszFileName" />. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.Save(System.String,System.Boolean)"> <summary> Saves a copy of the object into the specified file. </summary> <param name="pszFileName"> A zero-terminated string containing the absolute path of the file to which the object is saved. </param> <param name="fRemember">true to used the <paramref name="pszFileName" /> parameter as the current working file; otherwise false. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.SaveCompleted(System.String)"> <summary> Notifies the object that it can write to its file. </summary> <param name="pszFileName"> The absolute path of the file where the object was previously saved. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IRunningObjectTable"> <summary> Provides the managed definition of the IRunningObjectTable interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.EnumRunning(System.Runtime.InteropServices.ComTypes.IEnumMoniker@)"> <summary> Enumerates the objects currently registered as running. </summary> <param name="ppenumMoniker"> When this method returns, contains the new enumerator for the Running Object Table (ROT). This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.GetObject(System.Runtime.InteropServices.ComTypes.IMoniker,System.Object@)"> <summary> Returns the registered object if the supplied object name is registered as running. </summary> <returns> An HRESULT value that indicates the success or failure of the operation. </returns> <param name="pmkObjectName"> A reference to the moniker to search for in the Running Object Table (ROT). </param> <param name="ppunkObject"> When this method returns, contains the requested running object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.GetTimeOfLastChange(System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.FILETIME@)"> <summary> Searches for this moniker in the Running Object Table (ROT) and reports the recorded time of change, if present. </summary> <returns> An HRESULT value that indicates the success or failure of the operation. </returns> <param name="pmkObjectName"> A reference to the moniker to search for in the Running Object Table (ROT). </param> <param name="pfiletime"> When this object returns, contains the objects last change time. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.IsRunning(System.Runtime.InteropServices.ComTypes.IMoniker)"> <summary> Determines whether the specified moniker is currently registered in the Running Object Table (ROT). </summary> <returns> An HRESULT value that indicates the success or failure of the operation. </returns> <param name="pmkObjectName"> A reference to the moniker to search for in the Running Object Table (ROT). </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.NoteChangeTime(System.Int32,System.Runtime.InteropServices.ComTypes.FILETIME@)"> <summary> Notes the time that a particular object changed so IMoniker::GetTimeOfLastChange can report an appropriate change time. </summary> <param name="dwRegister"> The Running Object Table (ROT) entry of the changed object. </param> <param name="pfiletime"> A reference to the object's last change time. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.Register(System.Int32,System.Object,System.Runtime.InteropServices.ComTypes.IMoniker)"> <summary> Registers that the supplied object has entered the running state. </summary> <returns> An HRESULT value that indicates the success or failure of the operation. </returns> <param name="grfFlags"> Specifies whether the Running Object Table's (ROT) reference to <paramref name="punkObject" /> is weak or strong, and controls access to the object through its entry in the ROT. </param> <param name="punkObject"> A reference to the object being registered as running. </param> <param name="pmkObjectName"> A reference to the moniker that identifies <paramref name="punkObject" />. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.Revoke(System.Int32)"> <summary> Unregisters the specified object from the Running Object Table (ROT). </summary> <param name="dwRegister"> The Running Object Table (ROT) entry to revoke. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.IStream"> <summary> Provides the managed definition of the IStream interface, with ISequentialStream functionality. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Clone(System.Runtime.InteropServices.ComTypes.IStream@)"> <summary> Creates a new stream object with its own seek pointer that references the same bytes as the original stream. </summary> <param name="ppstm"> When this method returns, contains the new stream object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Commit(System.Int32)"> <summary> Ensures that any changes made to a stream object that is open in transacted mode are reflected in the parent storage. </summary> <param name="grfCommitFlags"> A value that controls how the changes for the stream object are committed. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.CopyTo(System.Runtime.InteropServices.ComTypes.IStream,System.Int64,System.IntPtr,System.IntPtr)"> <summary> Copies a specified number of bytes from the current seek pointer in the stream to the current seek pointer in another stream. </summary> <param name="pstm"> A reference to the destination stream. </param> <param name="cb"> The number of bytes to copy from the source stream. </param> <param name="pcbRead"> On successful return, contains the actual number of bytes read from the source. </param> <param name="pcbWritten"> On successful return, contains the actual number of bytes written to the destination. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.LockRegion(System.Int64,System.Int64,System.Int32)"> <summary> Restricts access to a specified range of bytes in the stream. </summary> <param name="libOffset"> The byte offset for the beginning of the range. </param> <param name="cb"> The length of the range, in bytes, to restrict. </param> <param name="dwLockType"> The requested restrictions on accessing the range. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Read(System.Byte[],System.Int32,System.IntPtr)"> <summary> Reads a specified number of bytes from the stream object into memory starting at the current seek pointer. </summary> <param name="pv"> When this method returns, contains the data read from the stream. This parameter is passed uninitialized. </param> <param name="cb"> The number of bytes to read from the stream object. </param> <param name="pcbRead"> A pointer to a ULONG variable that receives the actual number of bytes read from the stream object. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Revert"> <summary> Discards all changes that have been made to a transacted stream since the last <see cref="M:System.Runtime.InteropServices.ComTypes.IStream.Commit(System.Int32)" /> call. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Seek(System.Int64,System.Int32,System.IntPtr)"> <summary> Changes the seek pointer to a new location relative to the beginning of the stream, to the end of the stream, or to the current seek pointer. </summary> <param name="dlibMove"> The displacement to add to <paramref name="dwOrigin" />. </param> <param name="dwOrigin"> The origin of the seek. The origin can be the beginning of the file, the current seek pointer, or the end of the file. </param> <param name="plibNewPosition"> On successful return, contains the offset of the seek pointer from the beginning of the stream. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.SetSize(System.Int64)"> <summary> Changes the size of the stream object. </summary> <param name="libNewSize"> The new size of the stream as a number of bytes. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Stat(System.Runtime.InteropServices.ComTypes.STATSTG@,System.Int32)"> <summary> Retrieves the <see cref="T:System.Runtime.InteropServices.STATSTG" /> structure for this stream. </summary> <param name="pstatstg"> When this method returns, contains a STATSTG structure that describes this stream object. This parameter is passed uninitialized. </param> <param name="grfStatFlag"> Members in the STATSTG structure that this method does not return, thus saving some memory allocation operations. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.UnlockRegion(System.Int64,System.Int64,System.Int32)"> <summary> Removes the access restriction on a range of bytes previously restricted with the <see cref="M:System.Runtime.InteropServices.ComTypes.IStream.LockRegion(System.Int64,System.Int64,System.Int32)" /> method. </summary> <param name="libOffset"> The byte offset for the beginning of the range. </param> <param name="cb"> The length, in bytes, of the range to restrict. </param> <param name="dwLockType"> The access restrictions previously placed on the range. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Write(System.Byte[],System.Int32,System.IntPtr)"> <summary> Writes a specified number of bytes into the stream object starting at the current seek pointer. </summary> <param name="pv"> The buffer to write this stream to. </param> <param name="cb"> The number of bytes to write to the stream. </param> <param name="pcbWritten"> On successful return, contains the actual number of bytes written to the stream object. If the caller sets this pointer to <see cref="F:System.IntPtr.Zero" />, this method does not provide the actual number of bytes written. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.ITypeComp"> <summary> Provides the managed definition of the ITypeComp interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeComp.Bind(System.String,System.Int32,System.Int16,System.Runtime.InteropServices.ComTypes.ITypeInfo@,System.Runtime.InteropServices.ComTypes.DESCKIND@,System.Runtime.InteropServices.ComTypes.BINDPTR@)"> <summary> Maps a name to a member of a type, or binds global variables and functions contained in a type library. </summary> <param name="szName"> The name to bind. </param> <param name="lHashVal"> A hash value for <paramref name="szName" /> computed by LHashValOfNameSys. </param> <param name="wFlags"> A flags word containing one or more of the invoke flags defined in the INVOKEKIND enumeration. </param> <param name="ppTInfo"> When this method returns, contains a reference to the type description that contains the item to which it is bound, if a FUNCDESC or VARDESC was returned. This parameter is passed uninitialized. </param> <param name="pDescKind"> When this method returns, contains a reference to a DESCKIND enumerator that indicates whether the name bound-to is a VARDESC, FUNCDESC, or TYPECOMP. This parameter is passed uninitialized. </param> <param name="pBindPtr"> When this method returns, contains a reference to the bound-to VARDESC, FUNCDESC, or ITypeComp interface. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeComp.BindType(System.String,System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo@,System.Runtime.InteropServices.ComTypes.ITypeComp@)"> <summary> Binds to the type descriptions contained within a type library. </summary> <param name="szName"> The name to bind. </param> <param name="lHashVal"> A hash value for <paramref name="szName" /> determined by LHashValOfNameSys. </param> <param name="ppTInfo"> When this method returns, contains a reference to an ITypeInfo of the type to which <paramref name="szName" /> was bound. This parameter is passed uninitialized. </param> <param name="ppTComp"> When this method returns, contains a reference to an ITypeComp variable. This parameter is passed uninitialized. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.ITypeInfo"> <summary> Provides the managed definition of the ITypeInfo interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.AddressOfMember(System.Int32,System.Runtime.InteropServices.ComTypes.INVOKEKIND,System.IntPtr@)"> <summary> Retrieves the addresses of static functions or variables, such as those defined in a DLL. </summary> <param name="memid"> The member ID of the static member's address to retrieve. </param> <param name="invKind"> One of the <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> values that specifies whether the member is a property, and if so, what kind. </param> <param name="ppv"> When this method returns, contains a reference to the static member. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.CreateInstance(System.Object,System.Guid@,System.Object@)"> <summary> Creates a new instance of a type that describes a component class (coclass). </summary> <param name="pUnkOuter"> The object that acts as the controlling IUnknown. </param> <param name="riid"> The IID of the interface that the caller uses to communicate with the resulting object. </param> <param name="ppvObj"> When this method returns, contains a reference to the created object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetContainingTypeLib(System.Runtime.InteropServices.ComTypes.ITypeLib@,System.Int32@)"> <summary> Retrieves the type library that contains this type description and its index within that type library. </summary> <param name="ppTLB"> When this method returns, contains a reference to the containing type library. This parameter is passed uninitialized. </param> <param name="pIndex"> When this method returns, contains a reference to the index of the type description within the containing type library. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetDllEntry(System.Int32,System.Runtime.InteropServices.ComTypes.INVOKEKIND,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Retrieves a description or specification of an entry point for a function in a DLL. </summary> <param name="memid"> The ID of the member function whose DLL entry description is to be returned. </param> <param name="invKind"> One of the <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> values that specifies the kind of member identified by <paramref name="memid" />. </param> <param name="pBstrDllName"> If not null, the function sets <paramref name="pBstrDllName" /> to a BSTR that contains the name of the DLL. </param> <param name="pBstrName"> If not null, the function sets <paramref name="lpbstrName" /> to a BSTR that contains the name of the entry point. </param> <param name="pwOrdinal"> If not null, and the function is defined by an ordinal, then <paramref name="lpwOrdinal" /> is set to point to the ordinal. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)"> <summary> Retrieves the documentation string, the complete Help file name and path, and the context ID for the Help topic for a specified type description. </summary> <param name="index"> The ID of the member whose documentation is to be returned. </param> <param name="strName"> When this method returns, contains the name of the item method. This parameter is passed uninitialized. </param> <param name="strDocString"> When this method returns, contains the documentation string for the specified item. This parameter is passed uninitialized. </param> <param name="dwHelpContext"> When this method returns, contains a reference to the Help context associated with the specified item. This parameter is passed uninitialized. </param> <param name="strHelpFile"> When this method returns, contains the fully qualified name of the Help file. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetFuncDesc(System.Int32,System.IntPtr@)"> <summary> Retrieves the <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure that contains information about a specified function. </summary> <param name="index"> The index of the function description to return. </param> <param name="ppFuncDesc"> When this method returns, contains a reference to a FUNCDESC structure that describes the specified function. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetIDsOfNames(System.String[],System.Int32,System.Int32[])"> <summary> Maps between member names and member IDs, and parameter names and parameter IDs. </summary> <param name="rgszNames"> An array of names to map. </param> <param name="cNames"> The count of names to map. </param> <param name="pMemId"> When this method returns, contains a reference to an array in which name mappings are placed. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetImplTypeFlags(System.Int32,System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS@)"> <summary> Retrieves the <see cref="T:System.Runtime.InteropServices.IMPLTYPEFLAGS" /> value for one implemented interface or base interface in a type description. </summary> <param name="index"> The index of the implemented interface or base interface. </param> <param name="pImplTypeFlags"> When this method returns, contains a reference to the IMPLTYPEFLAGS enumeration. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetMops(System.Int32,System.String@)"> <summary> Retrieves marshaling information. </summary> <param name="memid"> The member ID that indicates which marshaling information is needed. </param> <param name="pBstrMops"> When this method returns, contains a reference to the opcode string used in marshaling the fields of the structure described by the referenced type description, or returns null if there is no information to return. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetNames(System.Int32,System.String[],System.Int32,System.Int32@)"> <summary> Retrieves the variable with the specified member ID (or the name of the property or method and its parameters) that corresponds to the specified function ID. </summary> <param name="memid"> The ID of the member whose name (or names) is to be returned. </param> <param name="rgBstrNames"> When this method returns, contains the name (or names) associated with the member. This parameter is passed uninitialized. </param> <param name="cMaxNames"> The length of the <paramref name="rgBstrNames" /> array. </param> <param name="pcNames"> When this method returns, contains the number of names in the <paramref name="rgBstrNames" /> array. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetRefTypeInfo(System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo@)"> <summary> Retrieves the referenced type descriptions if a type description references other type descriptions. </summary> <param name="hRef"> A handle to the referenced type description to return. </param> <param name="ppTI"> When this method returns, contains the referenced type description. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetRefTypeOfImplType(System.Int32,System.Int32@)"> <summary> Retrieves the type description of the implemented interface types if a type description describes a COM class. </summary> <param name="index"> The index of the implemented type whose handle is returned. </param> <param name="href"> When this method returns, contains a reference to a handle for the implemented interface. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetTypeAttr(System.IntPtr@)"> <summary> Retrieves a <see cref="T:System.Runtime.InteropServices.TYPEATTR" /> structure that contains the attributes of the type description. </summary> <param name="ppTypeAttr"> When this method returns, contains a reference to the structure that contains the attributes of this type description. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetTypeComp(System.Runtime.InteropServices.ComTypes.ITypeComp@)"> <summary> Retrieves the ITypeComp interface for the type description, which enables a client compiler to bind to the type description's members. </summary> <param name="ppTComp"> When this method returns, contains a reference to the ITypeComp interface of the containing type library. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetVarDesc(System.Int32,System.IntPtr@)"> <summary> Retrieves a VARDESC structure that describes the specified variable. </summary> <param name="index"> The index of the variable description to return. </param> <param name="ppVarDesc"> When this method returns, contains a reference to the VARDESC structure that describes the specified variable. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.Invoke(System.Object,System.Int32,System.Int16,System.Runtime.InteropServices.ComTypes.DISPPARAMS@,System.IntPtr,System.IntPtr,System.Int32@)"> <summary> Invokes a method, or accesses a property of an object, that implements the interface described by the type description. </summary> <param name="pvInstance"> A reference to the interface described by this type description. </param> <param name="memid"> A value that identifies the interface member. </param> <param name="wFlags"> Flags that describe the context of the invoke call. </param> <param name="pDispParams"> A reference to a structure that contains an array of arguments, an array of DISPIDs for named arguments, and counts of the number of elements in each array. </param> <param name="pVarResult"> A reference to the location at which the result is to be stored. If <paramref name="wFlags" /> specifies DISPATCH_PROPERTYPUT or DISPATCH_PROPERTYPUTREF, <paramref name="pVarResult" /> is ignored. Set to null if no result is desired. </param> <param name="pExcepInfo"> A pointer to an exception information structure, which is filled in only if DISP_E_EXCEPTION is returned. </param> <param name="puArgErr"> If Invoke returns DISP_E_TYPEMISMATCH, <paramref name="puArgErr" /> indicates the index within <paramref name="rgvarg" /> of the argument with the incorrect type. If more than one argument returns an error, <paramref name="puArgErr" /> indicates only the first argument with an error. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.ReleaseFuncDesc(System.IntPtr)"> <summary> Releases a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetFuncDesc(System.Int32,System.IntPtr@)" /> method. </summary> <param name="pFuncDesc"> A reference to the FUNCDESC structure to release. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.ReleaseTypeAttr(System.IntPtr)"> <summary> Releases a <see cref="T:System.Runtime.InteropServices.TYPEATTR" /> structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetTypeAttr(System.IntPtr@)" /> method. </summary> <param name="pTypeAttr"> A reference to the TYPEATTR structure to release. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.ReleaseVarDesc(System.IntPtr)"> <summary> Releases a VARDESC structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetVarDesc(System.Int32,System.IntPtr@)" /> method. </summary> <param name="pVarDesc"> A reference to the VARDESC structure to release. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.ITypeInfo2"> <summary> Provides the managed definition of the ITypeInfo2 interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.AddressOfMember(System.Int32,System.Runtime.InteropServices.ComTypes.INVOKEKIND,System.IntPtr@)"> <summary> Retrieves the addresses of static functions or variables, such as those defined in a DLL. </summary> <param name="memid"> The member ID of the static member's address to retrieve. </param> <param name="invKind"> One of the <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> values that specifies whether the member is a property, and if so, what kind. </param> <param name="ppv"> When this method returns, contains a reference to the static member. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.CreateInstance(System.Object,System.Guid@,System.Object@)"> <summary> Creates a new instance of a type that describes a component class (coclass). </summary> <param name="pUnkOuter"> An object that acts as the controlling IUnknown. </param> <param name="riid"> The IID of the interface that the caller uses to communicate with the resulting object. </param> <param name="ppvObj"> When this method returns, contains a reference to the created object. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetAllCustData(System.IntPtr)"> <summary> Gets all custom data items for the library. </summary> <param name="pCustData"> A pointer to CUSTDATA, which holds all custom data items. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetAllFuncCustData(System.Int32,System.IntPtr)"> <summary> Gets all custom data from the specified function. </summary> <param name="index"> The index of the function to get the custom data for. </param> <param name="pCustData"> A pointer to CUSTDATA, which holds all custom data items. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetAllImplTypeCustData(System.Int32,System.IntPtr)"> <summary> Gets all custom data for the specified implementation type. </summary> <param name="index"> The index of the implementation type for the custom data. </param> <param name="pCustData"> A pointer to CUSTDATA which holds all custom data items. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetAllParamCustData(System.Int32,System.Int32,System.IntPtr)"> <summary> Gets all of the custom data for the specified function parameter. </summary> <param name="indexFunc"> The index of the function to get the custom data for. </param> <param name="indexParam"> The index of the parameter of this function to get the custom data for. </param> <param name="pCustData"> A pointer to CUSTDATA, which holds all custom data items. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetAllVarCustData(System.Int32,System.IntPtr)"> <summary> Gets the variable for the custom data. </summary> <param name="index"> The index of the variable to get the custom data for. </param> <param name="pCustData"> A pointer to CUSTDATA, which holds all custom data items. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetContainingTypeLib(System.Runtime.InteropServices.ComTypes.ITypeLib@,System.Int32@)"> <summary> Retrieves the type library that contains this type description and its index within that type library. </summary> <param name="ppTLB"> When this method returns, contains a reference to the containing type library. This parameter is passed uninitialized. </param> <param name="pIndex"> When this method returns, contains a reference to the index of the type description within the containing type library. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetCustData(System.Guid@,System.Object@)"> <summary> Gets the custom data. </summary> <param name="guid"> The GUID used to identify the data. </param> <param name="pVarVal"> When this method returns, contains an Object that specifies where to put the retrieved data. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetDllEntry(System.Int32,System.Runtime.InteropServices.ComTypes.INVOKEKIND,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Retrieves a description or specification of an entry point for a function in a DLL. </summary> <param name="memid"> The ID of the member function whose DLL entry description is to be returned. </param> <param name="invKind"> One of the <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> values that specifies the kind of member identified by <paramref name="memid" />. </param> <param name="pBstrDllName"> If not null, the function sets <paramref name="pBstrDllName" /> to a BSTR that contains the name of the DLL. </param> <param name="pBstrName"> If not null, the function sets <paramref name="lpbstrName" /> to a BSTR that contains the name of the entry point. </param> <param name="pwOrdinal"> If not null, and the function is defined by an ordinal, then <paramref name="lpwOrdinal" /> is set to point to the ordinal. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)"> <summary> Retrieves the documentation string, the complete Help file name and path, and the context ID for the Help topic for a specified type description. </summary> <param name="index"> The ID of the member whose documentation is to be returned. </param> <param name="strName"> When this method returns, contains the name of the item method. This parameter is passed uninitialized. </param> <param name="strDocString"> When this method returns, contains the documentation string for the specified item. This parameter is passed uninitialized. </param> <param name="dwHelpContext"> When this method returns, contains a reference to the Help context associated with the specified item. This parameter is passed uninitialized. </param> <param name="strHelpFile"> When this method returns, contains the fully qualified name of the Help file. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetDocumentation2(System.Int32,System.String@,System.Int32@,System.String@)"> <summary> Retrieves the documentation string, the complete Help file name and path, the localization context to use, and the context ID for the library Help topic in the Help file. </summary> <param name="memid"> The member identifier for the type description. </param> <param name="pbstrHelpString"> When this method returns, contains a BSTR that contains the name of the specified item. If the caller does not need the item name, <paramref name="pbstrHelpString" /> can be null. This parameter is passed uninitialized. </param> <param name="pdwHelpStringContext"> When this method returns, contains the Help localization context. If the caller does not need the Help context, <paramref name="pdwHelpStringContext" /> can be null. This parameter is passed uninitialized. </param> <param name="pbstrHelpStringDll"> When this method returns, contains a BSTR that contains the fully qualified name of the file containing the DLL used for the Help file. If the caller does not need the file name, <paramref name="pbstrHelpStringDll" /> can be null. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetFuncCustData(System.Int32,System.Guid@,System.Object@)"> <summary> Gets the custom data from the specified function. </summary> <param name="index"> The index of the function to get the custom data for. </param> <param name="guid"> The GUID used to identify the data. </param> <param name="pVarVal"> When this method returns, contains an Object that specified where to put the data. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetFuncDesc(System.Int32,System.IntPtr@)"> <summary> Retrieves the <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure that contains information about a specified function. </summary> <param name="index"> The index of the function description to return. </param> <param name="ppFuncDesc"> When this method returns, contains a reference to a FUNCDESC structure that describes the specified function. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetFuncIndexOfMemId(System.Int32,System.Runtime.InteropServices.ComTypes.INVOKEKIND,System.Int32@)"> <summary> Binds to a specific member based on a known DISPID, where the member name is not known (for example, when binding to a default member). </summary> <param name="memid"> The member identifier. </param> <param name="invKind"> One of the <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> values that specifies the kind of member identified by memid. </param> <param name="pFuncIndex"> When this method returns, contains an index into the function. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetIDsOfNames(System.String[],System.Int32,System.Int32[])"> <summary> Maps between member names and member IDs, and parameter names and parameter IDs. </summary> <param name="rgszNames"> An array of names to map. </param> <param name="cNames"> The count of names to map. </param> <param name="pMemId"> When this method returns, contains a reference to an array in which name mappings are placed. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetImplTypeCustData(System.Int32,System.Guid@,System.Object@)"> <summary> Gets the implementation type of the custom data. </summary> <param name="index"> The index of the implementation type for the custom data. </param> <param name="guid"> The GUID used to identify the data. </param> <param name="pVarVal"> When this method returns, contains an Object that specifies where to put the retrieved data. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetImplTypeFlags(System.Int32,System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS@)"> <summary> Retrieves the <see cref="T:System.Runtime.InteropServices.IMPLTYPEFLAGS" /> value for one implemented interface or base interface in a type description. </summary> <param name="index"> The index of the implemented interface or base interface. </param> <param name="pImplTypeFlags"> When this method returns, contains a reference to the IMPLTYPEFLAGS enumeration. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetMops(System.Int32,System.String@)"> <summary> Retrieves marshaling information. </summary> <param name="memid"> The member ID that indicates which marshaling information is needed. </param> <param name="pBstrMops"> When this method returns, contains a reference to the opcode string used in marshaling the fields of the structure described by the referenced type description, or returns null if there is no information to return. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetNames(System.Int32,System.String[],System.Int32,System.Int32@)"> <summary> Retrieves the variable with the specified member ID (or the name of the property or method and its parameters) that corresponds to the specified function ID. </summary> <param name="memid"> The ID of the member whose name (or names) is to be returned. </param> <param name="rgBstrNames"> When this method returns, contains the name (or names) associated with the member. This parameter is passed uninitialized. </param> <param name="cMaxNames"> The length of the <paramref name="rgBstrNames" /> array. </param> <param name="pcNames"> When this method returns, contains the number of names in the <paramref name="rgBstrNames" /> array. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetParamCustData(System.Int32,System.Int32,System.Guid@,System.Object@)"> <summary> Gets the specified custom data parameter. </summary> <param name="indexFunc"> The index of the function to get the custom data for. </param> <param name="indexParam"> The index of the parameter of this function to get the custom data for. </param> <param name="guid"> The GUID used to identify the data. </param> <param name="pVarVal"> When this method returns, contains an Object that specifies where to put the retrieved data. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetRefTypeInfo(System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo@)"> <summary> Retrieves the referenced type descriptions, if a type description references other type descriptions. </summary> <param name="hRef"> A handle to the referenced type description to return. </param> <param name="ppTI"> When this method returns, contains the referenced type description. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetRefTypeOfImplType(System.Int32,System.Int32@)"> <summary> Retrieves the type description of the implemented interface types, if a type description describes a COM class. </summary> <param name="index"> The index of the implemented type whose handle is returned. </param> <param name="href"> When this method returns, contains a reference to a handle for the implemented interface. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetTypeAttr(System.IntPtr@)"> <summary> Retrieves a <see cref="T:System.Runtime.InteropServices.TYPEATTR" /> structure that contains the attributes of the type description. </summary> <param name="ppTypeAttr"> When this method returns, contains a reference to the structure that contains the attributes of this type description. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetTypeComp(System.Runtime.InteropServices.ComTypes.ITypeComp@)"> <summary> Retrieves the ITypeComp interface for the type description, which enables a client compiler to bind to the type description's members. </summary> <param name="ppTComp"> When this method returns, contains a reference to the ITypeComp of the containing type library. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetTypeFlags(System.Int32@)"> <summary> Returns the type flags without any allocations. This method returns a DWORD type flag, which expands the type flags without growing the TYPEATTR (type attribute). </summary> <param name="pTypeFlags"> When this method returns, contains a DWORD reference to a TYPEFLAG. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetTypeKind(System.Runtime.InteropServices.ComTypes.TYPEKIND@)"> <summary> Returns the TYPEKIND enumeration quickly, without doing any allocations. </summary> <param name="pTypeKind"> When this method returns, contains a reference to a TYPEKIND enumeration. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetVarCustData(System.Int32,System.Guid@,System.Object@)"> <summary> Gets the variable for the custom data. </summary> <param name="index"> The index of the variable to get the custom data for. </param> <param name="guid"> The GUID used to identify the data. </param> <param name="pVarVal"> When this method returns, contains an Object that specifies where to put the retrieved data. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetVarDesc(System.Int32,System.IntPtr@)"> <summary> Retrieves a VARDESC structure that describes the specified variable. </summary> <param name="index"> The index of the variable description to return. </param> <param name="ppVarDesc"> When this method returns, contains a reference to the VARDESC structure that describes the specified variable. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetVarIndexOfMemId(System.Int32,System.Int32@)"> <summary> Binds to a specific member based on a known DISPID, where the member name is not known (for example, when binding to a default member). </summary> <param name="memid"> The member identifier. </param> <param name="pVarIndex"> When this method returns, contains an index of <paramref name="memid" />. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.Invoke(System.Object,System.Int32,System.Int16,System.Runtime.InteropServices.ComTypes.DISPPARAMS@,System.IntPtr,System.IntPtr,System.Int32@)"> <summary> Invokes a method, or accesses a property of an object, that implements the interface described by the type description. </summary> <param name="pvInstance"> A reference to the interface described by this type description. </param> <param name="memid"> Identifier of the interface member. </param> <param name="wFlags"> Flags describing the context of the invoke call. </param> <param name="pDispParams"> A reference to a structure that contains an array of arguments, an array of DISPIDs for named arguments, and counts of the number of elements in each array. </param> <param name="pVarResult"> A reference to the location at which the result is to be stored. If <paramref name="wFlags" /> specifies DISPATCH_PROPERTYPUT or DISPATCH_PROPERTYPUTREF, <paramref name="pVarResult" /> is ignored. Set to null if no result is desired. </param> <param name="pExcepInfo"> A pointer to an exception information structure, which is filled in only if DISP_E_EXCEPTION is returned. </param> <param name="puArgErr"> If Invoke returns DISP_E_TYPEMISMATCH, <paramref name="puArgErr" /> indicates the index of the argument with incorrect type. If more than one argument returns an error, <paramref name="puArgErr" /> indicates only the first argument with an error. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.ReleaseFuncDesc(System.IntPtr)"> <summary> Releases a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetFuncDesc(System.Int32,System.IntPtr@)" /> method. </summary> <param name="pFuncDesc"> A reference to the FUNCDESC structure to release. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.ReleaseTypeAttr(System.IntPtr)"> <summary> Releases a <see cref="T:System.Runtime.InteropServices.TYPEATTR" /> structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetTypeAttr(System.IntPtr@)" /> method. </summary> <param name="pTypeAttr"> A reference to the TYPEATTR structure to release. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.ReleaseVarDesc(System.IntPtr)"> <summary> Releases a VARDESC structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetVarDesc(System.Int32,System.IntPtr@)" /> method. </summary> <param name="pVarDesc"> A reference to the VARDESC structure to release. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.ITypeLib"> <summary> Provides the managed definition of the ITypeLib interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.FindName(System.String,System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo[],System.Int32[],System.Int16@)"> <summary> Finds occurrences of a type description in a type library. </summary> <param name="szNameBuf"> The name to search for. This is an in/out parameter. </param> <param name="lHashVal"> A hash value to speed up the search, computed by the LHashValOfNameSys function. If <paramref name="lHashVal" /> is 0, a value is computed. </param> <param name="ppTInfo"> When this method returns, contains an array of pointers to the type descriptions that contain the name specified in <paramref name="szNameBuf" />. This parameter is passed uninitialized. </param> <param name="rgMemId"> An array of the MEMBERID 's of the found items; <paramref name="rgMemId" /> [i] is the MEMBERID that indexes into the type description specified by <paramref name="ppTInfo" /> [i]. Cannot be null. </param> <param name="pcFound"> On entry, indicates how many instances to look for. For example, <paramref name="pcFound" /> = 1 can be called to find the first occurrence. The search stops when one instance is found. On exit, indicates the number of instances that were found. If the in and out values of <paramref name="pcFound" /> are identical, there might be more type descriptions that contain the name. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)"> <summary> Retrieves the library's documentation string, the complete Help file name and path, and the context identifier for the library Help topic in the Help file. </summary> <param name="index"> The index of the type description whose documentation is to be returned. </param> <param name="strName"> When this method returns, contains a string that represents the name of the specified item. This parameter is passed uninitialized. </param> <param name="strDocString"> When this method returns, contains a string that represents the documentation string for the specified item. This parameter is passed uninitialized. </param> <param name="dwHelpContext"> When this method returns, contains the Help context identifier associated with the specified item. This parameter is passed uninitialized. </param> <param name="strHelpFile"> When this method returns, contains a string that represents the fully qualified name of the Help file. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetLibAttr(System.IntPtr@)"> <summary> Retrieves the structure that contains the library's attributes. </summary> <param name="ppTLibAttr"> When this method returns, contains a structure that contains the library's attributes. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetTypeComp(System.Runtime.InteropServices.ComTypes.ITypeComp@)"> <summary> Enables a client compiler to bind to a library's types, variables, constants, and global functions. </summary> <param name="ppTComp"> When this method returns, contains an instance of a ITypeComp instance for this ITypeLib. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetTypeInfo(System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo@)"> <summary> Retrieves the specified type description in the library. </summary> <param name="index"> The index of the ITypeInfo interface to return. </param> <param name="ppTI"> When this method returns, contains an ITypeInfo describing the type referenced by <paramref name="index" />. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetTypeInfoCount"> <summary> Returns the number of type descriptions in the type library. </summary> <returns> The number of type descriptions in the type library. </returns> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetTypeInfoOfGuid(System.Guid@,System.Runtime.InteropServices.ComTypes.ITypeInfo@)"> <summary> Retrieves the type description that corresponds to the specified GUID. </summary> <param name="guid"> The IID of the interface of CLSID of the class whose type info is requested. </param> <param name="ppTInfo"> When this method returns, contains the requested ITypeInfo interface. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetTypeInfoType(System.Int32,System.Runtime.InteropServices.ComTypes.TYPEKIND@)"> <summary> Retrieves the type of a type description. </summary> <param name="index"> The index of the type description within the type library. </param> <param name="pTKind"> When this method returns, contains a reference to the TYPEKIND enumeration for the type description. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.IsName(System.String,System.Int32)"> <summary> Indicates whether a passed-in string contains the name of a type or member described in the library. </summary> <returns>true if <paramref name="szNameBuf" /> was found in the type library; otherwise, false. </returns> <param name="szNameBuf"> The string to test. This is an in/out parameter. </param> <param name="lHashVal"> The hash value of <paramref name="szNameBuf" />. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.ReleaseTLibAttr(System.IntPtr)"> <summary> Releases the <see cref="T:System.Runtime.InteropServices.TYPELIBATTR" /> structure originally obtained from the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetLibAttr(System.IntPtr@)" /> method. </summary> <param name="pTLibAttr"> The TLIBATTR structure to release. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.ITypeLib2"> <summary> Provides a managed definition of the ITypeLib2 interface. </summary> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.FindName(System.String,System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo[],System.Int32[],System.Int16@)"> <summary> Finds occurrences of a type description in a type library. </summary> <param name="szNameBuf"> The name to search for. </param> <param name="lHashVal"> A hash value to speed up the search, computed by the LHashValOfNameSys function. If <paramref name="lHashVal" /> is 0, a value is computed. </param> <param name="ppTInfo"> When this method returns, contains an array of pointers to the type descriptions that contain the name specified in <paramref name="szNameBuf" />. This parameter is passed uninitialized. </param> <param name="rgMemId"> When this method returns, contains an array of the MEMBERIDs of the found items; <paramref name="rgMemId" /> [i] is the MEMBERID that indexes into the type description specified by <paramref name="ppTInfo" /> [i]. This parameter cannot be null. This parameter is passed uninitialized. </param> <param name="pcFound"> On entry, a value, passed by reference, that indicates how many instances to look for. For example, <paramref name="pcFound" /> = 1 can be called to find the first occurrence. The search stops when one instance is found. On exit, indicates the number of instances that were found. If the in and out values of <paramref name="pcFound" /> are identical, there might be more type descriptions that contain the name. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetAllCustData(System.IntPtr)"> <summary> Gets all custom data items for the library. </summary> <param name="pCustData"> A pointer to CUSTDATA, which holds all custom data items. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetCustData(System.Guid@,System.Object@)"> <summary> Gets the custom data. </summary> <param name="guid"> A <see cref="T:System.Guid" /> , passed by reference, that is used to identify the data. </param> <param name="pVarVal"> When this method returns, contains an object that specifies where to put the retrieved data. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)"> <summary> Retrieves the library's documentation string, the complete Help file name and path, and the context identifier for the library Help topic in the Help file. </summary> <param name="index"> An index of the type description whose documentation is to be returned. </param> <param name="strName"> When this method returns, contains a string that specifies the name of the specified item. This parameter is passed uninitialized. </param> <param name="strDocString"> When this method returns, contains the documentation string for the specified item. This parameter is passed uninitialized. </param> <param name="dwHelpContext"> When this method returns, contains the Help context identifier associated with the specified item. This parameter is passed uninitialized. </param> <param name="strHelpFile"> When this method returns, contains a string that specifies the fully qualified name of the Help file. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetDocumentation2(System.Int32,System.String@,System.Int32@,System.String@)"> <summary> Retrieves the library's documentation string, the complete Help file name and path, the localization context to use, and the context ID for the library Help topic in the Help file. </summary> <param name="index"> An index of the type description whose documentation is to be returned; if <paramref name="index" /> is -1, the documentation for the library is returned. </param> <param name="pbstrHelpString"> When this method returns, contains a BSTR that specifies the name of the specified item. If the caller does not need the item name, <paramref name="pbstrHelpString" /> can be null. This parameter is passed uninitialized. </param> <param name="pdwHelpStringContext"> When this method returns, contains the Help localization context. If the caller does not need the Help context, <paramref name="pdwHelpStringContext" /> can be null. This parameter is passed uninitialized. </param> <param name="pbstrHelpStringDll"> When this method returns, contains a BSTR that specifies the fully qualified name of the file containing the DLL used for Help file. If the caller does not need the file name, <paramref name="pbstrHelpStringDll" /> can be null. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetLibAttr(System.IntPtr@)"> <summary> Retrieves the structure that contains the library's attributes. </summary> <param name="ppTLibAttr"> When this method returns, contains a structure that contains the library's attributes. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetLibStatistics(System.IntPtr,System.Int32@)"> <summary> Returns statistics about a type library that are required for efficient sizing of hash tables. </summary> <param name="pcUniqueNames"> A pointer to a count of unique names. If the caller does not need this information, set to null. </param> <param name="pcchUniqueNames"> When this method returns, contains a pointer to a change in the count of unique names. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetTypeComp(System.Runtime.InteropServices.ComTypes.ITypeComp@)"> <summary> Enables a client compiler to bind to a library's types, variables, constants, and global functions. </summary> <param name="ppTComp"> When this method returns, contains an ITypeComp instance for this ITypeLib. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetTypeInfo(System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo@)"> <summary> Retrieves the specified type description in the library. </summary> <param name="index"> An index of the ITypeInfo interface to return. </param> <param name="ppTI"> When this method returns, contains an ITypeInfo describing the type referenced by <paramref name="index" />. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetTypeInfoCount"> <summary> Returns the number of type descriptions in the type library. </summary> <returns> The number of type descriptions in the type library. </returns> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetTypeInfoOfGuid(System.Guid@,System.Runtime.InteropServices.ComTypes.ITypeInfo@)"> <summary> Retrieves the type description that corresponds to the specified GUID. </summary> <param name="guid"> The <see cref="T:System.Guid" />, passed by reference, that represents the IID of the CLSID interface of the class whose type info is requested. </param> <param name="ppTInfo"> When this method returns, contains the requested ITypeInfo interface. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetTypeInfoType(System.Int32,System.Runtime.InteropServices.ComTypes.TYPEKIND@)"> <summary> Retrieves the type of a type description. </summary> <param name="index"> The index of the type description within the type library. </param> <param name="pTKind"> When this method returns, contains a reference to the TYPEKIND enumeration for the type description. This parameter is passed uninitialized. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.IsName(System.String,System.Int32)"> <summary> Indicates whether a passed-in string contains the name of a type or member described in the library. </summary> <returns>true if <paramref name="szNameBuf" /> was found in the type library; otherwise, false. </returns> <param name="szNameBuf"> The string to test. </param> <param name="lHashVal"> The hash value of <paramref name="szNameBuf" />. </param> </member> <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.ReleaseTLibAttr(System.IntPtr)"> <summary> Releases the <see cref="T:System.Runtime.InteropServices.TYPELIBATTR" /> structure originally obtained from the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetLibAttr(System.IntPtr@)" /> method. </summary> <param name="pTLibAttr"> The TLIBATTR structure to release. </param> </member> <member name="T:System.Runtime.InteropServices.ComTypes.LIBFLAGS"> <summary> Defines flags that apply to type libraries. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.LIBFLAGS.LIBFLAG_FRESTRICTED"> <summary> The type library is restricted, and should not be displayed to users. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.LIBFLAGS.LIBFLAG_FCONTROL"> <summary> The type library describes controls and should not be displayed in type browsers intended for nonvisual objects. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.LIBFLAGS.LIBFLAG_FHIDDEN"> <summary> The type library should not be displayed to users, although its use is not restricted. The type library should be used by controls. Hosts should create a new type library that wraps the control with extended properties. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.LIBFLAGS.LIBFLAG_FHASDISKIMAGE"> <summary> The type library exists in a persisted form on disk. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.PARAMDESC"> <summary> Contains information about how to transfer a structure element, parameter, or function return value between processes. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.PARAMDESC.lpVarValue"> <summary> Represents a pointer to a value that is being passed between processes. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.PARAMDESC.wParamFlags"> <summary> Represents bitmask values that describe the structure element, parameter, or return value. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.PARAMFLAG"> <summary> Describes how to transfer a structure element, parameter, or function return value between processes. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_NONE"> <summary> Does not specify whether the parameter passes or receives information. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FIN"> <summary> The parameter passes information from the caller to the callee. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FOUT"> <summary> The parameter returns information from the callee to the caller. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FLCID"> <summary> The parameter is the local identifier of a client application. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FRETVAL"> <summary> The parameter is the return value of the member. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FOPT"> <summary> The parameter is optional. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FHASDEFAULT"> <summary> The parameter has default behaviors defined. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FHASCUSTDATA"> <summary> The parameter has custom data. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.STATSTG"> <summary> Contains statistical information about an open storage, stream, or byte-array object. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.atime"> <summary> Specifies the last access time for this storage, stream, or byte array. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.cbSize"> <summary> Specifies the size, in bytes, of the stream or byte array. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.clsid"> <summary> Indicates the class identifier for the storage object. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.ctime"> <summary> Indicates the creation time for this storage, stream, or byte array. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.grfLocksSupported"> <summary> Indicates the types of region locking supported by the stream or byte array. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.grfMode"> <summary> Indicates the access mode that was specified when the object was opened. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.grfStateBits"> <summary> Indicates the current state bits of the storage object (the value most recently set by the IStorage::SetStateBits method). </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.mtime"> <summary> Indicates the last modification time for this storage, stream, or byte array. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.pwcsName"> <summary> Represents a pointer to a null-terminated string containing the name of the object described by this structure. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.reserved"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.type"> <summary> Indicates the type of storage object, which is one of the values from the STGTY enumeration. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.SYSKIND"> <summary> Identifies the target operating system platform. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.SYSKIND.SYS_WIN16"> <summary> The target operating system for the type library is 16-bit Windows systems. By default, data fields are packed. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.SYSKIND.SYS_WIN32"> <summary> The target operating system for the type library is 32-bit Windows systems. By default, data fields are naturally aligned (for example, 2-byte integers are aligned on even-byte boundaries; 4-byte integers are aligned on quad-word boundaries, and so on). </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.SYSKIND.SYS_MAC"> <summary> The target operating system for the type library is Apple Macintosh. By default, all data fields are aligned on even-byte boundaries. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.SYSKIND.SYS_WIN64"> <summary> The target operating system for the type library is 64-bit Windows systems. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.TYPEATTR"> <summary> Contains attributes of a UCOMITypeInfo. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cbAlignment"> <summary> Specifies the byte alignment for an instance of this type. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cbSizeInstance"> <summary> The size of an instance of this type. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cbSizeVft"> <summary> The size of this type's virtual method table (VTBL). </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cFuncs"> <summary> Indicates the number of functions on the interface this structure describes. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cImplTypes"> <summary> Indicates the number of implemented interfaces on the interface this structure describes. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cVars"> <summary> Indicates the number of variables and data fields on the interface described by this structure. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.dwReserved"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.guid"> <summary> The GUID of the type information. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.idldescType"> <summary> IDL attributes of the described type. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.lcid"> <summary> Locale of member names and documentation strings. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.lpstrSchema"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.MEMBER_ID_NIL"> <summary> A constant used with the <see cref="F:System.Runtime.InteropServices.TYPEATTR.memidConstructor" /> and <see cref="F:System.Runtime.InteropServices.TYPEATTR.memidDestructor" /> fields. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.memidConstructor"> <summary> ID of constructor, or <see cref="F:System.Runtime.InteropServices.TYPEATTR.MEMBER_ID_NIL" /> if none. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.memidDestructor"> <summary> ID of destructor, or <see cref="F:System.Runtime.InteropServices.TYPEATTR.MEMBER_ID_NIL" /> if none. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.tdescAlias"> <summary> If <see cref="F:System.Runtime.InteropServices.TYPEATTR.typekind" /> == <see cref="F:System.Runtime.InteropServices.TYPEKIND.TKIND_ALIAS" />, specifies the type for which this type is an alias. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.typekind"> <summary> A <see cref="T:System.Runtime.InteropServices.TYPEKIND" /> value describing the type this information describes. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.wMajorVerNum"> <summary> Major version number. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.wMinorVerNum"> <summary> Minor version number. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.wTypeFlags"> <summary> A <see cref="T:System.Runtime.InteropServices.TYPEFLAGS" /> value describing this information. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.TYPEDESC"> <summary> Describes the type of a variable, return type of a function, or the type of a function parameter. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEDESC.lpValue"> <summary> If the variable is VT_SAFEARRAY or VT_PTR, the lpValue field contains a pointer to a TYPEDESC that specifies the element type. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEDESC.vt"> <summary> Indicates the variant type for the item described by this TYPEDESC. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.TYPEFLAGS"> <summary> Defines the properties and attributes of a type description. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FAPPOBJECT"> <summary> A type description that describes an Application object. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FCANCREATE"> <summary> Instances of the type can be created by ITypeInfo::CreateInstance. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FLICENSED"> <summary> The type is licensed. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FPREDECLID"> <summary> The type is predefined. The client application should automatically create a single instance of the object that has this attribute. The name of the variable that points to the object is the same as the class name of the object. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FHIDDEN"> <summary> The type should not be displayed to browsers. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FCONTROL"> <summary> The type is a control from which other types will be derived and should not be displayed to users. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FDUAL"> <summary> The interface supplies both IDispatch and VTBL binding. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FNONEXTENSIBLE"> <summary> The interface cannot add members at run time. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FOLEAUTOMATION"> <summary> The types used in the interface are fully compatible with Automation, including VTBL binding support. Setting dual on an interface sets both this flag and the <see cref="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FDUAL" />. This flag is not allowed on dispinterfaces. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FRESTRICTED"> <summary> Should not be accessible from macro languages. This flag is intended for system-level types or types that type browsers should not display. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FAGGREGATABLE"> <summary> The class supports aggregation. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FREPLACEABLE"> <summary> The object supports IConnectionPointWithDefault, and has default behaviors. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FDISPATCHABLE"> <summary> Indicates that the interface derives from IDispatch, either directly or indirectly. This flag is computed; there is no Object Description Language for the flag. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FREVERSEBIND"> <summary> Indicates base interfaces should be checked for name resolution before checking children, which is the reverse of the default behavior. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FPROXY"> <summary> Indicates that the interface will be using a proxy/stub dynamic link library. This flag specifies that the type library proxy should not be unregistered when the type library is unregistered. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.TYPEKIND"> <summary> Specifies various types of data and functions. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_ENUM"> <summary> A set of enumerators. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_RECORD"> <summary> A structure with no methods. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_MODULE"> <summary> A module that can have only static functions and data (for example, a DLL). </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_INTERFACE"> <summary> A type that has virtual functions, all of which are pure. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_DISPATCH"> <summary> A set of methods and properties that are accessible through IDispatch::Invoke. By default, dual interfaces return TKIND_DISPATCH. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_COCLASS"> <summary> A set of implemented components interfaces. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_ALIAS"> <summary> A type that is an alias for another type. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_UNION"> <summary> A union of all members that have an offset of zero. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_MAX"> <summary> End-of-enumeration marker. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.TYPELIBATTR"> <summary> Identifies a particular type library and provides localization support for member names. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.guid"> <summary> Represents a globally unique library ID of a type library. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.lcid"> <summary> Represents a locale ID of a type library. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.syskind"> <summary> Represents the target hardware platform of a type library. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.wLibFlags"> <summary> Represents library flags. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.wMajorVerNum"> <summary> Represents the major version number of a type library. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.wMinorVerNum"> <summary> Represents the minor version number of a type library. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.VARDESC"> <summary> Describes a variable, constant, or data member. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.desc"> <summary> Contains information about a variable. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.elemdescVar"> <summary> Contains the variable type. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.lpstrSchema"> <summary> This field is reserved for future use. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.memid"> <summary> Indicates the member ID of a variable. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.varkind"> <summary> Defines how to marshal a variable. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.wVarFlags"> <summary> Defines the properties of a variable. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.VARDESC.DESCUNION"> <summary> Contains information about a variable. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.DESCUNION.lpvarValue"> <summary> Describes a symbolic constant. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.DESCUNION.oInst"> <summary> Indicates the offset of this variable within the instance. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.VARFLAGS"> <summary> Identifies the constants that define the properties of a variable. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FREADONLY"> <summary> Assignment to the variable should not be allowed. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FSOURCE"> <summary> The variable returns an object that is a source of events. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FBINDABLE"> <summary> The variable supports data binding. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FREQUESTEDIT"> <summary> When set, any attempt to directly change the property results in a call to IPropertyNotifySink::OnRequestEdit. The implementation of OnRequestEdit determines if the change is accepted. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FDISPLAYBIND"> <summary> The variable is displayed to the user as bindable. <see cref="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FBINDABLE" /> must also be set. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FDEFAULTBIND"> <summary> The variable is the single property that best represents the object. Only one variable in type information can have this attribute. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FHIDDEN"> <summary> The variable should not be displayed to the user in a browser, although it exists and is bindable. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FRESTRICTED"> <summary> The variable should not be accessible from macro languages. This flag is intended for system-level variables or variables that you do not want type browsers to display. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FDEFAULTCOLLELEM"> <summary> Permits an optimization in which the compiler looks for a member named "xyz" on the type of "abc". If such a member is found and is flagged as an accessor function for an element of the default collection, then a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FUIDEFAULT"> <summary> The variable is the default display in the user interface. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FNONBROWSABLE"> <summary> The variable appears in an object browser, but not in a properties browser. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FREPLACEABLE"> <summary> Tags the interface as having default behaviors. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FIMMEDIATEBIND"> <summary> The variable is mapped as individual bindable properties. </summary> </member> <member name="T:System.Runtime.InteropServices.ComTypes.VARKIND"> <summary> Defines the kind of variable. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARKIND.VAR_PERINSTANCE"> <summary> The variable is a field or member of the type. It exists at a fixed offset within each instance of the type. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARKIND.VAR_STATIC"> <summary> There is only one instance of the variable. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARKIND.VAR_CONST"> <summary> The VARDESC structure describes a symbolic constant. There is no memory associated with it. </summary> </member> <member name="F:System.Runtime.InteropServices.ComTypes.VARKIND.VAR_DISPATCH"> <summary> The variable can be accessed only through IDispatch::Invoke. </summary> </member> <member name="T:System.Runtime.InteropServices.Expando.IExpando"> <summary> Enables modification of objects by adding and removing members, represented by <see cref="T:System.Reflection.MemberInfo" /> objects. </summary> </member> <member name="M:System.Runtime.InteropServices.Expando.IExpando.AddField(System.String)"> <summary> Adds the named field to the Reflection object. </summary> <returns> A <see cref="T:System.Reflection.FieldInfo" /> object representing the added field. </returns> <param name="name"> The name of the field. </param> <exception cref="T:System.NotSupportedException"> The IExpando object does not support this method. </exception> </member> <member name="M:System.Runtime.InteropServices.Expando.IExpando.AddMethod(System.String,System.Delegate)"> <summary> Adds the named method to the Reflection object. </summary> <returns> A MethodInfo object representing the added method. </returns> <param name="name"> The name of the method. </param> <param name="method"> The delegate to the method. </param> <exception cref="T:System.NotSupportedException"> The IExpando object does not support this method. </exception> </member> <member name="M:System.Runtime.InteropServices.Expando.IExpando.AddProperty(System.String)"> <summary> Adds the named property to the Reflection object. </summary> <returns> A PropertyInfo object representing the added property. </returns> <param name="name"> The name of the property. </param> <exception cref="T:System.NotSupportedException"> The IExpando object does not support this method. </exception> </member> <member name="M:System.Runtime.InteropServices.Expando.IExpando.RemoveMember(System.Reflection.MemberInfo)"> <summary> Removes the specified member. </summary> <param name="m"> The member to remove. </param> <exception cref="T:System.NotSupportedException"> The IExpando object does not support this method. </exception> </member> <member name="T:System.Runtime.Remoting.ActivatedClientTypeEntry"> <summary> Holds values for an object type registered on the client end as a type that can be activated on the server. </summary> </member> <member name="M:System.Runtime.Remoting.ActivatedClientTypeEntry.#ctor(System.String,System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.ActivatedClientTypeEntry" /> class with the given type name, assembly name, and application URL. </summary> <param name="typeName"> The type name of the client activated type. </param> <param name="assemblyName"> The assembly name of the client activated type. </param> <param name="appUrl"> The URL of the application to activate the type in. </param> </member> <member name="M:System.Runtime.Remoting.ActivatedClientTypeEntry.#ctor(System.Type,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.ActivatedClientTypeEntry" /> class with the given <see cref="T:System.Type" /> and application URL. </summary> <param name="type"> The <see cref="T:System.Type" /> of the client activated type. </param> <param name="appUrl"> The URL of the application to activate the type in. </param> </member> <member name="P:System.Runtime.Remoting.ActivatedClientTypeEntry.ApplicationUrl"> <summary> Gets the URL of the application to activate the type in. </summary> <returns> The URL of the application to activate the type in. </returns> </member> <member name="P:System.Runtime.Remoting.ActivatedClientTypeEntry.ContextAttributes"> <summary> Gets or sets the context attributes for the client-activated type. </summary> <returns> The context attributes for the client activated type. </returns> </member> <member name="P:System.Runtime.Remoting.ActivatedClientTypeEntry.ObjectType"> <summary> Gets the <see cref="T:System.Type" /> of the client-activated type. </summary> <returns> Gets the <see cref="T:System.Type" /> of the client-activated type. </returns> </member> <member name="M:System.Runtime.Remoting.ActivatedClientTypeEntry.ToString"> <summary> Returns the type name, assembly name, and application URL of the client-activated type as a <see cref="T:System.String" />. </summary> <returns> The type name, assembly name, and application URL of the client-activated type as a <see cref="T:System.String" />. </returns> </member> <member name="T:System.Runtime.Remoting.ActivatedServiceTypeEntry"> <summary> Holds values for an object type registered on the service end as one that can be activated on request from a client. </summary> </member> <member name="M:System.Runtime.Remoting.ActivatedServiceTypeEntry.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.ActivatedServiceTypeEntry" /> class with the given type name and assembly name. </summary> <param name="typeName"> The type name of the client-activated service type. </param> <param name="assemblyName"> The assembly name of the client-activated service type. </param> </member> <member name="M:System.Runtime.Remoting.ActivatedServiceTypeEntry.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.ActivatedServiceTypeEntry" /> class with the given <see cref="T:System.Type" />. </summary> <param name="type"> The <see cref="T:System.Type" /> of the client-activated service type. </param> </member> <member name="P:System.Runtime.Remoting.ActivatedServiceTypeEntry.ContextAttributes"> <summary> Gets or sets the context attributes for the client-activated service type. </summary> <returns> The context attributes for the client-activated service type. </returns> </member> <member name="P:System.Runtime.Remoting.ActivatedServiceTypeEntry.ObjectType"> <summary> Gets the <see cref="T:System.Type" /> of the client-activated service type. </summary> <returns> The <see cref="T:System.Type" /> of the client-activated service type. </returns> </member> <member name="M:System.Runtime.Remoting.ActivatedServiceTypeEntry.ToString"> <summary> Returns the type and assembly name of the client-activated service type as a <see cref="T:System.String" />. </summary> <returns> The type and assembly name of the client-activated service type as a <see cref="T:System.String" />. </returns> </member> <member name="T:System.Runtime.Remoting.CustomErrorsModes"> <summary> Specifies how custom errors are handled. </summary> </member> <member name="F:System.Runtime.Remoting.CustomErrorsModes.On"> <summary> All callers receive filtered exception information. </summary> </member> <member name="F:System.Runtime.Remoting.CustomErrorsModes.Off"> <summary> All callers receive complete exception information. </summary> </member> <member name="F:System.Runtime.Remoting.CustomErrorsModes.RemoteOnly"> <summary> Local callers receive complete exception information; remote callers receive filtered exception information. </summary> </member> <member name="T:System.Runtime.Remoting.IChannelInfo"> <summary> Provides custom channel information that is carried along with the <see cref="T:System.Runtime.Remoting.ObjRef" />. </summary> </member> <member name="P:System.Runtime.Remoting.IChannelInfo.ChannelData"> <summary> Gets and sets the channel data for each channel. </summary> <returns> The channel data for each channel. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.IEnvoyInfo"> <summary> Provides envoy information. </summary> </member> <member name="P:System.Runtime.Remoting.IEnvoyInfo.EnvoySinks"> <summary> Gets or sets the list of envoys that were contributed by the server context and object chains when the object was marshaled. </summary> <returns> A chain of envoy sinks. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.InternalRemotingServices"> <summary> Defines utility methods for use by the .NET Framework remoting infrastructure. </summary> </member> <member name="M:System.Runtime.Remoting.InternalRemotingServices.#ctor"></member> <member name="M:System.Runtime.Remoting.InternalRemotingServices.DebugOutChnl(System.String)"> <summary> Sends a message concerning a remoting channel to an unmanaged debugger. </summary> <param name="s"> A string to place in the message. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.InternalRemotingServices.GetCachedSoapAttribute(System.Object)"> <summary> Gets an appropriate SOAP-related attribute for the specified class member or method parameter. </summary> <param name="reflectionObject"> A class member or method parameter. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.InternalRemotingServices.RemotingAssert(System.Boolean,System.String)"> <summary> Instructs an internal debugger to check for a condition and display a message if the condition is false. </summary> <param name="condition">true to prevent a message from being displayed; otherwise, false. </param> <param name="message"> The message to display if <paramref name="condition" /> is false. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.InternalRemotingServices.RemotingTrace(System.Object[])"> <summary> Sends any number of messages concerning remoting channels to an internal debugger. </summary> <param name="messages"> An array of type <see cref="T:System.Object" /> that contains any number of messages. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.InternalRemotingServices.SetServerIdentity(System.Runtime.Remoting.Messaging.MethodCall,System.Object)"> <summary> Sets internal identifying information for a remoted server object for each method call from client to server. </summary> <param name="m"> A <see cref="T:System.Runtime.Remoting.Messaging.MethodCall" /> that represents a method call on a remote object. </param> <param name="srvID"> Internal identifying information for a remoted server object. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.IObjectHandle"> <summary> Defines the interface for unwrapping marshal-by-value objects from indirection. </summary> </member> <member name="M:System.Runtime.Remoting.IObjectHandle.Unwrap"> <summary> Unwraps the object. </summary> <returns> The unwrapped object. </returns> </member> <member name="T:System.Runtime.Remoting.IRemotingTypeInfo"> <summary> Provides type information for an object. </summary> </member> <member name="M:System.Runtime.Remoting.IRemotingTypeInfo.CanCastTo(System.Type,System.Object)"> <summary> Checks whether the proxy that represents the specified object type can be cast to the type represented by the <see cref="T:System.Runtime.Remoting.IRemotingTypeInfo" /> interface. </summary> <returns>true if cast will succeed; otherwise, false. </returns> <param name="fromType"> The type to cast to. </param> <param name="o"> The object for which to check casting. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.IRemotingTypeInfo.TypeName"> <summary> Gets or sets the fully qualified type name of the server object in a <see cref="T:System.Runtime.Remoting.ObjRef" />. </summary> <returns> The fully qualified type name of the server object in a <see cref="T:System.Runtime.Remoting.ObjRef" />. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.ObjectHandle"> <summary> Wraps marshal-by-value object references, allowing them to be returned through an indirection. </summary> </member> <member name="M:System.Runtime.Remoting.ObjectHandle.#ctor(System.Object)"> <summary> Initializes an instance of the <see cref="T:System.Runtime.Remoting.ObjectHandle" /> class, wrapping the given object <paramref name="o" />. </summary> <param name="o"> The object that is wrapped by the new <see cref="T:System.Runtime.Remoting.ObjectHandle" />. </param> </member> <member name="M:System.Runtime.Remoting.ObjectHandle.InitializeLifetimeService"> <summary> Initializes the lifetime lease of the wrapped object. </summary> <returns> An initialized <see cref="T:System.Runtime.Remoting.Lifetime.ILease" /> that allows you to control the lifetime of the wrapped object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.ObjectHandle.Unwrap"> <summary> Returns the wrapped object. </summary> <returns> The wrapped object. </returns> </member> <member name="T:System.Runtime.Remoting.ObjRef"> <summary> Stores all relevant information required to generate a proxy in order to communicate with a remote object. </summary> </member> <member name="M:System.Runtime.Remoting.ObjRef.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.ObjRef" /> class with default values. </summary> </member> <member name="M:System.Runtime.Remoting.ObjRef.#ctor(System.MarshalByRefObject,System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.ObjRef" /> class to reference a specified <see cref="T:System.MarshalByRefObject" /> of a specified <see cref="T:System.Type" />. </summary> <param name="o"> The object that the new <see cref="T:System.Runtime.Remoting.ObjRef" /> instance will reference. </param> <param name="requestedType"> The <see cref="T:System.Type" /> of the object that the new <see cref="T:System.Runtime.Remoting.ObjRef" /> instance will reference. </param> </member> <member name="M:System.Runtime.Remoting.ObjRef.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.ObjRef" /> class from serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination of the exception. </param> </member> <member name="P:System.Runtime.Remoting.ObjRef.ChannelInfo"> <summary> Gets or sets the <see cref="T:System.Runtime.Remoting.IChannelInfo" /> for the <see cref="T:System.Runtime.Remoting.ObjRef" />. </summary> <returns> The <see cref="T:System.Runtime.Remoting.IChannelInfo" /> interface for the <see cref="T:System.Runtime.Remoting.ObjRef" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.ObjRef.EnvoyInfo"> <summary> Gets or sets the <see cref="T:System.Runtime.Remoting.IEnvoyInfo" /> for the <see cref="T:System.Runtime.Remoting.ObjRef" />. </summary> <returns> The <see cref="T:System.Runtime.Remoting.IEnvoyInfo" /> interface for the <see cref="T:System.Runtime.Remoting.ObjRef" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.ObjRef.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the current <see cref="T:System.Runtime.Remoting.ObjRef" /> instance. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data. </param> <param name="context"> The contextual information about the source or destination of the serialization. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have serialization formatter permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.ObjRef.GetRealObject(System.Runtime.Serialization.StreamingContext)"> <summary> Returns a reference to the remote object that the <see cref="T:System.Runtime.Remoting.ObjRef" /> describes. </summary> <returns> A reference to the remote object that the <see cref="T:System.Runtime.Remoting.ObjRef" /> describes. </returns> <param name="context"> The context where the current object resides. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have serialization formatter permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter, RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.ObjRef.IsFromThisAppDomain"> <summary> Returns a Boolean value that indicates whether the current <see cref="T:System.Runtime.Remoting.ObjRef" /> instance references an object located in the current <see cref="T:System.AppDomain" />. </summary> <returns> A Boolean value that indicates whether the current <see cref="T:System.Runtime.Remoting.ObjRef" /> instance references an object located in the current <see cref="T:System.AppDomain" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.ObjRef.IsFromThisProcess"> <summary> Returns a Boolean value that indicates whether the current <see cref="T:System.Runtime.Remoting.ObjRef" /> instance references an object located in the current process. </summary> <returns> A Boolean value that indicates whether the current <see cref="T:System.Runtime.Remoting.ObjRef" /> instance references an object located in the current process. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.ObjRef.TypeInfo"> <summary> Gets or sets the <see cref="T:System.Runtime.Remoting.IRemotingTypeInfo" /> for the object that the <see cref="T:System.Runtime.Remoting.ObjRef" /> describes. </summary> <returns> The <see cref="T:System.Runtime.Remoting.IRemotingTypeInfo" /> for the object that the <see cref="T:System.Runtime.Remoting.ObjRef" /> describes. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.ObjRef.URI"> <summary> Gets or sets the URI of the specific object instance. </summary> <returns> The URI of the specific object instance. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.RemotingConfiguration"> <summary> Provides various static methods for configuring the remoting infrastructure. </summary> </member> <member name="P:System.Runtime.Remoting.RemotingConfiguration.ApplicationId"> <summary> Gets the ID of the currently executing application. </summary> <returns> A <see cref="T:System.String" /> that contains the ID of the currently executing application. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.RemotingConfiguration.ApplicationName"> <summary> Gets or sets the name of a remoting application. </summary> <returns> The name of a remoting application. </returns> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. This exception is thrown only when setting the property value. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.Configure(System.String)"> <summary> Reads the configuration file and configures the remoting infrastructure. <see cref="M:System.Runtime.Remoting.RemotingConfiguration.Configure(System.String)" /> is obsolete. Please use <see cref="M:System.Runtime.Remoting.RemotingConfiguration.Configure(System.String,System.Boolean)" /> instead. </summary> <param name="filename"> The name of the remoting configuration file. Can be null. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.Configure(System.String,System.Boolean)"> <summary> Reads the configuration file and configures the remoting infrastructure. </summary> <param name="filename"> The name of the remoting configuration file. Can be null. </param> <param name="ensureSecurity"> If set to true security is required. If set to false, security is not required but still may be used. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.CustomErrorsEnabled(System.Boolean)"> <summary> Indicates whether the server channels in this application domain return filtered or complete exception information to local or remote callers. </summary> <returns>true if only filtered exception information is returned to local or remote callers, as specified by the <paramref name="isLocalRequest" /> parameter; false if complete exception information is returned. </returns> <param name="isLocalRequest">true to specify local callers; false to specify remote callers. </param> </member> <member name="P:System.Runtime.Remoting.RemotingConfiguration.CustomErrorsMode"> <summary> Gets or sets value that indicates how custom errors are handled. </summary> <returns> A member of the <see cref="T:System.Runtime.Remoting.CustomErrorsModes" /> enumeration that indicates how custom errors are handled. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.GetRegisteredActivatedClientTypes"> <summary> Retrieves an array of object types registered on the client as types that will be activated remotely. </summary> <returns> An array of object types registered on the client as types that will be activated remotely. </returns> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.GetRegisteredActivatedServiceTypes"> <summary> Retrieves an array of object types registered on the service end that can be activated on request from a client. </summary> <returns> An array of object types registered on the service end that can be activated on request from a client. </returns> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.GetRegisteredWellKnownClientTypes"> <summary> Retrieves an array of object types registered on the client end as well-known types. </summary> <returns> An array of object types registered on the client end as well-known types. </returns> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.GetRegisteredWellKnownServiceTypes"> <summary> Retrieves an array of object types registered on the service end as well-known types. </summary> <returns> An array of object types registered on the service end as well-known types. </returns> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.IsActivationAllowed(System.Type)"> <summary> Returns a Boolean value that indicates whether the specified <see cref="T:System.Type" /> is allowed to be client activated. </summary> <returns>true if the specified <see cref="T:System.Type" /> is allowed to be client activated; otherwise, false. </returns> <param name="svrType"> The object <see cref="T:System.Type" /> to check. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.IsRemotelyActivatedClientType(System.String,System.String)"> <summary> Checks whether the object specified by its type name and assembly name is registered as a remotely activated client type. </summary> <returns> The <see cref="T:System.Runtime.Remoting.ActivatedClientTypeEntry" /> that corresponds to the specified object type. </returns> <param name="typeName"> The type name of the object to check. </param> <param name="assemblyName"> The assembly name of the object to check. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.IsRemotelyActivatedClientType(System.Type)"> <summary> Checks whether the specified object <see cref="T:System.Type" /> is registered as a remotely activated client type. </summary> <returns> The <see cref="T:System.Runtime.Remoting.ActivatedClientTypeEntry" /> that corresponds to the specified object type. </returns> <param name="svrType"> The object type to check. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.IsWellKnownClientType(System.String,System.String)"> <summary> Checks whether the object specified by its type name and assembly name is registered as a well-known client type. </summary> <returns> The <see cref="T:System.Runtime.Remoting.WellKnownClientTypeEntry" /> that corresponds to the specified object type. </returns> <param name="typeName"> The type name of the object to check. </param> <param name="assemblyName"> The assembly name of the object to check. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.IsWellKnownClientType(System.Type)"> <summary> Checks whether the specified object <see cref="T:System.Type" /> is registered as a well-known client type. </summary> <returns> The <see cref="T:System.Runtime.Remoting.WellKnownClientTypeEntry" /> that corresponds to the specified object type. </returns> <param name="svrType"> The object <see cref="T:System.Type" /> to check. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.RemotingConfiguration.ProcessId"> <summary> Gets the ID of the currently executing process. </summary> <returns> A <see cref="T:System.String" /> that contains the ID of the currently executing process. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.RegisterActivatedClientType(System.Runtime.Remoting.ActivatedClientTypeEntry)"> <summary> Registers an object <see cref="T:System.Type" /> recorded in the provided <see cref="T:System.Runtime.Remoting.ActivatedClientTypeEntry" /> on the client end as a type that can be activated on the server. </summary> <param name="entry"> Configuration settings for the client-activated type. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.RegisterActivatedClientType(System.Type,System.String)"> <summary> Registers an object <see cref="T:System.Type" /> on the client end as a type that can be activated on the server, using the given parameters to initialize a new instance of the <see cref="T:System.Runtime.Remoting.ActivatedClientTypeEntry" /> class. </summary> <param name="type"> The object <see cref="T:System.Type" />. </param> <param name="appUrl"> URL of the application where this type is activated. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="typeName" /> or <paramref name="URI" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.RegisterActivatedServiceType(System.Runtime.Remoting.ActivatedServiceTypeEntry)"> <summary> Registers an object type recorded in the provided <see cref="T:System.Runtime.Remoting.ActivatedServiceTypeEntry" /> on the service end as one that can be activated on request from a client. </summary> <param name="entry"> Configuration settings for the client-activated type. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.RegisterActivatedServiceType(System.Type)"> <summary> Registers a specified object type on the service end as a type that can be activated on request from a client. </summary> <param name="type"> The <see cref="T:System.Type" /> of object to register. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.RegisterWellKnownClientType(System.Runtime.Remoting.WellKnownClientTypeEntry)"> <summary> Registers an object <see cref="T:System.Type" /> recorded in the provided <see cref="T:System.Runtime.Remoting.WellKnownClientTypeEntry" /> on the client end as a well-known type that can be activated on the server. </summary> <param name="entry"> Configuration settings for the well-known type. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.RegisterWellKnownClientType(System.Type,System.String)"> <summary> Registers an object <see cref="T:System.Type" /> on the client end as a well-known type that can be activated on the server, using the given parameters to initialize a new instance of the <see cref="T:System.Runtime.Remoting.WellKnownClientTypeEntry" /> class. </summary> <param name="type"> The object <see cref="T:System.Type" />. </param> <param name="objectUrl"> URL of a well-known client object. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.RegisterWellKnownServiceType(System.Runtime.Remoting.WellKnownServiceTypeEntry)"> <summary> Registers an object <see cref="T:System.Type" /> recorded in the provided <see cref="T:System.Runtime.Remoting.WellKnownServiceTypeEntry" /> on the service end as a well-known type. </summary> <param name="entry"> Configuration settings for the well-known type. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingConfiguration.RegisterWellKnownServiceType(System.Type,System.String,System.Runtime.Remoting.WellKnownObjectMode)"> <summary> Registers an object <see cref="T:System.Type" /> on the service end as a well-known type, using the given parameters to initialize a new instance of <see cref="T:System.Runtime.Remoting.WellKnownServiceTypeEntry" />. </summary> <param name="type"> The object <see cref="T:System.Type" />. </param> <param name="objectUri"> The object URI. </param> <param name="mode"> The activation mode of the well-known object type being registered. (See <see cref="T:System.Runtime.Remoting.WellKnownObjectMode" />.) </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.RemotingException"> <summary> The exception that is thrown when something has gone wrong during remoting. </summary> </member> <member name="M:System.Runtime.Remoting.RemotingException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> class with default properties. </summary> </member> <member name="M:System.Runtime.Remoting.RemotingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> class from serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination of the exception. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Remoting.RemotingException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> class with a specified message. </summary> <param name="message"> The error message that explains why the exception occurred. </param> </member> <member name="M:System.Runtime.Remoting.RemotingException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains why the exception occurred. </param> <param name="InnerException"> The exception that is the cause of the current exception. If the <paramref name="InnerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Runtime.Remoting.RemotingServices"> <summary> Provides several methods for using and publishing remoted objects and proxies. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Remoting.RemotingServices.Connect(System.Type,System.String)"> <summary> Creates a proxy for a well-known object, given the <see cref="T:System.Type" /> and URL. </summary> <returns> A proxy to the remote object that points to an endpoint served by the specified well-known object. </returns> <param name="classToProxy"> The <see cref="T:System.Type" /> of a well-known object on the server end to which you want to connect. </param> <param name="url"> The URL of the server class. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.Connect(System.Type,System.String,System.Object)"> <summary> Creates a proxy for a well-known object, given the <see cref="T:System.Type" />, URL, and channel-specific data. </summary> <returns> A proxy that points to an endpoint that is served by the requested well-known object. </returns> <param name="classToProxy"> The <see cref="T:System.Type" /> of the well-known object to which you want to connect. </param> <param name="url"> The URL of the well-known object. </param> <param name="data"> Channel specific data. Can be null. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.Disconnect(System.MarshalByRefObject)"> <summary> Stops an object from receiving any further messages through the registered remoting channels. </summary> <returns>true if the object was disconnected from the registered remoting channels successfully; otherwise, false. </returns> <param name="obj"> Object to disconnect from its channel. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="obj" /> parameter is a proxy. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.ExecuteMessage(System.MarshalByRefObject,System.Runtime.Remoting.Messaging.IMethodCallMessage)"> <summary> Connects to the specified remote object, and executes the provided <see cref="T:System.Runtime.Remoting.Messaging.IMethodCallMessage" /> on it. </summary> <returns> The response of the remote method. </returns> <param name="target"> The remote object whose method you want to call. </param> <param name="reqMsg"> A method call message to the specified remote object's method. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <exception cref="T:System.Runtime.Remoting.RemotingException"> The method was called from a context other than the native context of the object. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.GetEnvoyChainForProxy(System.MarshalByRefObject)"> <summary> Returns a chain of envoy sinks that should be used when sending messages to the remote object represented by the specified proxy. </summary> <returns> A chain of envoy sinks associated with the specified proxy. </returns> <param name="obj"> The proxy of the remote object that requested envoy sinks are associated with. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.GetLifetimeService(System.MarshalByRefObject)"> <summary> Returns a lifetime service object that controls the lifetime policy of the specified object. </summary> <returns> The object that controls the lifetime of <paramref name="obj" />. </returns> <param name="obj"> The object to obtain lifetime service for. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.GetMethodBaseFromMethodMessage(System.Runtime.Remoting.Messaging.IMethodMessage)"> <summary> Returns the method base from the given <see cref="T:System.Runtime.Remoting.Messaging.IMethodMessage" />. </summary> <returns> The method base extracted from the <paramref name="msg" /> parameter. </returns> <param name="msg"> The method message to extract the method base from. </param> <exception cref="T:System.Security.SecurityException"> Either the immediate caller does not have infrastructure permission, or at least one of the callers higher in the callstack does not have permission to retrieve the type information of non-public members. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.GetObjectData(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Serializes the specified marshal by reference object into the provided <see cref="T:System.Runtime.Serialization.SerializationInfo" />. </summary> <param name="obj"> The object to serialize. </param> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> into which the object is serialized. </param> <param name="context"> The source and destination of the serialization. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> or <paramref name="info" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.GetObjectUri(System.MarshalByRefObject)"> <summary> Retrieves the URI for the specified object. </summary> <returns> The URI of the specified object if it has one, or null if the object has not yet been marshaled. </returns> <param name="obj"> The <see cref="T:System.MarshalByRefObject" /> for which a URI is requested. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.GetObjRefForProxy(System.MarshalByRefObject)"> <summary> Returns the <see cref="T:System.Runtime.Remoting.ObjRef" /> that represents the remote object from the specified proxy. </summary> <returns> A <see cref="T:System.Runtime.Remoting.ObjRef" /> that represents the remote object the specified proxy is connected to, or null if the object or proxy have not been marshaled. </returns> <param name="obj"> A proxy connected to the object you want to create a <see cref="T:System.Runtime.Remoting.ObjRef" /> for. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.GetRealProxy(System.Object)"> <summary> Returns the real proxy backing the specified transparent proxy. </summary> <returns> The real proxy instance backing the transparent proxy. </returns> <param name="proxy"> A transparent proxy. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.GetServerTypeForUri(System.String)"> <summary> Returns the <see cref="T:System.Type" /> of the object with the specified URI. </summary> <returns> The <see cref="T:System.Type" /> of the object with the specified URI. </returns> <param name="URI"> The URI of the object whose <see cref="T:System.Type" /> is requested. </param> <exception cref="T:System.Security.SecurityException"> Either the immediate caller does not have infrastructure permission, or at least one of the callers higher in the callstack does not have permission to retrieve the type information of non-public members. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.GetSessionIdForMethodMessage(System.Runtime.Remoting.Messaging.IMethodMessage)"> <summary> Retrieves a session ID for a message. </summary> <returns> A session ID string that uniquely identifies the current session. </returns> <param name="msg"> The <see cref="T:System.Runtime.Remoting.Messaging.IMethodMessage" /> for which a session ID is requested. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.IsMethodOverloaded(System.Runtime.Remoting.Messaging.IMethodMessage)"> <summary> Returns a Boolean value that indicates whether the method in the given message is overloaded. </summary> <returns>true if the method called in <paramref name="msg" /> is overloaded; otherwise, false. </returns> <param name="msg"> The message that contains a call to the method in question. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.IsObjectOutOfAppDomain(System.Object)"> <summary> Returns a Boolean value that indicates whether the object specified by the given transparent proxy is contained in a different application domain than the object that called the current method. </summary> <returns>true if the object is out of the current application domain; otherwise, false. </returns> <param name="tp"> The object to check. </param> </member> <member name="M:System.Runtime.Remoting.RemotingServices.IsObjectOutOfContext(System.Object)"> <summary> Returns a Boolean value that indicates whether the object represented by the given proxy is contained in a different context than the object that called the current method. </summary> <returns>true if the object is out of the current context; otherwise, false. </returns> <param name="tp"> The object to check. </param> </member> <member name="M:System.Runtime.Remoting.RemotingServices.IsOneWay(System.Reflection.MethodBase)"> <summary> Returns a Boolean value that indicates whether the client that called the method specified in the given message is waiting for the server to finish processing the method before continuing execution. </summary> <returns>true if the method is one way; otherwise, false. </returns> <param name="method"> The method in question. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.IsTransparentProxy(System.Object)"> <summary> Returns a Boolean value that indicates whether the given object is a transparent proxy or a real object. </summary> <returns> A Boolean value that indicates whether the object specified in the <paramref name="proxy" /> parameter is a transparent proxy or a real object. </returns> <param name="proxy"> The reference to the object to check. </param> </member> <member name="M:System.Runtime.Remoting.RemotingServices.LogRemotingStage(System.Int32)"> <summary> Logs the stage in a remoting exchange to an external debugger. </summary> <param name="stage"> An internally defined constant that identifies the stage in a remoting exchange. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.Marshal(System.MarshalByRefObject)"> <summary> Takes a <see cref="T:System.MarshalByRefObject" />, registers it with the remoting infrastructure, and converts it into an instance of the <see cref="T:System.Runtime.Remoting.ObjRef" /> class. </summary> <returns> An instance of the <see cref="T:System.Runtime.Remoting.ObjRef" /> class that represents the object specified in the <paramref name="Obj" /> parameter. </returns> <param name="Obj"> The object to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> The <paramref name="Obj" /> parameter is an object proxy. </exception> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.Marshal(System.MarshalByRefObject,System.String)"> <summary> Converts the given <see cref="T:System.MarshalByRefObject" /> into an instance of the <see cref="T:System.Runtime.Remoting.ObjRef" /> class with the specified URI. </summary> <returns> An instance of the <see cref="T:System.Runtime.Remoting.ObjRef" /> class that represents the object specified in the <paramref name="Obj" /> parameter. </returns> <param name="Obj"> The object to convert. </param> <param name="URI"> The specified URI with which to initialize the new <see cref="T:System.Runtime.Remoting.ObjRef" />. Can be null. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="Obj" /> is an object proxy, and the <paramref name="URI" /> parameter is not null. </exception> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.Marshal(System.MarshalByRefObject,System.String,System.Type)"> <summary> Takes a <see cref="T:System.MarshalByRefObject" /> and converts it into an instance of the <see cref="T:System.Runtime.Remoting.ObjRef" /> class with the specified URI, and the provided <see cref="T:System.Type" />. </summary> <returns> An instance of the <see cref="T:System.Runtime.Remoting.ObjRef" /> class that represents the object specified in the <paramref name="Obj" /> parameter. </returns> <param name="Obj"> The object to convert into a <see cref="T:System.Runtime.Remoting.ObjRef" />. </param> <param name="ObjURI"> The URI the object specified in the <paramref name="Obj" /> parameter is marshaled with. Can be null. </param> <param name="RequestedType"> The <see cref="T:System.Type" /><paramref name="Obj" /> is marshaled as. Can be null. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="Obj" /> is a proxy of a remote object, and the <paramref name="ObjUri" /> parameter is not null. </exception> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.SetObjectUriForMarshal(System.MarshalByRefObject,System.String)"> <summary> Sets the URI for the subsequent call to the <see cref="M:System.Runtime.Remoting.RemotingServices.Marshal(System.MarshalByRefObject)" /> method. </summary> <param name="obj"> The object to set a URI for. </param> <param name="uri"> The URI to assign to the specified object. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="obj" /> is not a local object, has already been marshaled, or the current method has already been called on. </exception> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.Unmarshal(System.Runtime.Remoting.ObjRef)"> <summary> Takes a <see cref="T:System.Runtime.Remoting.ObjRef" /> and creates a proxy object out of it. </summary> <returns> A proxy to the object that the given <see cref="T:System.Runtime.Remoting.ObjRef" /> represents. </returns> <param name="objectRef"> The <see cref="T:System.Runtime.Remoting.ObjRef" /> that represents the remote object for which the proxy is being created. </param> <exception cref="T:System.ArgumentException"> The <see cref="T:System.Runtime.Remoting.ObjRef" /> instance specified in the <paramref name="objectRef" /> parameter is not well-formed. </exception> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.RemotingServices.Unmarshal(System.Runtime.Remoting.ObjRef,System.Boolean)"> <summary> Takes a <see cref="T:System.Runtime.Remoting.ObjRef" /> and creates a proxy object out of it, refining it to the type on the server. </summary> <returns> A proxy to the object that the given <see cref="T:System.Runtime.Remoting.ObjRef" /> represents. </returns> <param name="objectRef"> The <see cref="T:System.Runtime.Remoting.ObjRef" /> that represents the remote object for which the proxy is being created. </param> <param name="fRefine">true to refine the proxy to the type on the server; otherwise, false. </param> <exception cref="T:System.ArgumentException"> The <see cref="T:System.Runtime.Remoting.ObjRef" /> instance specified in the <paramref name="objectRef" /> parameter is not well-formed. </exception> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.RemotingTimeoutException"> <summary> The exception that is thrown when the server or the client cannot be reached for a previously specified period of time. </summary> </member> <member name="M:System.Runtime.Remoting.RemotingTimeoutException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingTimeoutException" /> class with default properties. </summary> </member> <member name="M:System.Runtime.Remoting.RemotingTimeoutException.#ctor(System.String)"> <summary> Initializes a new instance of <see cref="T:System.Runtime.Remoting.RemotingTimeoutException" /> class with a specified message. </summary> <param name="message"> The message that indicates the reason why the exception occurred. </param> </member> <member name="M:System.Runtime.Remoting.RemotingTimeoutException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingTimeoutException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="InnerException"> The exception that is the cause of the current exception. If the <paramref name="InnerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Runtime.Remoting.ServerException"> <summary> The exception that is thrown to communicate errors to the client when the client connects to non-.NET Framework applications that cannot throw exceptions. </summary> </member> <member name="M:System.Runtime.Remoting.ServerException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.ServerException" /> class with default properties. </summary> </member> <member name="M:System.Runtime.Remoting.ServerException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.ServerException" /> class with a specified message. </summary> <param name="message"> The message that describes the exception </param> </member> <member name="M:System.Runtime.Remoting.ServerException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.ServerException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="InnerException"> The exception that is the cause of the current exception. If the <paramref name="InnerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Runtime.Remoting.SoapServices"> <summary> Provides several methods for using and publishing remoted objects in SOAP format. </summary> </member> <member name="M:System.Runtime.Remoting.SoapServices.CodeXmlNamespaceForClrTypeNamespace(System.String,System.String)"> <summary> Returns the common language runtime type namespace name from the provided namespace and assembly names. </summary> <returns> The common language runtime type namespace name from the provided namespace and assembly names. </returns> <param name="typeNamespace"> The namespace that is to be coded. </param> <param name="assemblyName"> The name of the assembly that is to be coded. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="assemblyName" /> and <paramref name="typeNamespace" /> parameters are both either null or empty. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.DecodeXmlNamespaceForClrTypeNamespace(System.String,System.String@,System.String@)"> <summary> Decodes the XML namespace and assembly names from the provided common language runtime namespace. </summary> <returns>true if the namespace and assembly names were successfully decoded; otherwise, false. </returns> <param name="inNamespace"> The common language runtime namespace. </param> <param name="typeNamespace"> When this method returns, contains a <see cref="T:System.String" /> that holds the decoded namespace name. This parameter is passed uninitialized. </param> <param name="assemblyName"> When this method returns, contains a <see cref="T:System.String" /> that holds the decoded assembly name. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="inNamespace" /> parameter is null or empty. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.GetInteropFieldTypeAndNameFromXmlAttribute(System.Type,System.String,System.String,System.Type@,System.String@)"> <summary> Retrieves field type from XML attribute name, namespace, and the <see cref="T:System.Type" /> of the containing object. </summary> <param name="containingType"> The <see cref="T:System.Type" /> of the object that contains the field. </param> <param name="xmlAttribute"> The XML attribute name of the field type. </param> <param name="xmlNamespace"> The XML namespace of the field type. </param> <param name="type"> When this method returns, contains a <see cref="T:System.Type" /> of the field. This parameter is passed uninitialized. </param> <param name="name"> When this method returns, contains a <see cref="T:System.String" /> that holds the name of the field. This parameter is passed uninitialized. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.GetInteropFieldTypeAndNameFromXmlElement(System.Type,System.String,System.String,System.Type@,System.String@)"> <summary> Retrieves the <see cref="T:System.Type" /> and name of a field from the provided XML element name, namespace, and the containing type. </summary> <param name="containingType"> The <see cref="T:System.Type" /> of the object that contains the field. </param> <param name="xmlElement"> The XML element name of field. </param> <param name="xmlNamespace"> The XML namespace of the field type. </param> <param name="type"> When this method returns, contains a <see cref="T:System.Type" /> of the field. This parameter is passed uninitialized. </param> <param name="name"> When this method returns, contains a <see cref="T:System.String" /> that holds the name of the field. This parameter is passed uninitialized. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.GetInteropTypeFromXmlElement(System.String,System.String)"> <summary> Retrieves the <see cref="T:System.Type" /> that should be used during deserialization of an unrecognized object type with the given XML element name and namespace. </summary> <returns> The <see cref="T:System.Type" /> of object associated with the specified XML element name and namespace. </returns> <param name="xmlElement"> The XML element name of the unknown object type. </param> <param name="xmlNamespace"> The XML namespace of the unknown object type. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.GetInteropTypeFromXmlType(System.String,System.String)"> <summary> Retrieves the object <see cref="T:System.Type" /> that should be used during deserialization of an unrecognized object type with the given XML type name and namespace. </summary> <returns> The <see cref="T:System.Type" /> of object associated with the specified XML type name and namespace. </returns> <param name="xmlType"> The XML type of the unknown object type. </param> <param name="xmlTypeNamespace"> The XML type namespace of the unknown object type. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.GetSoapActionFromMethodBase(System.Reflection.MethodBase)"> <summary> Returns the SOAPAction value associated with the method specified in the given <see cref="T:System.Reflection.MethodBase" />. </summary> <returns> The SOAPAction value associated with the method specified in the given <see cref="T:System.Reflection.MethodBase" />. </returns> <param name="mb"> The <see cref="T:System.Reflection.MethodBase" /> that contains the method for which a SOAPAction is requested. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.GetTypeAndMethodNameFromSoapAction(System.String,System.String@,System.String@)"> <summary> Determines the type and method name of the method associated with the specified SOAPAction value. </summary> <returns>true if the type and method name were successfully recovered; otherwise, false. </returns> <param name="soapAction"> The SOAPAction of the method for which the type and method names were requested. </param> <param name="typeName"> When this method returns, contains a <see cref="T:System.String" /> that holds the type name of the method in question. This parameter is passed uninitialized. </param> <param name="methodName"> When this method returns, contains a <see cref="T:System.String" /> that holds the method name of the method in question. This parameter is passed uninitialized. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> The SOAPAction value does not start and end with quotes. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.GetXmlElementForInteropType(System.Type,System.String@,System.String@)"> <summary> Returns XML element information that should be used when serializing the given type. </summary> <returns>true if the requested values have been set flagged with <see cref="T:System.Runtime.Remoting.Metadata.SoapTypeAttribute" />; otherwise, false. </returns> <param name="type"> The object <see cref="T:System.Type" /> for which the XML element and namespace names were requested. </param> <param name="xmlElement"> When this method returns, contains a <see cref="T:System.String" /> that holds the XML element name of the specified object type. This parameter is passed uninitialized. </param> <param name="xmlNamespace"> When this method returns, contains a <see cref="T:System.String" /> that holds the XML namespace name of the specified object type. This parameter is passed uninitialized. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.GetXmlNamespaceForMethodCall(System.Reflection.MethodBase)"> <summary> Retrieves the XML namespace used during remote calls of the method specified in the given <see cref="T:System.Reflection.MethodBase" />. </summary> <returns> The XML namespace used during remote calls of the specified method. </returns> <param name="mb"> The <see cref="T:System.Reflection.MethodBase" /> of the method for which the XML namespace was requested. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.GetXmlNamespaceForMethodResponse(System.Reflection.MethodBase)"> <summary> Retrieves the XML namespace used during the generation of responses to the remote call to the method specified in the given <see cref="T:System.Reflection.MethodBase" />. </summary> <returns> The XML namespace used during the generation of responses to a remote method call. </returns> <param name="mb"> The <see cref="T:System.Reflection.MethodBase" /> of the method for which the XML namespace was requested. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.GetXmlTypeForInteropType(System.Type,System.String@,System.String@)"> <summary> Returns XML type information that should be used when serializing the given <see cref="T:System.Type" />. </summary> <returns>true if the requested values have been set flagged with <see cref="T:System.Runtime.Remoting.Metadata.SoapTypeAttribute" />; otherwise, false. </returns> <param name="type"> The object <see cref="T:System.Type" /> for which the XML element and namespace names were requested. </param> <param name="xmlType"> The XML type of the specified object <see cref="T:System.Type" />. </param> <param name="xmlTypeNamespace"> The XML type namespace of the specified object <see cref="T:System.Type" />. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.IsClrTypeNamespace(System.String)"> <summary> Returns a Boolean value that indicates whether the specified namespace is native to the common language runtime. </summary> <returns>true if the given namespace is native to the common language runtime; otherwise, false. </returns> <param name="namespaceString"> The namespace to check in the common language runtime. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.IsSoapActionValidForMethodBase(System.String,System.Reflection.MethodBase)"> <summary> Determines if the specified SOAPAction is acceptable for a given <see cref="T:System.Reflection.MethodBase" />. </summary> <returns>true if the specified SOAPAction is acceptable for a given <see cref="T:System.Reflection.MethodBase" />; otherwise, false. </returns> <param name="soapAction"> The SOAPAction to check against the given <see cref="T:System.Reflection.MethodBase" />. </param> <param name="mb"> The <see cref="T:System.Reflection.MethodBase" /> the specified SOAPAction is checked against. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.PreLoad(System.Reflection.Assembly)"> <summary> Preloads every <see cref="T:System.Type" /> found in the specified <see cref="T:System.Reflection.Assembly" /> from the information found in the <see cref="T:System.Runtime.Remoting.Metadata.SoapTypeAttribute" /> associated with each type. </summary> <param name="assembly"> The <see cref="T:System.Reflection.Assembly" /> for each type of which to call <see cref="M:System.Runtime.Remoting.SoapServices.PreLoad(System.Type)" />. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.PreLoad(System.Type)"> <summary> Preloads the given <see cref="T:System.Type" /> based on values set in a <see cref="T:System.Runtime.Remoting.Metadata.SoapTypeAttribute" /> on the type. </summary> <param name="type"> The <see cref="T:System.Type" /> to preload. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.RegisterInteropXmlElement(System.String,System.String,System.Type)"> <summary> Associates the given XML element name and namespace with a run-time type that should be used for deserialization. </summary> <param name="xmlElement"> The XML element name to use in deserialization. </param> <param name="xmlNamespace"> The XML namespace to use in deserialization. </param> <param name="type"> The run-time <see cref="T:System.Type" /> to use in deserialization. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.RegisterInteropXmlType(System.String,System.String,System.Type)"> <summary> Associates the given XML type name and namespace with the run-time type that should be used for deserialization. </summary> <param name="xmlType"> The XML type to use in deserialization. </param> <param name="xmlTypeNamespace"> The XML namespace to use in deserialization. </param> <param name="type"> The run-time <see cref="T:System.Type" /> to use in deserialization. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.RegisterSoapActionForMethodBase(System.Reflection.MethodBase)"> <summary> Associates the specified <see cref="T:System.Reflection.MethodBase" /> with the SOAPAction cached with it. </summary> <param name="mb"> The <see cref="T:System.Reflection.MethodBase" /> of the method to associate with the SOAPAction cached with it. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.SoapServices.RegisterSoapActionForMethodBase(System.Reflection.MethodBase,System.String)"> <summary> Associates the provided SOAPAction value with the given <see cref="T:System.Reflection.MethodBase" /> for use in channel sinks. </summary> <param name="mb"> The <see cref="T:System.Reflection.MethodBase" /> to associate with the provided SOAPAction. </param> <param name="soapAction"> The SOAPAction value to associate with the given <see cref="T:System.Reflection.MethodBase" />. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.SoapServices.XmlNsForClrType"> <summary> Gets the XML namespace prefix for common language runtime types. </summary> <returns> The XML namespace prefix for common language runtime types. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.SoapServices.XmlNsForClrTypeWithAssembly"> <summary> Gets the default XML namespace prefix that should be used for XML encoding of a common language runtime class that has an assembly, but no native namespace. </summary> <returns> The default XML namespace prefix that should be used for XML encoding of a common language runtime class that has an assembly, but no native namespace. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.SoapServices.XmlNsForClrTypeWithNs"> <summary> Gets the XML namespace prefix that should be used for XML encoding of a common language runtime class that is part of the mscorlib.dll file. </summary> <returns> The XML namespace prefix that should be used for XML encoding of a common language runtime class that is part of the mscorlib.dll file. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.SoapServices.XmlNsForClrTypeWithNsAndAssembly"> <summary> Gets the default XML namespace prefix that should be used for XML encoding of a common language runtime class that has both a common language runtime namespace and an assembly. </summary> <returns> The default XML namespace prefix that should be used for XML encoding of a common language runtime class that has both a common language runtime namespace and an assembly. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.TypeEntry"> <summary> Implements a base class that holds the configuration information used to activate an instance of a remote type. </summary> </member> <member name="M:System.Runtime.Remoting.TypeEntry.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.TypeEntry" /> class. </summary> </member> <member name="P:System.Runtime.Remoting.TypeEntry.AssemblyName"> <summary> Gets the assembly name of the object type configured to be a remote-activated type. </summary> <returns> The assembly name of the object type configured to be a remote-activated type. </returns> </member> <member name="P:System.Runtime.Remoting.TypeEntry.TypeName"> <summary> Gets the full type name of the object type configured to be a remote-activated type. </summary> <returns> The full type name of the object type configured to be a remote-activated type. </returns> </member> <member name="T:System.Runtime.Remoting.WellKnownClientTypeEntry"> <summary> Holds values for an object type registered on the client as a server-activated type (single call or singleton). </summary> </member> <member name="M:System.Runtime.Remoting.WellKnownClientTypeEntry.#ctor(System.String,System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.WellKnownClientTypeEntry" /> class with the given type, assembly name, and URL. </summary> <param name="typeName"> The type name of the server-activated type. </param> <param name="assemblyName"> The assembly name of the server-activated type. </param> <param name="objectUrl"> The URL of the server-activated type. </param> </member> <member name="M:System.Runtime.Remoting.WellKnownClientTypeEntry.#ctor(System.Type,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.WellKnownClientTypeEntry" /> class with the given type and URL. </summary> <param name="type"> The <see cref="T:System.Type" /> of the server-activated type. </param> <param name="objectUrl"> The URL of the server-activated type. </param> </member> <member name="P:System.Runtime.Remoting.WellKnownClientTypeEntry.ApplicationUrl"> <summary> Gets or sets the URL of the application to activate the type in. </summary> <returns> The URL of the application to activate the type in. </returns> </member> <member name="P:System.Runtime.Remoting.WellKnownClientTypeEntry.ObjectType"> <summary> Gets the <see cref="T:System.Type" /> of the server-activated client type. </summary> <returns> Gets the <see cref="T:System.Type" /> of the server-activated client type. </returns> </member> <member name="P:System.Runtime.Remoting.WellKnownClientTypeEntry.ObjectUrl"> <summary> Gets the URL of the server-activated client object. </summary> <returns> The URL of the server-activated client object. </returns> </member> <member name="M:System.Runtime.Remoting.WellKnownClientTypeEntry.ToString"> <summary> Returns the full type name, assembly name, and object URL of the server-activated client type as a <see cref="T:System.String" />. </summary> <returns> The full type name, assembly name, and object URL of the server-activated client type as a <see cref="T:System.String" />. </returns> </member> <member name="T:System.Runtime.Remoting.WellKnownObjectMode"> <summary> Defines how well-known objects are activated. </summary> </member> <member name="F:System.Runtime.Remoting.WellKnownObjectMode.Singleton"> <summary> Every incoming message is serviced by the same object instance. </summary> </member> <member name="F:System.Runtime.Remoting.WellKnownObjectMode.SingleCall"> <summary> Every incoming message is serviced by a new object instance. </summary> </member> <member name="T:System.Runtime.Remoting.WellKnownServiceTypeEntry"> <summary> Holds values for an object type registered on the service end as a server-activated type object (single call or singleton). </summary> </member> <member name="M:System.Runtime.Remoting.WellKnownServiceTypeEntry.#ctor(System.String,System.String,System.String,System.Runtime.Remoting.WellKnownObjectMode)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.WellKnownServiceTypeEntry" /> class with the given type name, assembly name, object URI, and <see cref="T:System.Runtime.Remoting.WellKnownObjectMode" />. </summary> <param name="typeName"> The full type name of the server-activated service type. </param> <param name="assemblyName"> The assembly name of the server-activated service type. </param> <param name="objectUri"> The URI of the server-activated object. </param> <param name="mode"> The <see cref="T:System.Runtime.Remoting.WellKnownObjectMode" /> of the type, which defines how the object is activated. </param> </member> <member name="M:System.Runtime.Remoting.WellKnownServiceTypeEntry.#ctor(System.Type,System.String,System.Runtime.Remoting.WellKnownObjectMode)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.WellKnownServiceTypeEntry" /> class with the given <see cref="T:System.Type" />, object URI, and <see cref="T:System.Runtime.Remoting.WellKnownObjectMode" />. </summary> <param name="type"> The <see cref="T:System.Type" /> of the server-activated service type object. </param> <param name="objectUri"> The URI of the server-activated type. </param> <param name="mode"> The <see cref="T:System.Runtime.Remoting.WellKnownObjectMode" /> of the type, which defines how the object is activated. </param> </member> <member name="P:System.Runtime.Remoting.WellKnownServiceTypeEntry.ContextAttributes"> <summary> Gets or sets the context attributes for the server-activated service type. </summary> <returns> Gets or sets the context attributes for the server-activated service type. </returns> </member> <member name="P:System.Runtime.Remoting.WellKnownServiceTypeEntry.Mode"> <summary> Gets the <see cref="T:System.Runtime.Remoting.WellKnownObjectMode" /> of the server-activated service type. </summary> <returns> The <see cref="T:System.Runtime.Remoting.WellKnownObjectMode" /> of the server-activated service type. </returns> </member> <member name="P:System.Runtime.Remoting.WellKnownServiceTypeEntry.ObjectType"> <summary> Gets the <see cref="T:System.Type" /> of the server-activated service type. </summary> <returns> The <see cref="T:System.Type" /> of the server-activated service type. </returns> </member> <member name="P:System.Runtime.Remoting.WellKnownServiceTypeEntry.ObjectUri"> <summary> Gets the URI of the well-known service type. </summary> <returns> The URI of the server-activated service type. </returns> </member> <member name="M:System.Runtime.Remoting.WellKnownServiceTypeEntry.ToString"> <summary> Returns the type name, assembly name, object URI and the <see cref="T:System.Runtime.Remoting.WellKnownObjectMode" /> of the server-activated type as a <see cref="T:System.String" />. </summary> <returns> The type name, assembly name, object URI, and the <see cref="T:System.Runtime.Remoting.WellKnownObjectMode" /> of the server-activated type as a <see cref="T:System.String" />. </returns> </member> <member name="T:System.Runtime.Remoting.Activation.ActivatorLevel"> <summary> Defines the appropriate position for a <see cref="T:System.Activator" /> in the chain of activators. </summary> </member> <member name="F:System.Runtime.Remoting.Activation.ActivatorLevel.Construction"> <summary> Constructs a blank object and runs the constructor. </summary> </member> <member name="F:System.Runtime.Remoting.Activation.ActivatorLevel.Context"> <summary> Finds or creates a suitable context. </summary> </member> <member name="F:System.Runtime.Remoting.Activation.ActivatorLevel.AppDomain"> <summary> Finds or creates a <see cref="T:System.AppDomain" />. </summary> </member> <member name="F:System.Runtime.Remoting.Activation.ActivatorLevel.Process"> <summary> Starts a process. </summary> </member> <member name="F:System.Runtime.Remoting.Activation.ActivatorLevel.Machine"> <summary> Finds a suitable computer. </summary> </member> <member name="T:System.Runtime.Remoting.Activation.IActivator"> <summary> Provides the basic functionality for a remoting activator class. </summary> </member> <member name="M:System.Runtime.Remoting.Activation.IActivator.Activate(System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Creates an instance of the object that is specified in the provided <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" />. </summary> <returns> Status of the object activation contained in a <see cref="T:System.Runtime.Remoting.Activation.IConstructionReturnMessage" />. </returns> <param name="msg"> The information about the object that is needed to activate it, stored in a <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" />. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.Activation.IActivator.Level"> <summary> Gets the <see cref="T:System.Runtime.Remoting.Activation.ActivatorLevel" /> where this activator is active. </summary> <returns> The <see cref="T:System.Runtime.Remoting.Activation.ActivatorLevel" /> where this activator is active. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Activation.IActivator.NextActivator"> <summary> Gets or sets the next activator in the chain. </summary> <returns> The next activator in the chain. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Activation.IConstructionCallMessage"> <summary> Represents the construction call request of an object. </summary> </member> <member name="P:System.Runtime.Remoting.Activation.IConstructionCallMessage.ActivationType"> <summary> Gets the type of the remote object to activate. </summary> <returns> The type of the remote object to activate. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Activation.IConstructionCallMessage.ActivationTypeName"> <summary> Gets the full type name of the remote type to activate. </summary> <returns> The full type name of the remote type to activate. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Activation.IConstructionCallMessage.Activator"> <summary> Gets or sets the activator that activates the remote object. </summary> <returns> The activator that activates the remote object. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Activation.IConstructionCallMessage.CallSiteActivationAttributes"> <summary> Gets the call site activation attributes. </summary> <returns> The call site activation attributes. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Activation.IConstructionCallMessage.ContextProperties"> <summary> Gets a list of context properties that define the context in which the object is to be created. </summary> <returns> A list of properties of the context in which to construct the object. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Activation.IConstructionReturnMessage"> <summary> Identifies a <see cref="T:System.Runtime.Remoting.Messaging.IMethodReturnMessage" /> that is returned after attempting to activate a remote object. </summary> </member> <member name="T:System.Runtime.Remoting.Activation.UrlAttribute"> <summary> Defines an attribute that can be used at the call site to specify the URL where the activation will happen. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Remoting.Activation.UrlAttribute.#ctor(System.String)"> <summary> Creates a new instance of the <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> class. </summary> <param name="callsiteURL"> The call site URL. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="callsiteURL" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Activation.UrlAttribute.Equals(System.Object)"> <summary> Checks whether the specified object refers to the same URL as the current instance. </summary> <returns>true if the object is a <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> with the same value; otherwise, false. </returns> <param name="o"> The object to compare to the current <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" />. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Activation.UrlAttribute.GetHashCode"> <summary> Returns the hash value for the current <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" />. </summary> <returns> The hash value for the current <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" />. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Activation.UrlAttribute.GetPropertiesForNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Forces the creation of the context and the server object inside the context at the specified URL. </summary> <param name="ctorMsg"> The <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" /> of the server object to create. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Activation.UrlAttribute.IsContextOK(System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Returns a Boolean value that indicates whether the specified <see cref="T:System.Runtime.Remoting.Contexts.Context" /> meets <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" />'s requirements. </summary> <returns>true if the passed-in context is acceptable; otherwise, false. </returns> <param name="ctx"> The context to check against the current context attribute. </param> <param name="msg"> The construction call, the parameters of which need to be checked against the current context. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Activation.UrlAttribute.UrlValue"> <summary> Gets the URL value of the <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" />. </summary> <returns> The URL value of the <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" />. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties"> <summary> Provides a base implementation of a channel object that exposes a dictionary interface to its properties. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.Add(System.Object,System.Object)"> <summary> Throws a <see cref="T:System.NotSupportedException" />. </summary> <param name="key"> The key that is associated with the object in the <paramref name="value" /> parameter. </param> <param name="value"> The value to add. </param> <exception cref="T:System.NotSupportedException"> The method is called. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.Clear"> <summary> Throws a <see cref="T:System.NotSupportedException" />. </summary> <exception cref="T:System.NotSupportedException"> The method is called. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.Contains(System.Object)"> <summary> Returns a value that indicates whether the channel object contains a property that is associated with the specified key. </summary> <returns>true if the channel object contains a property associated with the specified key; otherwise, false. </returns> <param name="key"> The key of the property to look for. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.CopyTo(System.Array,System.Int32)"> <summary> Throws a <see cref="T:System.NotSupportedException" />. </summary> <param name="array"> The array to copy the properties to. </param> <param name="index"> The index at which to begin copying. </param> <exception cref="T:System.NotSupportedException"> The method is called. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.Count"> <summary> Gets the number of properties associated with the channel object. </summary> <returns> The number of properties associated with the channel object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.GetEnumerator"> <summary> Returns a <see cref="T:System.Collections.IDictionaryEnumerator" /> that enumerates over all the properties associated with the channel object. </summary> <returns> A <see cref="T:System.Collections.IDictionaryEnumerator" /> that enumerates over all the properties associated with the channel object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.IsFixedSize"> <summary> Gets a value that indicates whether the number of properties that can be entered into the channel object is fixed. </summary> <returns>true if the number of properties that can be entered into the channel object is fixed; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.IsReadOnly"> <summary> Gets a value that indicates whether the collection of properties in the channel object is read-only. </summary> <returns>true if the collection of properties in the channel object is read-only; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.IsSynchronized"> <summary> Gets a value that indicates whether the dictionary of channel object properties is synchronized. </summary> <returns>true if the dictionary of channel object properties is synchronized; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.Item(System.Object)"> <summary> When overridden in a derived class, gets or sets the property that is associated with the specified key. </summary> <returns> The property that is associated with the specified key. </returns> <param name="key"> The key of the property to get or set. </param> <exception cref="T:System.NotImplementedException"> The property is accessed. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.Keys"> <summary> When overridden in a derived class, gets a <see cref="T:System.Collections.ICollection" /> of keys that the channel object properties are associated with. </summary> <returns> A <see cref="T:System.Collections.ICollection" /> of keys that the channel object properties are associated with. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.Properties"> <summary> Gets a <see cref="T:System.Collections.IDictionary" /> of the channel properties associated with the channel object. </summary> <returns> A <see cref="T:System.Collections.IDictionary" /> of the channel properties associated with the channel object. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.Remove(System.Object)"> <summary> Throws a <see cref="T:System.NotSupportedException" />. </summary> <param name="key"> The key of the object to be removed. </param> <exception cref="T:System.NotSupportedException"> The method is called. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.SyncRoot"> <summary> Gets an object that is used to synchronize access to the <see cref="T:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties" />. </summary> <returns> An object that is used to synchronize access to the <see cref="T:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns a <see cref="T:System.Collections.IEnumerator" /> that enumerates over all the properties that are associated with the channel object. </summary> <returns> A <see cref="T:System.Collections.IEnumerator" /> that enumerates over all the properties that are associated with the channel object. </returns> </member> <member name="P:System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.Values"> <summary> Gets a <see cref="T:System.Collections.ICollection" /> of the values of the properties associated with the channel object. </summary> <returns> A <see cref="T:System.Collections.ICollection" /> of the values of the properties associated with the channel object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Channels.BaseChannelSinkWithProperties"> <summary> Provides a base implementation for channel sinks that want to expose a dictionary interface to their properties. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.BaseChannelSinkWithProperties.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.BaseChannelSinkWithProperties" /> class. </summary> </member> <member name="T:System.Runtime.Remoting.Channels.BaseChannelWithProperties"> <summary> Provides a base implementation for channels that want to expose a dictionary interface to their properties. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.BaseChannelWithProperties.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.BaseChannelWithProperties" /> class. </summary> </member> <member name="P:System.Runtime.Remoting.Channels.BaseChannelWithProperties.Properties"> <summary> Gets a <see cref="T:System.Collections.IDictionary" /> of the channel properties associated with the current channel object. </summary> <returns> A <see cref="T:System.Collections.IDictionary" /> of the channel properties associated with the current channel object. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="F:System.Runtime.Remoting.Channels.BaseChannelWithProperties.SinksWithProperties"> <summary> Indicates the top channel sink in the channel sink stack. </summary> </member> <member name="T:System.Runtime.Remoting.Channels.ChannelDataStore"> <summary> Stores channel data for the remoting channels. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelDataStore.#ctor(System.String[])"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.ChannelDataStore" /> class with the URIs that the current channel maps to. </summary> <param name="channelURIs"> An array of channel URIs that the current channel maps to. </param> </member> <member name="P:System.Runtime.Remoting.Channels.ChannelDataStore.ChannelUris"> <summary> Gets or sets an array of channel URIs that the current channel maps to. </summary> <returns> An array of channel URIs that the current channel maps to. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.ChannelDataStore.Item(System.Object)"> <summary> Gets or sets the data object that is associated with the specified key for the implementing channel. </summary> <returns> The specified data object for the implementing channel. </returns> <param name="key"> The key that the data object is associated with. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Channels.ChannelServices"> <summary> Provides static methods to aid with remoting channel registration, resolution, and URL discovery. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelServices.AsyncDispatchMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)"> <summary> Asynchronously dispatches the given message to the server-side chain(s) based on the URI embedded in the message. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Messaging.IMessageCtrl" /> object used to control the asynchronously dispatched message. </returns> <param name="msg"> The message to dispatch. </param> <param name="replySink"> The sink that will process the return message if it is not null. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="msg" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelServices.CreateServerChannelSinkChain(System.Runtime.Remoting.Channels.IServerChannelSinkProvider,System.Runtime.Remoting.Channels.IChannelReceiver)"> <summary> Creates a channel sink chain for the specified channel. </summary> <returns> A new channel sink chain for the specified channel. </returns> <param name="provider"> The first provider in the chain of sink providers that will create the channel sink chain. </param> <param name="channel"> The <see cref="T:System.Runtime.Remoting.Channels.IChannelReceiver" /> for which to create the channel sink chain. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelServices.DispatchMessage(System.Runtime.Remoting.Channels.IServerChannelSinkStack,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessage@)"> <summary> Dispatches incoming remote calls. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Channels.ServerProcessing" /> that gives the status of the server message processing. </returns> <param name="sinkStack"> The stack of server channel sinks that the message already traversed. </param> <param name="msg"> The message to dispatch. </param> <param name="replyMsg"> When this method returns, contains a <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> that holds the reply from the server to the message that is contained in the <paramref name="msg" /> parameter. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="msg" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelServices.GetChannel(System.String)"> <summary> Returns a registered channel with the specified name. </summary> <returns> An interface to a registered channel, or null if the channel is not registered. </returns> <param name="name"> The channel name. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelServices.GetChannelSinkProperties(System.Object)"> <summary> Returns a <see cref="T:System.Collections.IDictionary" /> of properties for a given proxy. </summary> <returns> An interface to the dictionary of properties, or null if no properties were found. </returns> <param name="obj"> The proxy to retrieve properties for. </param> <exception cref="T:System.Security.SecurityException"> At least one of the callers that is higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelServices.GetUrlsForObject(System.MarshalByRefObject)"> <summary> Returns an array of all the URLs that can be used to reach the specified object. </summary> <returns> An array of strings that contains the URLs that can be used to remotely identify the object, or null if none were found. </returns> <param name="obj"> The object to retrieve the URL array for. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelServices.RegisterChannel(System.Runtime.Remoting.Channels.IChannel)"> <summary> Registers a channel with the channel services. <see cref="M:System.Runtime.Remoting.Channels.ChannelServices.RegisterChannel(System.Runtime.Remoting.Channels.IChannel)" /> is obsolete. Please use <see cref="M:System.Runtime.Remoting.Channels.ChannelServices.RegisterChannel(System.Runtime.Remoting.Channels.IChannel,System.Boolean)" /> instead. </summary> <param name="chnl"> The channel to register. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="chnl" /> parameter is null. </exception> <exception cref="T:System.Runtime.Remoting.RemotingException"> The channel has already been registered. </exception> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelServices.RegisterChannel(System.Runtime.Remoting.Channels.IChannel,System.Boolean)"> <summary> Registers a channel with the channel services. </summary> <param name="chnl"> The channel to register. </param> <param name="ensureSecurity">true ensures that security is enabled; otherwise false. Setting the value to false will not nullify the security setting done on the TCP or IPC channel. For details, see Remarks. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="chnl" /> parameter is null. </exception> <exception cref="T:System.Runtime.Remoting.RemotingException"> The channel has already been registered. </exception> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the call stack does not have permission to configure remoting types and channels. </exception> <exception cref="T:System.NotSupportedException"> Not supported in Windows 98 for <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" /> and on all platforms for <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" />. Host the service using Internet Information Services (IIS) if you require a secure HTTP channel. </exception> </member> <member name="P:System.Runtime.Remoting.Channels.ChannelServices.RegisteredChannels"> <summary> Gets a list of currently registered channels. </summary> <returns> An array of all the currently registered channels. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelServices.SyncDispatchMessage(System.Runtime.Remoting.Messaging.IMessage)"> <summary> Synchronously dispatches the incoming message to the server-side chain(s) based on the URI embedded in the message. </summary> <returns> A reply message is returned by the call to the server-side chain. </returns> <param name="msg"> The message to dispatch. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="msg" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ChannelServices.UnregisterChannel(System.Runtime.Remoting.Channels.IChannel)"> <summary> Unregisters a particular channel from the registered channels list. </summary> <param name="chnl"> The channel to unregister. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="chnl" /> parameter is null. </exception> <exception cref="T:System.Runtime.Remoting.RemotingException"> The channel is not registered. </exception> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Channels.ClientChannelSinkStack"> <summary> Holds the stack of client channel sinks that must be invoked during an asynchronous message response decoding. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.ClientChannelSinkStack.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.ClientChannelSinkStack" /> class with default values. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.ClientChannelSinkStack.#ctor(System.Runtime.Remoting.Messaging.IMessageSink)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.ClientChannelSinkStack" /> class with the specified reply sink. </summary> <param name="replySink"> The <see cref="T:System.Runtime.Remoting.Messaging.IMessageSink" /> that the current stack can use to reply to messages. </param> </member> <member name="M:System.Runtime.Remoting.Channels.ClientChannelSinkStack.AsyncProcessResponse(System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)"> <summary> Requests asynchronous processing of a method call on the sinks that are in the current sink stack. </summary> <param name="headers"> The headers that are retrieved from the server response stream. </param> <param name="stream"> The stream that is returning from the transport sink. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> The current sink stack is empty. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ClientChannelSinkStack.DispatchException(System.Exception)"> <summary> Dispatches the specified exception on the reply sink. </summary> <param name="e"> The exception to dispatch to the server. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ClientChannelSinkStack.DispatchReplyMessage(System.Runtime.Remoting.Messaging.IMessage)"> <summary> Dispatches the specified reply message on the reply sink. </summary> <param name="msg"> The <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> to dispatch. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ClientChannelSinkStack.Pop(System.Runtime.Remoting.Channels.IClientChannelSink)"> <summary> Pops the information that is associated with all the sinks from the sink stack up to and including the specified sink. </summary> <returns> Information generated on the request side and associated with the specified sink. </returns> <param name="sink"> The sink to remove and return from the sink stack. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> The current sink stack is empty, or the specified sink was never pushed onto the current stack. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ClientChannelSinkStack.Push(System.Runtime.Remoting.Channels.IClientChannelSink,System.Object)"> <summary> Pushes the specified sink and information that is associated with it onto the sink stack. </summary> <param name="sink"> The sink to push onto the sink stack. </param> <param name="state"> Information generated on the request side that is needed on the response side. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Channels.IChannel"> <summary> Provides conduits for messages that cross remoting boundaries. </summary> </member> <member name="P:System.Runtime.Remoting.Channels.IChannel.ChannelName"> <summary> Gets the name of the channel. </summary> <returns> The name of the channel. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.IChannel.ChannelPriority"> <summary> Gets the priority of the channel. </summary> <returns> An integer that indicates the priority of the channel. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.IChannel.Parse(System.String,System.String@)"> <summary> Returns the object URI as an out parameter, and the URI of the current channel as the return value. </summary> <returns> The URI of the current channel, or null if the URI does not belong to this channel. </returns> <param name="url"> The URL of the object. </param> <param name="objectURI"> When this method returns, contains a <see cref="T:System.String" /> that holds the object URI. This parameter is passed uninitialized. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Channels.IChannelDataStore"> <summary> Stores channel data for the remoting channels. </summary> </member> <member name="P:System.Runtime.Remoting.Channels.IChannelDataStore.ChannelUris"> <summary> Gets an array of channel URIs to which the current channel maps. </summary> <returns> An array of channel URIs to which the current channel maps. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.IChannelDataStore.Item(System.Object)"> <summary> Gets or sets the data object associated with the specified key for the implementing channel. </summary> <returns> The specified data object for the implementing channel. </returns> <param name="key"> The key the data object is associated with. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Channels.IChannelReceiver"> <summary> Provides required functions and properties for the receiver channels. </summary> </member> <member name="P:System.Runtime.Remoting.Channels.IChannelReceiver.ChannelData"> <summary> Gets the channel-specific data. </summary> <returns> The channel data. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.IChannelReceiver.GetUrlsForUri(System.String)"> <summary> Returns an array of all the URLs for a URI. </summary> <returns> An array of the URLs. </returns> <param name="objectURI"> The URI for which URLs are required. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IChannelReceiver.StartListening(System.Object)"> <summary> Instructs the current channel to start listening for requests. </summary> <param name="data"> Optional initialization information. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IChannelReceiver.StopListening(System.Object)"> <summary> Instructs the current channel to stop listening for requests. </summary> <param name="data"> Optional state information for the channel. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Channels.IChannelReceiverHook"> <summary> Indicates that the implementing channel wants to hook into the outside listener service. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.IChannelReceiverHook.AddHookChannelUri(System.String)"> <summary> Adds a URI on which the channel hook will listen. </summary> <param name="channelUri"> A URI on which the channel hook will listen. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.Channels.IChannelReceiverHook.ChannelScheme"> <summary> Gets the type of listener to hook into. </summary> <returns> The type of listener to hook into (for example, "http"). </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.IChannelReceiverHook.ChannelSinkChain"> <summary> Gets the channel sink chain that the current channel is using. </summary> <returns> The channel sink chain that the current channel is using. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.IChannelReceiverHook.WantsToListen"> <summary> Gets a Boolean value that indicates whether <see cref="T:System.Runtime.Remoting.Channels.IChannelReceiverHook" /> needs to be hooked into the outside listener service. </summary> <returns> A Boolean value that indicates whether <see cref="T:System.Runtime.Remoting.Channels.IChannelReceiverHook" /> needs to be hooked into the outside listener service. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Channels.IChannelSender"> <summary> Provides required functions and properties for the sender channels. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.IChannelSender.CreateMessageSink(System.String,System.Object,System.String@)"> <summary> Returns a channel message sink that delivers messages to the specified URL or channel data object. </summary> <returns> A channel message sink that delivers messages to the specified URL or channel data object, or null if the channel cannot connect to the given endpoint. </returns> <param name="url"> The URL to which the new sink will deliver messages. Can be null. </param> <param name="remoteChannelData"> The channel data object of the remote host to which the new sink will deliver messages. Can be null. </param> <param name="objectURI"> When this method returns, contains a URI of the new channel message sink that delivers messages to the specified URL or channel data object. This parameter is passed uninitialized. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Channels.IChannelSinkBase"> <summary> Provides the base interface for channel sinks. </summary> </member> <member name="P:System.Runtime.Remoting.Channels.IChannelSinkBase.Properties"> <summary> Gets a dictionary through which properties on the sink can be accessed. </summary> <returns> A dictionary through which properties on the sink can be accessed, or null if the channel sink does not support properties. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Channels.IClientChannelSink"> <summary> Provides required functions and properties for client channel sinks. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.IClientChannelSink.AsyncProcessRequest(System.Runtime.Remoting.Channels.IClientChannelSinkStack,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)"> <summary> Requests asynchronous processing of a method call on the current sink. </summary> <param name="sinkStack"> A stack of channel sinks that called this sink. </param> <param name="msg"> The message to process. </param> <param name="headers"> The headers to add to the outgoing message heading to the server. </param> <param name="stream"> The stream headed to the transport sink. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IClientChannelSink.AsyncProcessResponse(System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)"> <summary> Requests asynchronous processing of a response to a method call on the current sink. </summary> <param name="sinkStack"> A stack of sinks that called this sink. </param> <param name="state"> Information generated on the request side that is associated with this sink. </param> <param name="headers"> The headers retrieved from the server response stream. </param> <param name="stream"> The stream coming back from the transport sink. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IClientChannelSink.GetRequestStream(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders)"> <summary> Returns the <see cref="T:System.IO.Stream" /> onto which the provided message is to be serialized. </summary> <returns> The <see cref="T:System.IO.Stream" /> onto which the provided message is to be serialized. </returns> <param name="msg"> The <see cref="T:System.Runtime.Remoting.Messaging.IMethodCallMessage" /> containing details about the method call. </param> <param name="headers"> The headers to add to the outgoing message heading to the server. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.Channels.IClientChannelSink.NextChannelSink"> <summary> Gets the next client channel sink in the client sink chain. </summary> <returns> The next client channel sink in the client sink chain. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.IClientChannelSink.ProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream,System.Runtime.Remoting.Channels.ITransportHeaders@,System.IO.Stream@)"> <summary> Requests message processing from the current sink. </summary> <param name="msg"> The message to process. </param> <param name="requestHeaders"> The headers to add to the outgoing message heading to the server. </param> <param name="requestStream"> The stream headed to the transport sink. </param> <param name="responseHeaders"> When this method returns, contains a <see cref="T:System.Runtime.Remoting.Channels.ITransportHeaders" /> interface that holds the headers that the server returned. This parameter is passed uninitialized. </param> <param name="responseStream"> When this method returns, contains a <see cref="T:System.IO.Stream" /> coming back from the transport sink. This parameter is passed uninitialized. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider"> <summary> Creates client channel sinks for the client channel through which remoting messages flow. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.IClientChannelSinkProvider.CreateSink(System.Runtime.Remoting.Channels.IChannelSender,System.String,System.Object)"> <summary> Creates a sink chain. </summary> <returns> The first sink of the newly formed channel sink chain, or null, which indicates that this provider will not or cannot provide a connection for this endpoint. </returns> <param name="channel"> Channel for which the current sink chain is being constructed. </param> <param name="url"> The URL of the object to connect to. This parameter can be null if the connection is based entirely on the information contained in the <paramref name="remoteChannelData" /> parameter. </param> <param name="remoteChannelData"> A channel data object that describes a channel on the remote server. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.Channels.IClientChannelSinkProvider.Next"> <summary> Gets or sets the next sink provider in the channel sink provider chain. </summary> <returns> The next sink provider in the channel sink provider chain. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Channels.IClientChannelSinkStack"> <summary> Provides functionality for a stack of client channel sinks that must be invoked during an asynchronous message response decoding. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.IClientChannelSinkStack.Pop(System.Runtime.Remoting.Channels.IClientChannelSink)"> <summary> Pops the information associated with all the sinks from the sink stack up to and including the specified sink. </summary> <returns> Information generated on the request side and associated with the specified sink. </returns> <param name="sink"> The sink to remove and return from the sink stack. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IClientChannelSinkStack.Push(System.Runtime.Remoting.Channels.IClientChannelSink,System.Object)"> <summary> Pushes the specified sink and information associated with it onto the sink stack. </summary> <param name="sink"> The sink to push onto the sink stack. </param> <param name="state"> Information generated on the request side that is needed on the response side. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Channels.IClientFormatterSink"> <summary> Marks a sink as a client formatter sink that serializes messages into a stream. </summary> </member> <member name="T:System.Runtime.Remoting.Channels.IClientFormatterSinkProvider"> <summary> Marks a client channel sink provider as a client formatter sink provider. </summary> </member> <member name="T:System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack"> <summary> Provides the stack functionality for a stack of client response channel sinks that must be invoked during an asynchronous message response decoding. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack.AsyncProcessResponse(System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)"> <summary> Requests asynchronous processing of a method call on the sinks in the current sink stack. </summary> <param name="headers"> The headers retrieved from the server response stream. </param> <param name="stream"> The stream coming back from the transport sink. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> The current sink stack is empty. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack.DispatchException(System.Exception)"> <summary> Dispatches the specified exception on the reply sink. </summary> <param name="e"> The exception to dispatch to the server. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack.DispatchReplyMessage(System.Runtime.Remoting.Messaging.IMessage)"> <summary> Dispatches the specified reply message on the reply sink. </summary> <param name="msg"> The <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> to dispatch. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Channels.ISecurableChannel"> <summary> The <see cref="T:System.Runtime.Remoting.Channels.ISecurableChannel" /> contains one property, <see cref="P:System.Runtime.Remoting.Channels.ISecurableChannel.IsSecured" />, which gets or sets a Boolean value that indicates whether the current channel is secure. </summary> </member> <member name="P:System.Runtime.Remoting.Channels.ISecurableChannel.IsSecured"> <summary> Gets or sets a Boolean value that indicates whether the current channel is secure. </summary> <returns> A Boolean value that indicates whether the current channel is secure. </returns> </member> <member name="T:System.Runtime.Remoting.Channels.IServerChannelSink"> <summary> Provides methods used for security and transport sinks. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.IServerChannelSink.AsyncProcessResponse(System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)"> <summary> Requests processing from the current sink of the response from a method call sent asynchronously. </summary> <param name="sinkStack"> A stack of sinks leading back to the server transport sink. </param> <param name="state"> Information generated on the request side that is associated with this sink. </param> <param name="msg"> The response message. </param> <param name="headers"> The headers to add to the return message heading to the client. </param> <param name="stream"> The stream heading back to the transport sink. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IServerChannelSink.GetResponseStream(System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders)"> <summary> Returns the <see cref="T:System.IO.Stream" /> onto which the provided response message is to be serialized. </summary> <returns> The <see cref="T:System.IO.Stream" /> onto which the provided response message is to be serialized. </returns> <param name="sinkStack"> A stack of sinks leading back to the server transport sink. </param> <param name="state"> The state that has been pushed to the stack by this sink. </param> <param name="msg"> The response message to serialize. </param> <param name="headers"> The headers to put in the response stream to the client. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.Channels.IServerChannelSink.NextChannelSink"> <summary> Gets the next server channel sink in the server sink chain. </summary> <returns> The next server channel sink in the server sink chain. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have the required <see cref="F:System.Security.Permissions.SecurityPermissionFlag.Infrastructure" /> permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.IServerChannelSink.ProcessMessage(System.Runtime.Remoting.Channels.IServerChannelSinkStack,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream,System.Runtime.Remoting.Messaging.IMessage@,System.Runtime.Remoting.Channels.ITransportHeaders@,System.IO.Stream@)"> <summary> Requests message processing from the current sink. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Channels.ServerProcessing" /> status value that provides information about how message was processed. </returns> <param name="sinkStack"> A stack of channel sinks that called the current sink. </param> <param name="requestMsg"> The message that contains the request. </param> <param name="requestHeaders"> Headers retrieved from the incoming message from the client. </param> <param name="requestStream"> The stream that needs to be to processed and passed on to the deserialization sink. </param> <param name="responseMsg"> When this method returns, contains a <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> that holds the response message. This parameter is passed uninitialized. </param> <param name="responseHeaders"> When this method returns, contains a <see cref="T:System.Runtime.Remoting.Channels.ITransportHeaders" /> that holds the headers that are to be added to return message heading to the client. This parameter is passed uninitialized. </param> <param name="responseStream"> When this method returns, contains a <see cref="T:System.IO.Stream" /> that is heading back to the transport sink. This parameter is passed uninitialized. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider"> <summary> Creates server channel sinks for the server channel through which remoting messages flow. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.IServerChannelSinkProvider.CreateSink(System.Runtime.Remoting.Channels.IChannelReceiver)"> <summary> Creates a sink chain. </summary> <returns> The first sink of the newly formed channel sink chain, or null, which indicates that this provider will not or cannot provide a connection for this endpoint. </returns> <param name="channel"> The channel for which to create the channel sink chain. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IServerChannelSinkProvider.GetChannelData(System.Runtime.Remoting.Channels.IChannelDataStore)"> <summary> Returns the channel data for the channel that the current sink is associated with. </summary> <param name="channelData"> A <see cref="T:System.Runtime.Remoting.Channels.IChannelDataStore" /> object in which the channel data is to be returned. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.Channels.IServerChannelSinkProvider.Next"> <summary> Gets or sets the next sink provider in the channel sink provider chain. </summary> <returns> The next sink provider in the channel sink provider chain. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Channels.IServerChannelSinkStack"> <summary> Provides the stack functionality for a stack of server channel sinks. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.IServerChannelSinkStack.Pop(System.Runtime.Remoting.Channels.IServerChannelSink)"> <summary> Pops the information associated with all the sinks from the sink stack up to and including the specified sink. </summary> <returns> Information generated on the request side and associated with the specified sink. </returns> <param name="sink"> The sink to remove and return from the sink stack. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IServerChannelSinkStack.Push(System.Runtime.Remoting.Channels.IServerChannelSink,System.Object)"> <summary> Pushes the specified sink and information associated with it onto the sink stack. </summary> <param name="sink"> The sink to push onto the sink stack. </param> <param name="state"> Information generated on the request side that is needed on the response side. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Channels.IServerChannelSinkStack.ServerCallback(System.IAsyncResult)"> <summary> Presents a callback delegate to handle a callback after a message has been dispatched asynchronously. </summary> <param name="ar"> The status and state of an asynchronous operation on a remote object. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.IServerChannelSinkStack.Store(System.Runtime.Remoting.Channels.IServerChannelSink,System.Object)"> <summary> Stores a message sink and its associated state for later asynchronous processing. </summary> <param name="sink"> A server channel sink. </param> <param name="state"> The state associated with <paramref name="sink" />. </param> </member> <member name="M:System.Runtime.Remoting.Channels.IServerChannelSinkStack.StoreAndDispatch(System.Runtime.Remoting.Channels.IServerChannelSink,System.Object)"> <summary> Stores a message sink and its associated state, and then dispatches a message asynchronously, using the sink just stored and any other stored sinks. </summary> <param name="sink"> A server channel sink. </param> <param name="state"> The state associated with <paramref name="sink" />. </param> </member> <member name="T:System.Runtime.Remoting.Channels.IServerFormatterSinkProvider"> <summary> Marks a server channel sink provider as a server formatter sink provider. </summary> </member> <member name="T:System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack"> <summary> Provides the stack functionality for a stack of server response channel sinks. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack.AsyncProcessResponse(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)"> <summary> Requests asynchronous processing of a method call on the sinks in the current sink stack. </summary> <param name="msg"> The response message. </param> <param name="headers"> The headers retrieved from the server response stream. </param> <param name="stream"> The stream coming back from the transport sink. </param> </member> <member name="M:System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack.GetResponseStream(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders)"> <summary> Returns the <see cref="T:System.IO.Stream" /> onto which the specified message is to be serialized. </summary> <returns> The <see cref="T:System.IO.Stream" /> onto which the specified message is to be serialized. </returns> <param name="msg"> The message to be serialized onto the requested stream. </param> <param name="headers"> The headers retrieved from the server response stream. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Channels.ITransportHeaders"> <summary> Stores a collection of headers used in the channel sinks. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.ITransportHeaders.GetEnumerator"> <summary> Returns a <see cref="T:System.Collections.IEnumerator" /> that iterates over all entries in the <see cref="T:System.Runtime.Remoting.Channels.ITransportHeaders" /> object. </summary> <returns> A <see cref="T:System.Collections.IEnumerator" /> that iterates over all entries in the <see cref="T:System.Runtime.Remoting.Channels.ITransportHeaders" /> object. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.ITransportHeaders.Item(System.Object)"> <summary> Gets or sets a transport header associated with the given key. </summary> <returns> A transport header associated with the given key. </returns> <param name="key"> The key the requested transport header is associated with. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Channels.ServerChannelSinkStack"> <summary> Holds the stack of server channel sinks. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.ServerChannelSinkStack.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.ServerChannelSinkStack" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.ServerChannelSinkStack.AsyncProcessResponse(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)"> <summary> Requests asynchronous processing of a method call on the sinks in the current sink stack. </summary> <param name="msg"> The message to be serialized onto the requested stream. </param> <param name="headers"> The headers retrieved from the server response stream. </param> <param name="stream"> The stream coming back from the transport sink. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> The current sink stack is empty. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ServerChannelSinkStack.GetResponseStream(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders)"> <summary> Returns the <see cref="T:System.IO.Stream" /> onto which the specified message is to be serialized. </summary> <returns> The <see cref="T:System.IO.Stream" /> onto which the specified message is to be serialized. </returns> <param name="msg"> The message to be serialized onto the requested stream. </param> <param name="headers"> The headers retrieved from the server response stream. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> The sink stack is empty. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ServerChannelSinkStack.Pop(System.Runtime.Remoting.Channels.IServerChannelSink)"> <summary> Pops the information associated with all the sinks from the sink stack up to and including the specified sink. </summary> <returns> Information generated on the request side and associated with the specified sink. </returns> <param name="sink"> The sink to remove and return from the sink stack. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> The current sink stack is empty, or the specified sink was never pushed onto the current stack. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ServerChannelSinkStack.Push(System.Runtime.Remoting.Channels.IServerChannelSink,System.Object)"> <summary> Pushes the specified sink and information associated with it onto the sink stack. </summary> <param name="sink"> The sink to push onto the sink stack. </param> <param name="state"> Information generated on the request side that is needed on the response side. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ServerChannelSinkStack.ServerCallback(System.IAsyncResult)"> <summary> Provides a <see cref="T:System.AsyncCallback" /> delegate to handle a callback after a message has been dispatched asynchronously. </summary> <param name="ar"> The status and state of an asynchronous operation on a remote object. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ServerChannelSinkStack.Store(System.Runtime.Remoting.Channels.IServerChannelSink,System.Object)"> <summary> Stores a message sink and its associated state for later asynchronous processing. </summary> <param name="sink"> A server channel sink. </param> <param name="state"> The state associated with <paramref name="sink" />. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> The current sink stack is empty. -or- The specified sink was never pushed onto the current stack. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Channels.ServerChannelSinkStack.StoreAndDispatch(System.Runtime.Remoting.Channels.IServerChannelSink,System.Object)"> <summary> Stores a message sink and its associated state, and then dispatches a message asynchronously, using the sink just stored and any other stored sinks. </summary> <param name="sink"> A server channel sink. </param> <param name="state"> The state associated with <paramref name="sink" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Channels.ServerProcessing"> <summary> Indicates the status of the server message processing. </summary> </member> <member name="F:System.Runtime.Remoting.Channels.ServerProcessing.Complete"> <summary> The server synchronously processed the message. </summary> </member> <member name="F:System.Runtime.Remoting.Channels.ServerProcessing.OneWay"> <summary> The message was dispatched and no response can be sent. </summary> </member> <member name="F:System.Runtime.Remoting.Channels.ServerProcessing.Async"> <summary> The call was dispatched asynchronously, which indicates that the sink must store response data on the stack for later processing. </summary> </member> <member name="T:System.Runtime.Remoting.Channels.SinkProviderData"> <summary> Stores sink provider data for sink providers. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.SinkProviderData.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> class. </summary> <param name="name"> The name of the sink provider that the data in the current <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> object is associated with. </param> </member> <member name="P:System.Runtime.Remoting.Channels.SinkProviderData.Children"> <summary> Gets a list of the child <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> nodes. </summary> <returns> A <see cref="T:System.Collections.IList" /> of the child <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> nodes. </returns> </member> <member name="P:System.Runtime.Remoting.Channels.SinkProviderData.Name"> <summary> Gets the name of the sink provider that the data in the current <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> object is associated with. </summary> <returns> A <see cref="T:System.String" /> with the name of the XML node that the data in the current <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> object is associated with. </returns> </member> <member name="P:System.Runtime.Remoting.Channels.SinkProviderData.Properties"> <summary> Gets a dictionary through which properties on the sink provider can be accessed. </summary> <returns> A dictionary through which properties on the sink provider can be accessed. </returns> </member> <member name="T:System.Runtime.Remoting.Channels.TransportHeaders"> <summary> Stores a collection of headers used in the channel sinks. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.TransportHeaders.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.TransportHeaders" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Channels.TransportHeaders.GetEnumerator"> <summary> Returns an enumerator of the stored transport headers. </summary> <returns> An enumerator of the stored transport headers. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Channels.TransportHeaders.Item(System.Object)"> <summary> Gets or sets a transport header that is associated with the given key. </summary> <returns> A transport header that is associated with the given key, or null if the key was not found. </returns> <param name="key"> The <see cref="T:System.String" /> that the requested header is associated with. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Contexts.Context"> <summary> Defines an environment for the objects that are resident inside it and for which a policy can be enforced. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Contexts.Context" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.AllocateDataSlot"> <summary> Allocates an unnamed data slot. </summary> <returns> A local data slot. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.AllocateNamedDataSlot(System.String)"> <summary> Allocates a named data slot. </summary> <returns> A local data slot object. </returns> <param name="name"> The required name for the data slot. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Contexts.Context.ContextID"> <summary> Gets the context ID for the current context. </summary> <returns> The context ID for the current context. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Contexts.Context.ContextProperties"> <summary> Gets the array of the current context properties. </summary> <returns> The current context properties array; otherwise, null if the context does not have any properties attributed to it. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Contexts.Context.DefaultContext"> <summary> Gets the default context for the current application domain. </summary> <returns> The default context for the <see cref="T:System.AppDomain" /> namespace. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.DoCallBack(System.Runtime.Remoting.Contexts.CrossContextDelegate)"> <summary> Executes code in another context. </summary> <param name="deleg"> The delegate used to request the callback. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.Finalize"> <summary> Cleans up the backing objects for the nondefault contexts. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.FreeNamedDataSlot(System.String)"> <summary> Frees a named data slot on all the contexts. </summary> <param name="name"> The name of the data slot to free. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.Freeze"> <summary> Freezes the context, making it impossible to add or remove context properties from the current context. </summary> <exception cref="T:System.InvalidOperationException"> The context is already frozen. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.GetData(System.LocalDataStoreSlot)"> <summary> Retrieves the value from the specified slot on the current context. </summary> <returns> Returns the data associated with <paramref name="slot" />. </returns> <param name="slot"> The data slot that contains the data. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.GetNamedDataSlot(System.String)"> <summary> Looks up a named data slot. </summary> <returns> Returns a local data slot. </returns> <param name="name"> The data slot name. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.GetProperty(System.String)"> <summary> Returns a specific context property, specified by name. </summary> <returns> The specified context property. </returns> <param name="name"> The name of the property. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.RegisterDynamicProperty(System.Runtime.Remoting.Contexts.IDynamicProperty,System.ContextBoundObject,System.Runtime.Remoting.Contexts.Context)"> <summary> Registers a dynamic property implementing the <see cref="T:System.Runtime.Remoting.Contexts.IDynamicProperty" /> interface with the remoting service. </summary> <returns>true if the property was successfully registered; otherwise, false. </returns> <param name="prop"> The dynamic property to register. </param> <param name="obj"> The object/proxy for which the <paramref name="property" /> is registered. </param> <param name="ctx"> The context for which the <paramref name="property" /> is registered. </param> <exception cref="T:System.ArgumentNullException"> Either <paramref name="prop" /> or its name is null, or it is not dynamic (it does not implement <see cref="T:System.Runtime.Remoting.Contexts.IDynamicProperty" />). </exception> <exception cref="T:System.ArgumentException"> Both an object as well as a context are specified (both <paramref name="obj" /> and <paramref name="ctx" /> are not null). </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.SetData(System.LocalDataStoreSlot,System.Object)"> <summary> Sets the data in the specified slot on the current context. </summary> <param name="slot"> The data slot where the data is to be added. </param> <param name="data"> The data that is to be added. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.SetProperty(System.Runtime.Remoting.Contexts.IContextProperty)"> <summary> Sets a specific context property by name. </summary> <param name="prop"> The actual context property. </param> <exception cref="T:System.InvalidOperationException"> There is an attempt to add properties to the default context. </exception> <exception cref="T:System.InvalidOperationException"> The context is frozen. </exception> <exception cref="T:System.ArgumentNullException"> The property or the property name is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.ToString"> <summary> Returns a <see cref="T:System.String" /> class representation of the current context. </summary> <returns> A <see cref="T:System.String" /> class representation of the current context. </returns> </member> <member name="M:System.Runtime.Remoting.Contexts.Context.UnregisterDynamicProperty(System.String,System.ContextBoundObject,System.Runtime.Remoting.Contexts.Context)"> <summary> Unregisters a dynamic property implementing the <see cref="T:System.Runtime.Remoting.Contexts.IDynamicProperty" /> interface. </summary> <returns>true if the object was successfully unregistered; otherwise, false. </returns> <param name="name"> The name of the dynamic property to unregister. </param> <param name="obj"> The object/proxy for which the <paramref name="property" /> is registered. </param> <param name="ctx"> The context for which the <paramref name="property" /> is registered. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> Both an object as well as a context are specified (both <paramref name="obj" /> and <paramref name="ctx" /> are not null). </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Contexts.ContextAttribute"> <summary> Provides the default implementations of the <see cref="T:System.Runtime.Remoting.Contexts.IContextAttribute" /> and <see cref="T:System.Runtime.Remoting.Contexts.IContextProperty" /> interfaces. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.ContextAttribute.#ctor(System.String)"> <summary> Creates an instance of the <see cref="T:System.Runtime.Remoting.Contexts.ContextAttribute" /> class with the specified name. </summary> <param name="name"> The name of the context attribute. </param> </member> <member name="F:System.Runtime.Remoting.Contexts.ContextAttribute.AttributeName"> <summary> Indicates the name of the context attribute. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.ContextAttribute.Equals(System.Object)"> <summary> Returns a Boolean value indicating whether this instance is equal to the specified object. </summary> <returns>true if <paramref name="o" /> is not null and if the object names are equivalent; otherwise, false. </returns> <param name="o"> The object to compare with this instance. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.ContextAttribute.Freeze(System.Runtime.Remoting.Contexts.Context)"> <summary> Called when the context is frozen. </summary> <param name="newContext"> The context to freeze. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.ContextAttribute.GetHashCode"> <summary> Returns the hashcode for this instance of <see cref="T:System.Runtime.Remoting.Contexts.ContextAttribute" />. </summary> <returns> The hashcode for this instance of <see cref="T:System.Runtime.Remoting.Contexts.ContextAttribute" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.ContextAttribute.GetPropertiesForNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Adds the current context property to the given message. </summary> <param name="ctorMsg"> The <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" /> to which to add the context property. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="ctorMsg" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.ContextAttribute.IsContextOK(System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Returns a Boolean value indicating whether the context parameter meets the context attribute's requirements. </summary> <returns>true if the passed in context is okay; otherwise, false. </returns> <param name="ctx"> The context in which to check. </param> <param name="ctorMsg"> The <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" /> to which to add the context property. </param> <exception cref="T:System.ArgumentNullException"> Either <paramref name="ctx" /> or <paramref name="ctorMsg" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.ContextAttribute.IsNewContextOK(System.Runtime.Remoting.Contexts.Context)"> <summary> Returns a Boolean value indicating whether the context property is compatible with the new context. </summary> <returns>true if the context property is okay with the new context; otherwise, false. </returns> <param name="newCtx"> The new context in which the property has been created. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Contexts.ContextAttribute.Name"> <summary> Gets the name of the context attribute. </summary> <returns> The name of the context attribute. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Contexts.ContextProperty"> <summary> Holds the name/value pair of the property name and the object representing the property of a context. </summary> </member> <member name="P:System.Runtime.Remoting.Contexts.ContextProperty.Name"> <summary> Gets the name of the T:System.Runtime.Remoting.Contexts.ContextProperty class. </summary> <returns> The name of the <see cref="T:System.Runtime.Remoting.Contexts.ContextProperty" /> class. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Contexts.ContextProperty.Property"> <summary> Gets the object representing the property of a context. </summary> <returns> The object representing the property of a context. </returns> </member> <member name="T:System.Runtime.Remoting.Contexts.CrossContextDelegate"> <summary> Represents the method that will handle the requests of execution of some code in another context. </summary> </member> <member name="T:System.Runtime.Remoting.Contexts.IContextAttribute"> <summary> Identifies a context attribute. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.IContextAttribute.GetPropertiesForNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Returns context properties to the caller in the given message. </summary> <param name="msg"> The <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" /> to which to add the context properties. </param> </member> <member name="M:System.Runtime.Remoting.Contexts.IContextAttribute.IsContextOK(System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Returns a Boolean value indicating whether the specified context meets the context attribute's requirements. </summary> <returns>true if the passed in context is okay; otherwise, false. </returns> <param name="ctx"> The context to check against the current context attribute. </param> <param name="msg"> The construction call, parameters of which need to be checked against the current context. </param> </member> <member name="T:System.Runtime.Remoting.Contexts.IContextProperty"> <summary> Gathers naming information from the context property and determines whether the new context is ok for the context property. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.IContextProperty.Freeze(System.Runtime.Remoting.Contexts.Context)"> <summary> Called when the context is frozen. </summary> <param name="newContext"> The context to freeze. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.IContextProperty.IsNewContextOK(System.Runtime.Remoting.Contexts.Context)"> <summary> Returns a Boolean value indicating whether the context property is compatible with the new context. </summary> <returns>true if the context property can coexist with the other context properties in the given context; otherwise, false. </returns> <param name="newCtx"> The new context in which the <see cref="T:System.Runtime.Remoting.Contexts.ContextProperty" /> has been created. </param> </member> <member name="P:System.Runtime.Remoting.Contexts.IContextProperty.Name"> <summary> Gets the name of the property under which it will be added to the context. </summary> <returns> The name of the property. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Contexts.IContextPropertyActivator"> <summary> Indicates that the implementing property is interested in participating in activation and might not have provided a message sink. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.IContextPropertyActivator.CollectFromClientContext(System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Called on each client context property that has this interface, before the construction request leaves the client. </summary> <param name="msg"> An <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" />. </param> </member> <member name="M:System.Runtime.Remoting.Contexts.IContextPropertyActivator.CollectFromServerContext(System.Runtime.Remoting.Activation.IConstructionReturnMessage)"> <summary> Called on each server context property that has this interface, before the construction response leaves the server for the client. </summary> <param name="msg"> An <see cref="T:System.Runtime.Remoting.Activation.IConstructionReturnMessage" />. </param> </member> <member name="M:System.Runtime.Remoting.Contexts.IContextPropertyActivator.DeliverClientContextToServerContext(System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Called on each client context property that has this interface, when the construction request returns to the client from the server. </summary> <returns>true if successful; otherwise, false. </returns> <param name="msg"> An <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" />. </param> </member> <member name="M:System.Runtime.Remoting.Contexts.IContextPropertyActivator.DeliverServerContextToClientContext(System.Runtime.Remoting.Activation.IConstructionReturnMessage)"> <summary> Called on each client context property that has this interface, when the construction request returns to the client from the server. </summary> <returns>true if successful; otherwise, false. </returns> <param name="msg"> An <see cref="T:System.Runtime.Remoting.Activation.IConstructionReturnMessage" />. </param> </member> <member name="M:System.Runtime.Remoting.Contexts.IContextPropertyActivator.IsOKToActivate(System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Indicates whether it is all right to activate the object type indicated in the <paramref name="msg" /> parameter. </summary> <returns> A Boolean value indicating whether the requested type can be activated. </returns> <param name="msg"> An <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" />. </param> </member> <member name="T:System.Runtime.Remoting.Contexts.IContributeClientContextSink"> <summary> Contributes an interception sink at the context boundary on the client end of a remoting call. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.IContributeClientContextSink.GetClientContextSink(System.Runtime.Remoting.Messaging.IMessageSink)"> <summary> Takes the first sink in the chain of sinks composed so far, and then chains its message sink in front of the chain already formed. </summary> <returns> The composite sink chain. </returns> <param name="nextSink"> The chain of sinks composed so far. </param> </member> <member name="T:System.Runtime.Remoting.Contexts.IContributeDynamicSink"> <summary> Indicates that the implementing property will be registered at runtime through the <see cref="M:System.Runtime.Remoting.Contexts.Context.RegisterDynamicProperty(System.Runtime.Remoting.Contexts.IDynamicProperty,System.ContextBoundObject,System.Runtime.Remoting.Contexts.Context)" /> method. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.IContributeDynamicSink.GetDynamicSink"> <summary> Returns the message sink that will be notified of call start and finish events through the <see cref="T:System.Runtime.Remoting.Contexts.IDynamicMessageSink" /> interface. </summary> <returns> A dynamic sink that exposes the <see cref="T:System.Runtime.Remoting.Contexts.IDynamicMessageSink" /> interface. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Contexts.IContributeEnvoySink"> <summary> Contributes an envoy message sink on the client end. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.IContributeEnvoySink.GetEnvoySink(System.MarshalByRefObject,System.Runtime.Remoting.Messaging.IMessageSink)"> <summary> Takes the first sink in the chain of sinks composed so far, and then chains its message sink in front of the chain already formed. </summary> <returns> The composite sink chain. </returns> <param name="obj"> The server object for which the chain is being created. </param> <param name="nextSink"> The chain of sinks composed so far. </param> </member> <member name="T:System.Runtime.Remoting.Contexts.IContributeObjectSink"> <summary> Contributes an object-specific interception sink on the server end of a remoting call. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.IContributeObjectSink.GetObjectSink(System.MarshalByRefObject,System.Runtime.Remoting.Messaging.IMessageSink)"> <summary> Chains the message sink of the provided server object in front of the given sink chain. </summary> <returns> The composite sink chain. </returns> <param name="obj"> The server object which provides the message sink that is to be chained in front of the given chain. </param> <param name="nextSink"> The chain of sinks composed so far. </param> </member> <member name="T:System.Runtime.Remoting.Contexts.IContributeServerContextSink"> <summary> Contributes an interception sink at the context boundary on the server end of a remoting call. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.IContributeServerContextSink.GetServerContextSink(System.Runtime.Remoting.Messaging.IMessageSink)"> <summary> Takes the first sink in the chain of sinks composed so far, and then chains its message sink in front of the chain already formed. </summary> <returns> The composite sink chain. </returns> <param name="nextSink"> The chain of sinks composed so far. </param> </member> <member name="T:System.Runtime.Remoting.Contexts.IDynamicMessageSink"> <summary> Indicates that the implementing message sink will be provided by dynamically registered properties. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.IDynamicMessageSink.ProcessMessageFinish(System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)"> <summary> Indicates that a call is returning. </summary> <param name="replyMsg"> A reply message. </param> <param name="bCliSide"> A value of true if the method is invoked on the client side and false if it is invoked on the server side. </param> <param name="bAsync"> A value of true if this is an asynchronic call and false if it is a synchronic call. </param> </member> <member name="M:System.Runtime.Remoting.Contexts.IDynamicMessageSink.ProcessMessageStart(System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)"> <summary> Indicates that a call is starting. </summary> <param name="reqMsg"> A request message. </param> <param name="bCliSide"> A value of true if the method is invoked on the client side and false if the method is on the server side. </param> <param name="bAsync"> A value of true if this is an asynchronic call and false if it is a synchronic call. </param> </member> <member name="T:System.Runtime.Remoting.Contexts.IDynamicProperty"> <summary> Indicates that the implementing property should be registered at runtime through the <see cref="M:System.Runtime.Remoting.Contexts.Context.RegisterDynamicProperty(System.Runtime.Remoting.Contexts.IDynamicProperty,System.ContextBoundObject,System.Runtime.Remoting.Contexts.Context)" /> method. </summary> </member> <member name="P:System.Runtime.Remoting.Contexts.IDynamicProperty.Name"> <summary> Gets the name of the dynamic property. </summary> <returns> The name of the dynamic property. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Contexts.SynchronizationAttribute"> <summary> Enforces a synchronization domain for the current context and all contexts that share the same instance. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.SynchronizationAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Contexts.SynchronizationAttribute" /> class with default values. </summary> </member> <member name="M:System.Runtime.Remoting.Contexts.SynchronizationAttribute.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Contexts.SynchronizationAttribute" /> class with a Boolean value indicating whether reentry is required. </summary> <param name="reEntrant"> A Boolean value indicating whether reentry is required. </param> </member> <member name="M:System.Runtime.Remoting.Contexts.SynchronizationAttribute.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Contexts.SynchronizationAttribute" /> class with a flag indicating the behavior of the object to which this attribute is applied. </summary> <param name="flag"> An integer value indicating the behavior of the object to which this attribute is applied. </param> <exception cref="T:System.ArgumentException"> The <paramref name="flag" /> parameter was not one of the defined flags. </exception> </member> <member name="M:System.Runtime.Remoting.Contexts.SynchronizationAttribute.#ctor(System.Int32,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Contexts.SynchronizationAttribute" /> class with a flag indicating the behavior of the object to which this attribute is applied, and a Boolean value indicating whether reentry is required. </summary> <param name="flag"> An integer value indicating the behavior of the object to which this attribute is applied. </param> <param name="reEntrant">true if reentry is required, and callouts must be intercepted and serialized; otherwise, false. </param> <exception cref="T:System.ArgumentException"> The <paramref name="flag" /> parameter was not one of the defined flags. </exception> </member> <member name="M:System.Runtime.Remoting.Contexts.SynchronizationAttribute.GetClientContextSink(System.Runtime.Remoting.Messaging.IMessageSink)"> <summary> Creates a CallOut sink and chains it in front of the provided chain of sinks at the context boundary on the client end of a remoting call. </summary> <returns> The composite sink chain with the new CallOut sink. </returns> <param name="nextSink"> The chain of sinks composed so far. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.SynchronizationAttribute.GetPropertiesForNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Adds the Synchronized context property to the specified <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" />. </summary> <param name="ctorMsg"> The <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" /> to which to add the property. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.SynchronizationAttribute.GetServerContextSink(System.Runtime.Remoting.Messaging.IMessageSink)"> <summary> Creates a synchronized dispatch sink and chains it in front of the provided chain of sinks at the context boundary on the server end of a remoting call. </summary> <returns> The composite sink chain with the new synchronized dispatch sink. </returns> <param name="nextSink"> The chain of sinks composed so far. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Contexts.SynchronizationAttribute.IsContextOK(System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Returns a Boolean value indicating whether the context parameter meets the context attribute's requirements. </summary> <returns>true if the passed in context is OK; otherwise, false. </returns> <param name="ctx"> The context to check. </param> <param name="msg"> Information gathered at construction time of the context bound object marked by this attribute. The <see cref="T:System.Runtime.Remoting.Contexts.SynchronizationAttribute" /> can inspect, add to, and remove properties from the context while determining if the context is acceptable to it. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="ctx" /> or <paramref name="msg" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Contexts.SynchronizationAttribute.IsReEntrant"> <summary> Gets or sets a Boolean value indicating whether reentry is required. </summary> <returns> A Boolean value indicating whether reentry is required. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Contexts.SynchronizationAttribute.Locked"> <summary> Gets or sets a Boolean value indicating whether the <see cref="T:System.Runtime.Remoting.Contexts.Context" /> implementing this instance of <see cref="T:System.Runtime.Remoting.Contexts.SynchronizationAttribute" /> is locked. </summary> <returns> A Boolean value indicating whether the <see cref="T:System.Runtime.Remoting.Contexts.Context" /> implementing this instance of <see cref="T:System.Runtime.Remoting.Contexts.SynchronizationAttribute" /> is locked. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="F:System.Runtime.Remoting.Contexts.SynchronizationAttribute.NOT_SUPPORTED"> <summary> Indicates that the class to which this attribute is applied cannot be created in a context that has synchronization. This field is constant. </summary> </member> <member name="F:System.Runtime.Remoting.Contexts.SynchronizationAttribute.REQUIRED"> <summary> Indicates that the class to which this attribute is applied must be created in a context that has synchronization. This field is constant. </summary> </member> <member name="F:System.Runtime.Remoting.Contexts.SynchronizationAttribute.REQUIRES_NEW"> <summary> Indicates that the class to which this attribute is applied must be created in a context with a new instance of the synchronization property each time. This field is constant. </summary> </member> <member name="F:System.Runtime.Remoting.Contexts.SynchronizationAttribute.SUPPORTED"> <summary> Indicates that the class to which this attribute is applied is not dependent on whether the context has synchronization. This field is constant. </summary> </member> <member name="T:System.Runtime.Remoting.Lifetime.ClientSponsor"> <summary> Provides a default implementation for a lifetime sponsor class. </summary> </member> <member name="M:System.Runtime.Remoting.Lifetime.ClientSponsor.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Lifetime.ClientSponsor" /> class with default values. </summary> </member> <member name="M:System.Runtime.Remoting.Lifetime.ClientSponsor.#ctor(System.TimeSpan)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Lifetime.ClientSponsor" /> class with the renewal time of the sponsored object. </summary> <param name="renewalTime"> The <see cref="T:System.TimeSpan" /> by which to increase the lifetime of the sponsored objects when renewal is requested. </param> </member> <member name="M:System.Runtime.Remoting.Lifetime.ClientSponsor.Close"> <summary> Empties the list objects registered with the current <see cref="T:System.Runtime.Remoting.Lifetime.ClientSponsor" />. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Lifetime.ClientSponsor.Finalize"> <summary> Frees the resources of the current <see cref="T:System.Runtime.Remoting.Lifetime.ClientSponsor" /> before the garbage collector reclaims them. </summary> </member> <member name="M:System.Runtime.Remoting.Lifetime.ClientSponsor.InitializeLifetimeService"> <summary> Initializes a new instance of <see cref="T:System.Runtime.Remoting.Lifetime.ClientSponsor" />, providing a lease for the current object. </summary> <returns> An <see cref="T:System.Runtime.Remoting.Lifetime.ILease" /> for the current object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Lifetime.ClientSponsor.Register(System.MarshalByRefObject)"> <summary> Registers the specified <see cref="T:System.MarshalByRefObject" /> for sponsorship. </summary> <returns>true if registration succeeded; otherwise, false. </returns> <param name="obj"> The object to register for sponsorship with the <see cref="T:System.Runtime.Remoting.Lifetime.ClientSponsor" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Lifetime.ClientSponsor.Renewal(System.Runtime.Remoting.Lifetime.ILease)"> <summary> Requests a sponsoring client to renew the lease for the specified object. </summary> <returns> The additional lease time for the specified object. </returns> <param name="lease"> The lifetime lease of the object that requires lease renewal. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Lifetime.ClientSponsor.RenewalTime"> <summary> Gets or sets the <see cref="T:System.TimeSpan" /> by which to increase the lifetime of the sponsored objects when renewal is requested. </summary> <returns> The <see cref="T:System.TimeSpan" /> by which to increase the lifetime of the sponsored objects when renewal is requested. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Lifetime.ClientSponsor.Unregister(System.MarshalByRefObject)"> <summary> Unregisters the specified <see cref="T:System.MarshalByRefObject" /> from the list of objects sponsored by the current <see cref="T:System.Runtime.Remoting.Lifetime.ClientSponsor" />. </summary> <param name="obj"> The object to unregister. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Lifetime.ILease"> <summary> Defines a lifetime lease object that is used by the remoting lifetime service. </summary> </member> <member name="P:System.Runtime.Remoting.Lifetime.ILease.CurrentLeaseTime"> <summary> Gets the amount of time remaining on the lease. </summary> <returns> The amount of time remaining on the lease. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Lifetime.ILease.CurrentState"> <summary> Gets the current <see cref="T:System.Runtime.Remoting.Lifetime.LeaseState" /> of the lease. </summary> <returns> The current <see cref="T:System.Runtime.Remoting.Lifetime.LeaseState" /> of the lease. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Lifetime.ILease.InitialLeaseTime"> <summary> Gets or sets the initial time for the lease. </summary> <returns> The initial time for the lease. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Lifetime.ILease.Register(System.Runtime.Remoting.Lifetime.ISponsor)"> <summary> Registers a sponsor for the lease without renewing the lease. </summary> <param name="obj"> The callback object of the sponsor. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Lifetime.ILease.Register(System.Runtime.Remoting.Lifetime.ISponsor,System.TimeSpan)"> <summary> Registers a sponsor for the lease, and renews it by the specified <see cref="T:System.TimeSpan" />. </summary> <param name="obj"> The callback object of the sponsor. </param> <param name="renewalTime"> The length of time to renew the lease by. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Lifetime.ILease.Renew(System.TimeSpan)"> <summary> Renews a lease for the specified time. </summary> <returns> The new expiration time of the lease. </returns> <param name="renewalTime"> The length of time to renew the lease by. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Lifetime.ILease.RenewOnCallTime"> <summary> Gets or sets the amount of time by which a call to the remote object renews the <see cref="P:System.Runtime.Remoting.Lifetime.ILease.CurrentLeaseTime" />. </summary> <returns> The amount of time by which a call to the remote object renews the <see cref="P:System.Runtime.Remoting.Lifetime.ILease.CurrentLeaseTime" />. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Lifetime.ILease.SponsorshipTimeout"> <summary> Gets or sets the amount of time to wait for a sponsor to return with a lease renewal time. </summary> <returns> The amount of time to wait for a sponsor to return with a lease renewal time. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Lifetime.ILease.Unregister(System.Runtime.Remoting.Lifetime.ISponsor)"> <summary> Removes a sponsor from the sponsor list. </summary> <param name="obj"> The lease sponsor to unregister. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Lifetime.ISponsor"> <summary> Indicates that the implementer wants to be a lifetime lease sponsor. </summary> </member> <member name="M:System.Runtime.Remoting.Lifetime.ISponsor.Renewal(System.Runtime.Remoting.Lifetime.ILease)"> <summary> Requests a sponsoring client to renew the lease for the specified object. </summary> <returns> The additional lease time for the specified object. </returns> <param name="lease"> The lifetime lease of the object that requires lease renewal. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Lifetime.LeaseState"> <summary> Indicates the possible lease states of a lifetime lease. </summary> </member> <member name="F:System.Runtime.Remoting.Lifetime.LeaseState.Null"> <summary> The lease is not initialized. </summary> </member> <member name="F:System.Runtime.Remoting.Lifetime.LeaseState.Initial"> <summary> The lease has been created, but is not yet active. </summary> </member> <member name="F:System.Runtime.Remoting.Lifetime.LeaseState.Active"> <summary> The lease is active and has not expired. </summary> </member> <member name="F:System.Runtime.Remoting.Lifetime.LeaseState.Renewing"> <summary> The lease has expired and is seeking sponsorship. </summary> </member> <member name="F:System.Runtime.Remoting.Lifetime.LeaseState.Expired"> <summary> The lease has expired and cannot be renewed. </summary> </member> <member name="T:System.Runtime.Remoting.Lifetime.LifetimeServices"> <summary> Controls the.NET remoting lifetime services. </summary> </member> <member name="M:System.Runtime.Remoting.Lifetime.LifetimeServices.#ctor"></member> <member name="P:System.Runtime.Remoting.Lifetime.LifetimeServices.LeaseManagerPollTime"> <summary> Gets or sets the time interval between each activation of the lease manager to clean up expired leases. </summary> <returns> The default amount of time the lease manager sleeps after checking for expired leases. </returns> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. This exception is thrown only when setting the property value. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Lifetime.LifetimeServices.LeaseTime"> <summary> Gets or sets the initial lease time span for an <see cref="T:System.AppDomain" />. </summary> <returns> The initial lease <see cref="T:System.TimeSpan" /> for objects that can have leases in the <see cref="T:System.AppDomain" />. </returns> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. This exception is thrown only when setting the property value. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Lifetime.LifetimeServices.RenewOnCallTime"> <summary> Gets or sets the amount of time by which the lease is extended every time a call comes in on the server object. </summary> <returns> The <see cref="T:System.TimeSpan" /> by which a lifetime lease in the current <see cref="T:System.AppDomain" /> is extended after each call. </returns> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. This exception is thrown only when setting the property value. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Lifetime.LifetimeServices.SponsorshipTimeout"> <summary> Gets or sets the amount of time the lease manager waits for a sponsor to return with a lease renewal time. </summary> <returns> The initial sponsorship time-out. </returns> <exception cref="T:System.Security.SecurityException"> At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. This exception is thrown only when setting the property value. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="RemotingConfiguration, Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.AsyncResult"> <summary> Encapsulates the results of an asynchronous operation on a delegate. </summary> </member> <member name="P:System.Runtime.Remoting.Messaging.AsyncResult.AsyncDelegate"> <summary> Gets the delegate object on which the asynchronous call was invoked. </summary> <returns> The delegate object on which the asynchronous call was invoked. </returns> </member> <member name="M:System.Runtime.Remoting.Messaging.AsyncResult.AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)"> <summary> Implements the <see cref="T:System.Runtime.Remoting.Messaging.IMessageSink" /> interface. </summary> <returns> No value is returned. </returns> <param name="msg"> The request <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> interface. </param> <param name="replySink"> The response <see cref="T:System.Runtime.Remoting.Messaging.IMessageSink" /> interface. </param> </member> <member name="P:System.Runtime.Remoting.Messaging.AsyncResult.AsyncState"> <summary> Gets the object provided as the last parameter of a BeginInvoke method call. </summary> <returns> The object provided as the last parameter of a BeginInvoke method call. </returns> </member> <member name="P:System.Runtime.Remoting.Messaging.AsyncResult.AsyncWaitHandle"> <summary> Gets a <see cref="T:System.Threading.WaitHandle" /> that encapsulates Win32 synchronization handles, and allows the implementation of various synchronization schemes. </summary> <returns> A <see cref="T:System.Threading.WaitHandle" /> that encapsulates Win32 synchronization handles, and allows the implementation of various synchronization schemes. </returns> </member> <member name="P:System.Runtime.Remoting.Messaging.AsyncResult.CompletedSynchronously"> <summary> Gets a value indicating whether the BeginInvoke call completed synchronously. </summary> <returns>true if the BeginInvoke call completed synchronously; otherwise, false. </returns> </member> <member name="P:System.Runtime.Remoting.Messaging.AsyncResult.EndInvokeCalled"> <summary> Gets or sets a value indicating whether EndInvoke has been called on the current <see cref="T:System.Runtime.Remoting.Messaging.AsyncResult" />. </summary> <returns>true if EndInvoke has been called on the current <see cref="T:System.Runtime.Remoting.Messaging.AsyncResult" />; otherwise, false. </returns> </member> <member name="M:System.Runtime.Remoting.Messaging.AsyncResult.GetReplyMessage"> <summary> Gets the response message for the asynchronous call. </summary> <returns> A remoting message that should represent a response to a method call on a remote object. </returns> </member> <member name="P:System.Runtime.Remoting.Messaging.AsyncResult.IsCompleted"> <summary> Gets a value indicating whether the server has completed the call. </summary> <returns>true after the server has completed the call; otherwise, false. </returns> </member> <member name="P:System.Runtime.Remoting.Messaging.AsyncResult.NextSink"> <summary> Gets the next message sink in the sink chain. </summary> <returns> An <see cref="T:System.Runtime.Remoting.Messaging.IMessageSink" /> interface that represents the next message sink in the sink chain. </returns> </member> <member name="M:System.Runtime.Remoting.Messaging.AsyncResult.SetMessageCtrl(System.Runtime.Remoting.Messaging.IMessageCtrl)"> <summary> Sets an <see cref="T:System.Runtime.Remoting.Messaging.IMessageCtrl" /> for the current remote method call, which provides a way to control asynchronous messages after they have been dispatched. </summary> <param name="mc"> The <see cref="T:System.Runtime.Remoting.Messaging.IMessageCtrl" /> for the current remote method call. </param> </member> <member name="M:System.Runtime.Remoting.Messaging.AsyncResult.SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)"> <summary> Synchronously processes a response message returned by a method call on a remote object. </summary> <returns> Returns null. </returns> <param name="msg"> A response message to a method call on a remote object. </param> </member> <member name="T:System.Runtime.Remoting.Messaging.CallContext"> <summary> Provides a set of properties that are carried with the execution code path. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.CallContext.FreeNamedDataSlot(System.String)"> <summary> Empties a data slot with the specified name. </summary> <param name="name"> The name of the data slot to empty. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.CallContext.GetData(System.String)"> <summary> Retrieves an object with the specified name from the <see cref="T:System.Runtime.Remoting.Messaging.CallContext" />. </summary> <returns> The object in the call context associated with the specified name. </returns> <param name="name"> The name of the item in the call context. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.CallContext.GetHeaders"> <summary> Returns the headers that are sent along with the method call. </summary> <returns> The headers that are sent along with the method call. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.CallContext.HostContext"> <summary> Gets or sets the host context associated with the current thread. </summary> <returns> The host context associated with the current thread. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Messaging.CallContext.LogicalGetData(System.String)"> <summary> Retrieves an object with the specified name from the logical call context. </summary> <returns> The object in the logical call context associated with the specified name. </returns> <param name="name"> The name of the item in the logical call context. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Messaging.CallContext.LogicalSetData(System.String,System.Object)"> <summary> Stores a given object in the logical call context and associates it with the specified name. </summary> <param name="name"> The name with which to associate the new item in the logical call context. </param> <param name="data"> The object to store in the logical call context. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Messaging.CallContext.SetData(System.String,System.Object)"> <summary> Stores a given object and associates it with the specified name. </summary> <param name="name"> The name with which to associate the new item in the call context. </param> <param name="data"> The object to store in the call context. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.CallContext.SetHeaders(System.Runtime.Remoting.Messaging.Header[])"> <summary> Sets the headers that are sent along with the method call. </summary> <param name="headers"> A <see cref="T:System.Runtime.Remoting.Messaging.Header" /> array of the headers that are to be sent along with the method call. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.ConstructionCall"> <summary> Implements the <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" /> interface to create a request message that constitutes a constructor call on a remote object. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.ConstructionCall.#ctor(System.Runtime.Remoting.Messaging.Header[])"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.ConstructionCall" /> class from an array of remoting headers. </summary> <param name="headers"> An array of remoting headers that contain key-value pairs. This array is used to initialize <see cref="T:System.Runtime.Remoting.Messaging.ConstructionCall" /> fields for those headers that belong to the namespace "http://schemas.microsoft.com/clr/soap/messageProperties". </param> </member> <member name="M:System.Runtime.Remoting.Messaging.ConstructionCall.#ctor(System.Runtime.Remoting.Messaging.IMessage)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.ConstructionCall" /> class by copying an existing message. </summary> <param name="m"> A remoting message. </param> </member> <member name="P:System.Runtime.Remoting.Messaging.ConstructionCall.ActivationType"> <summary> Gets the type of the remote object to activate. </summary> <returns> The <see cref="T:System.Type" /> of the remote object to activate. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ConstructionCall.ActivationTypeName"> <summary> Gets the full type name of the remote object to activate. </summary> <returns> A <see cref="T:System.String" /> containing the full type name of the remote object to activate. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ConstructionCall.Activator"> <summary> Gets or sets the activator that activates the remote object. </summary> <returns> The <see cref="T:System.Runtime.Remoting.Activation.IActivator" /> that activates the remote object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ConstructionCall.CallSiteActivationAttributes"> <summary> Gets the call site activation attributes for the remote object. </summary> <returns> An array of type <see cref="T:System.Object" /> containing the call site activation attributes for the remote object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ConstructionCall.ContextProperties"> <summary> Gets a list of properties that define the context in which the remote object is to be created. </summary> <returns> A <see cref="T:System.Collections.IList" /> that contains a list of properties that define the context in which the remote object is to be created. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ConstructionCall.Properties"> <summary> Gets an <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </summary> <returns> An <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.ConstructionResponse"> <summary> Implements the <see cref="T:System.Runtime.Remoting.Activation.IConstructionReturnMessage" /> interface to create a message that responds to a call to instantiate a remote object. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.ConstructionResponse.#ctor(System.Runtime.Remoting.Messaging.Header[],System.Runtime.Remoting.Messaging.IMethodCallMessage)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.ConstructionResponse" /> class from an array of remoting headers and a request message. </summary> <param name="h"> An array of remoting headers that contain key-value pairs. This array is used to initialize <see cref="T:System.Runtime.Remoting.Messaging.ConstructionResponse" /> fields for those headers that belong to the namespace "http://schemas.microsoft.com/clr/soap/messageProperties". </param> <param name="mcm"> A request message that constitutes a constructor call on a remote object. </param> </member> <member name="P:System.Runtime.Remoting.Messaging.ConstructionResponse.Properties"> <summary> Gets an <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </summary> <returns> An <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.Header"> <summary> Defines the out-of-band data for a call. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.Header.#ctor(System.String,System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.Header" /> class with the given name and value. </summary> <param name="_Name"> The name of the <see cref="T:System.Runtime.Remoting.Messaging.Header" />. </param> <param name="_Value"> The object that contains the value for the <see cref="T:System.Runtime.Remoting.Messaging.Header" />. </param> </member> <member name="M:System.Runtime.Remoting.Messaging.Header.#ctor(System.String,System.Object,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.Header" /> class with the given name, value, and additional configuration information. </summary> <param name="_Name"> The name of the <see cref="T:System.Runtime.Remoting.Messaging.Header" />. </param> <param name="_Value"> The object that contains the value for the <see cref="T:System.Runtime.Remoting.Messaging.Header" />. </param> <param name="_MustUnderstand"> Indicates whether the receiving end must understand the out-of-band data. </param> </member> <member name="M:System.Runtime.Remoting.Messaging.Header.#ctor(System.String,System.Object,System.Boolean,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.Header" /> class. </summary> <param name="_Name"> The name of the <see cref="T:System.Runtime.Remoting.Messaging.Header" />. </param> <param name="_Value"> The object that contains the value of the <see cref="T:System.Runtime.Remoting.Messaging.Header" />. </param> <param name="_MustUnderstand"> Indicates whether the receiving end must understand out-of-band data. </param> <param name="_HeaderNamespace"> The <see cref="T:System.Runtime.Remoting.Messaging.Header" /> XML namespace. </param> </member> <member name="F:System.Runtime.Remoting.Messaging.Header.HeaderNamespace"> <summary> Indicates the XML namespace that the current <see cref="T:System.Runtime.Remoting.Messaging.Header" /> belongs to. </summary> </member> <member name="F:System.Runtime.Remoting.Messaging.Header.MustUnderstand"> <summary> Indicates whether the receiving end must understand the out-of-band data. </summary> </member> <member name="F:System.Runtime.Remoting.Messaging.Header.Name"> <summary> Contains the name of the <see cref="T:System.Runtime.Remoting.Messaging.Header" />. </summary> </member> <member name="F:System.Runtime.Remoting.Messaging.Header.Value"> <summary> Contains the value for the <see cref="T:System.Runtime.Remoting.Messaging.Header" />. </summary> </member> <member name="T:System.Runtime.Remoting.Messaging.HeaderHandler"> <summary> Represents the method that will handle processing of headers on the stream during deserialization. </summary> <returns> A <see cref="T:System.Object" /> that conveys information about a remote function call. </returns> <param name="headers"> The headers of the event. </param> </member> <member name="T:System.Runtime.Remoting.Messaging.ILogicalThreadAffinative"> <summary> Marks an object that can propagate outside of an <see cref="T:System.AppDomain" /> in a <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" />. </summary> </member> <member name="T:System.Runtime.Remoting.Messaging.IMessage"> <summary> Contains communication data sent between cooperating message sinks. </summary> </member> <member name="P:System.Runtime.Remoting.Messaging.IMessage.Properties"> <summary> Gets an <see cref="T:System.Collections.IDictionary" /> that represents a collection of the message's properties. </summary> <returns> A dictionary that represents a collection of the message's properties. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.IMessageCtrl"> <summary> Provides a way to control asynchronous messages after they have dispatched using the <see cref="M:System.Runtime.Remoting.Messaging.IMessageSink.AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)" />. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.IMessageCtrl.Cancel(System.Int32)"> <summary> Cancels an asynchronous call. </summary> <param name="msToCancel"> The number of milliseconds after which to cancel the message. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Messaging.IMessageSink"> <summary> Defines the interface for a message sink. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.IMessageSink.AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)"> <summary> Asynchronously processes the given message. </summary> <returns> Returns an <see cref="T:System.Runtime.Remoting.Messaging.IMessageCtrl" /> interface that provides a way to control asynchronous messages after they have been dispatched. </returns> <param name="msg"> The message to process. </param> <param name="replySink"> The reply sink for the reply message. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.Messaging.IMessageSink.NextSink"> <summary> Gets the next message sink in the sink chain. </summary> <returns> The next message sink in the sink chain. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.IMessageSink.SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)"> <summary> Synchronously processes the given message. </summary> <returns> A reply message in response to the request. </returns> <param name="msg"> The message to process. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="T:System.Runtime.Remoting.Messaging.IMethodCallMessage"> <summary> Defines the method call message interface. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.IMethodCallMessage.GetInArg(System.Int32)"> <summary> Returns the specified argument that is not marked as an out parameter. </summary> <returns> The requested argument that is not marked as an out parameter. </returns> <param name="argNum"> The number of the requested in argument. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Messaging.IMethodCallMessage.GetInArgName(System.Int32)"> <summary> Returns the name of the specified argument that is not marked as an out parameter. </summary> <returns> The name of a specific argument that is not marked as an out parameter. </returns> <param name="index"> The number of the requested in argument. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodCallMessage.InArgCount"> <summary> Gets the number of arguments in the call that are not marked as out parameters. </summary> <returns> The number of arguments in the call that are not marked as out parameters. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodCallMessage.InArgs"> <summary> Gets an array of arguments that are not marked as out parameters. </summary> <returns> An array of arguments that are not marked as out parameters. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.IMethodMessage"> <summary> Defines the method message interface. </summary> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodMessage.ArgCount"> <summary> Gets the number of arguments passed to the method. </summary> <returns> The number of arguments passed to the method. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodMessage.Args"> <summary> Gets an array of arguments passed to the method. </summary> <returns> An <see cref="T:System.Object" /> array containing the arguments passed to the method. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.IMethodMessage.GetArg(System.Int32)"> <summary> Gets a specific argument as an <see cref="T:System.Object" />. </summary> <returns> The argument passed to the method. </returns> <param name="argNum"> The number of the requested argument. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Messaging.IMethodMessage.GetArgName(System.Int32)"> <summary> Gets the name of the argument passed to the method. </summary> <returns> The name of the specified argument passed to the method, or null if the current method is not implemented. </returns> <param name="index"> The number of the requested argument. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodMessage.HasVarArgs"> <summary> Gets a value indicating whether the message has variable arguments. </summary> <returns>true if the method can accept a variable number of arguments; otherwise, false. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodMessage.LogicalCallContext"> <summary> Gets the <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> for the current method call. </summary> <returns> Gets the <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> for the current method call. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodMessage.MethodBase"> <summary> Gets the <see cref="T:System.Reflection.MethodBase" /> of the called method. </summary> <returns> The <see cref="T:System.Reflection.MethodBase" /> of the called method. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodMessage.MethodName"> <summary> Gets the name of the invoked method. </summary> <returns> The name of the invoked method. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodMessage.MethodSignature"> <summary> Gets an object containing the method signature. </summary> <returns> An object containing the method signature. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodMessage.TypeName"> <summary> Gets the full <see cref="T:System.Type" /> name of the specific object that the call is destined for. </summary> <returns> The full <see cref="T:System.Type" /> name of the specific object that the call is destined for. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodMessage.Uri"> <summary> Gets the URI of the specific object that the call is destined for. </summary> <returns> The URI of the remote object that contains the invoked method. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.IMethodReturnMessage"> <summary> Defines the method call return message interface. </summary> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodReturnMessage.Exception"> <summary> Gets the exception thrown during the method call. </summary> <returns> The exception object for the method call, or null if the method did not throw an exception. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.IMethodReturnMessage.GetOutArg(System.Int32)"> <summary> Returns the specified argument marked as a ref or an out parameter. </summary> <returns> The specified argument marked as a ref or an out parameter. </returns> <param name="argNum"> The number of the requested argument. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="M:System.Runtime.Remoting.Messaging.IMethodReturnMessage.GetOutArgName(System.Int32)"> <summary> Returns the name of the specified argument marked as a ref or an out parameter. </summary> <returns> The argument name, or null if the current method is not implemented. </returns> <param name="index"> The number of the requested argument name. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodReturnMessage.OutArgCount"> <summary> Gets the number of arguments in the method call marked as ref or out parameters. </summary> <returns> The number of arguments in the method call marked as ref or out parameters. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodReturnMessage.OutArgs"> <summary> Returns the specified argument marked as a ref or an out parameter. </summary> <returns> The specified argument marked as a ref or an out parameter. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.IMethodReturnMessage.ReturnValue"> <summary> Gets the return value of the method call. </summary> <returns> The return value of the method call. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.InternalMessageWrapper"> <summary> Wraps remoting data for passing between message sinks, either for requests from client to server or for the subsequent responses. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.InternalMessageWrapper.#ctor(System.Runtime.Remoting.Messaging.IMessage)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.InternalMessageWrapper" /> class. </summary> <param name="msg"> A message that acts either as an outgoing method call on a remote object, or as the subsequent response. </param> </member> <member name="F:System.Runtime.Remoting.Messaging.InternalMessageWrapper.WrappedMessage"> <summary> Represents the request or response <see cref="T:System.Runtime.Remoting.Messaging.IMethodMessage" /> interface that is wrapped by the message wrapper. </summary> </member> <member name="T:System.Runtime.Remoting.Messaging.IRemotingFormatter"> <summary> Provides the remote procedure call (RPC) interface for all formatters. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.IRemotingFormatter.Deserialize(System.IO.Stream,System.Runtime.Remoting.Messaging.HeaderHandler)"> <summary> Begins the deserialization process of a remote procedure call (RPC). </summary> <returns> The root of the deserialized object graph. </returns> <param name="serializationStream"> The <see cref="T:System.IO.Stream" /> from which the data is deserialized. </param> <param name="handler"> The delegate designed to handle <see cref="T:System.Runtime.Remoting.Messaging.Header" /> objects. Can be null. </param> </member> <member name="M:System.Runtime.Remoting.Messaging.IRemotingFormatter.Serialize(System.IO.Stream,System.Object,System.Runtime.Remoting.Messaging.Header[])"> <summary> Starts the serialization process of a remote procedure call (RPC). </summary> <param name="serializationStream"> The <see cref="T:System.IO.Stream" /> onto which the specified graph is serialized. </param> <param name="graph"> The root of the object graph to be serialized. </param> <param name="headers"> The array of <see cref="T:System.Runtime.Remoting.Messaging.Header" /> objects to transmit with the graph specified by the <paramref name="graph" /> parameter. Can be null. </param> </member> <member name="T:System.Runtime.Remoting.Messaging.LogicalCallContext"> <summary> Provides a set of properties that are carried with the execution code path during remote method calls. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.LogicalCallContext.Clone"> <summary> Creates a new object that is a copy of the current instance. </summary> <returns> A new object that is a copy of this instance. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.LogicalCallContext.FreeNamedDataSlot(System.String)"> <summary> Empties a data slot with the specified name. </summary> <param name="name"> The name of the data slot to empty. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.LogicalCallContext.GetData(System.String)"> <summary> Retrieves an object associated with the specified name from the current instance. </summary> <returns> The object in the logical call context associated with the specified name. </returns> <param name="name"> The name of the item in the call context. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.LogicalCallContext.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the current <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" />. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data. </param> <param name="context"> The contextual information about the source or destination of the serialization. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have SerializationFormatter permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter, Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.LogicalCallContext.HasInfo"> <summary> Gets a value indicating whether the current <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> contains information. </summary> <returns> A Boolean value indicating whether the current <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> contains information. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.LogicalCallContext.SetData(System.String,System.Object)"> <summary> Stores the specified object in the current instance, and associates it with the specified name. </summary> <param name="name"> The name with which to associate the new item in the call context. </param> <param name="data"> The object to store in the call context. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.MessageSurrogateFilter"> <summary> Determines whether the <see cref="T:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector" /> class should ignore a particular <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> property while creating an <see cref="T:System.Runtime.Remoting.ObjRef" /> for a <see cref="T:System.MarshalByRefObject" /> class. </summary> <param name="key"></param> <param name="value"></param> </member> <member name="T:System.Runtime.Remoting.Messaging.MethodCall"> <summary> Implements the <see cref="T:System.Runtime.Remoting.Messaging.IMethodCallMessage" /> interface to create a request message that acts as a method call on a remote object. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.#ctor(System.Runtime.Remoting.Messaging.Header[])"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.MethodCall" /> class from an array of remoting headers. </summary> <param name="h1"> An array of remoting headers that contains key/value pairs. This array is used to initialize <see cref="T:System.Runtime.Remoting.Messaging.MethodCall" /> fields for headers that belong to the namespace "http://schemas.microsoft.com/clr/soap/messageProperties". </param> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.#ctor(System.Runtime.Remoting.Messaging.IMessage)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.MethodCall" /> class by copying an existing message. </summary> <param name="msg"> A remoting message. </param> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.ArgCount"> <summary> Gets the number of arguments passed to a method. </summary> <returns> A <see cref="T:System.Int32" /> that represents the number of arguments passed to a method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.Args"> <summary> Gets an array of arguments passed to a method. </summary> <returns> An array of type <see cref="T:System.Object" /> that represents the arguments passed to a method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="F:System.Runtime.Remoting.Messaging.MethodCall.ExternalProperties"> <summary> An <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.GetArg(System.Int32)"> <summary> Gets a method argument, as an object, at a specified index. </summary> <returns> The method argument as an object. </returns> <param name="argNum"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.GetArgName(System.Int32)"> <summary> Gets the name of a method argument at a specified index. </summary> <returns> The name of the method argument. </returns> <param name="index"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.GetInArg(System.Int32)"> <summary> Gets a method argument at a specified index that is not marked as an out parameter. </summary> <returns> The method argument that is not marked as an out parameter. </returns> <param name="argNum"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.GetInArgName(System.Int32)"> <summary> Gets the name of a method argument at a specified index that is not marked as an out parameter. </summary> <returns> The name of the method argument that is not marked as an out parameter. </returns> <param name="index"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> The <see cref="M:System.Runtime.Remoting.Messaging.MethodCall.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> method is not implemented. </summary> <param name="info"> The data for serializing or deserializing the remote object. </param> <param name="context"> The context of a certain serialized stream. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter, Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.HasVarArgs"> <summary> Gets a value that indicates whether the method can accept a variable number of arguments. </summary> <returns>true if the method can accept a variable number of arguments; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.HeaderHandler(System.Runtime.Remoting.Messaging.Header[])"> <summary> Initializes an internal serialization handler from an array of remoting headers that are applied to a method. </summary> <returns> An internal serialization handler. </returns> <param name="h"> An array of remoting headers that contain key/value pairs. This array is used to initialize <see cref="T:System.Runtime.Remoting.Messaging.MethodCall" /> fields for headers that belong to the namespace "http://schemas.microsoft.com/clr/soap/messageProperties". </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.InArgCount"> <summary> Gets the number of arguments in the method call that are not marked as out parameters. </summary> <returns> A <see cref="T:System.Int32" /> that represents the number of arguments in the method call that are not marked as out parameters. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.InArgs"> <summary> Gets an array of arguments in the method call that are not marked as out parameters. </summary> <returns> An array of type <see cref="T:System.Object" /> that represents arguments in the method call that are not marked as out parameters. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.Init"> <summary> Initializes a <see cref="T:System.Runtime.Remoting.Messaging.MethodCall" />. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="F:System.Runtime.Remoting.Messaging.MethodCall.InternalProperties"> <summary> An <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </summary> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.LogicalCallContext"> <summary> Gets the <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> for the current method call. </summary> <returns> The <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> for the current method call. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.MethodBase"> <summary> Gets the <see cref="T:System.Reflection.MethodBase" /> of the called method. </summary> <returns> The <see cref="T:System.Reflection.MethodBase" /> of the called method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.MethodName"> <summary> Gets the name of the invoked method. </summary> <returns> A <see cref="T:System.String" /> that contains the name of the invoked method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.MethodSignature"> <summary> Gets an object that contains the method signature. </summary> <returns> A <see cref="T:System.Object" /> that contains the method signature. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.Properties"> <summary> Gets an <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </summary> <returns> An <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.ResolveMethod"> <summary> Sets method information from previously initialized remoting message properties. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCall.RootSetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets method information from serialization settings. </summary> <param name="info"> The data for serializing or deserializing the remote object. </param> <param name="ctx"> The context of a given serialized stream. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.TypeName"> <summary> Gets the full type name of the remote object on which the method call is being made. </summary> <returns> A <see cref="T:System.String" /> that contains the full type name of the remote object on which the method call is being made. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCall.Uri"> <summary> Gets or sets the Uniform Resource Identifier (URI) of the remote object on which the method call is being made. </summary> <returns> The URI of a remote object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper"> <summary> Implements the <see cref="T:System.Runtime.Remoting.Messaging.IMethodCallMessage" /> interface to create a request message that acts as a method call on a remote object. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.#ctor(System.Runtime.Remoting.Messaging.IMethodCallMessage)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper" /> class by wrapping an <see cref="T:System.Runtime.Remoting.Messaging.IMethodCallMessage" /> interface. </summary> <param name="msg"> A message that acts as an outgoing method call on a remote object. </param> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.ArgCount"> <summary> Gets the number of arguments passed to the method. </summary> <returns> A <see cref="T:System.Int32" /> that represents the number of arguments passed to a method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.Args"> <summary> Gets an array of arguments passed to the method. </summary> <returns> An array of type <see cref="T:System.Object" /> that represents the arguments passed to a method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.GetArg(System.Int32)"> <summary> Gets a method argument, as an object, at a specified index. </summary> <returns> The method argument as an object. </returns> <param name="argNum"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.GetArgName(System.Int32)"> <summary> Gets the name of a method argument at a specified index. </summary> <returns> The name of the method argument. </returns> <param name="index"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.GetInArg(System.Int32)"> <summary> Gets a method argument at a specified index that is not marked as an out parameter. </summary> <returns> The method argument that is not marked as an out parameter. </returns> <param name="argNum"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.GetInArgName(System.Int32)"> <summary> Gets the name of a method argument at a specified index that is not marked as an out parameter. </summary> <returns> The name of the method argument that is not marked as an out parameter. </returns> <param name="index"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.HasVarArgs"> <summary> Gets a value indicating whether the method can accept a variable number of arguments. </summary> <returns>true if the method can accept a variable number of arguments; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.InArgCount"> <summary> Gets the number of arguments in the method call that are not marked as out parameters. </summary> <returns> A <see cref="T:System.Int32" /> that represents the number of arguments in the method call that are not marked as out parameters. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.InArgs"> <summary> Gets an array of arguments in the method call that are not marked as out parameters. </summary> <returns> An array of type <see cref="T:System.Object" /> that represents arguments in the method call that are not marked as out parameters. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.LogicalCallContext"> <summary> Gets the <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> for the current method call. </summary> <returns> The <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> for the current method call. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.MethodBase"> <summary> Gets the <see cref="T:System.Reflection.MethodBase" /> of the called method. </summary> <returns> The <see cref="T:System.Reflection.MethodBase" /> of the called method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.MethodName"> <summary> Gets the name of the invoked method. </summary> <returns> A <see cref="T:System.String" /> that contains the name of the invoked method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.MethodSignature"> <summary> Gets an object that contains the method signature. </summary> <returns> A <see cref="T:System.Object" /> that contains the method signature. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.Properties"> <summary> An <see cref="T:System.Collections.IDictionary" /> that represents a collection of the remoting message's properties. </summary> <returns> An <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.TypeName"> <summary> Gets the full type name of the remote object on which the method call is being made. </summary> <returns> A <see cref="T:System.String" /> that contains the full type name of the remote object on which the method call is being made. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodCallMessageWrapper.Uri"> <summary> Gets the Uniform Resource Identifier (URI) of the remote object on which the method call is being made. </summary> <returns> The URI of a remote object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.MethodResponse"> <summary> Implements the <see cref="T:System.Runtime.Remoting.Messaging.IMethodReturnMessage" /> interface to create a message that acts as a method response on a remote object. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodResponse.#ctor(System.Runtime.Remoting.Messaging.Header[],System.Runtime.Remoting.Messaging.IMethodCallMessage)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.MethodResponse" /> class from an array of remoting headers and a request message. </summary> <param name="h1"> An array of remoting headers that contains key/value pairs. This array is used to initialize <see cref="T:System.Runtime.Remoting.Messaging.MethodResponse" /> fields for headers that belong to the namespace "http://schemas.microsoft.com/clr/soap/messageProperties". </param> <param name="mcm"> A request message that acts as a method call on a remote object. </param> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.ArgCount"> <summary> Gets the number of arguments passed to the method. </summary> <returns> A <see cref="T:System.Int32" /> that represents the number of arguments passed to a method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.Args"> <summary> Gets an array of arguments passed to the method. </summary> <returns> An array of type <see cref="T:System.Object" /> that represents the arguments passed to a method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.Exception"> <summary> Gets the exception thrown during the method call, or null if the method did not throw an exception. </summary> <returns> The <see cref="T:System.Exception" /> thrown during the method call, or null if the method did not throw an exception. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="F:System.Runtime.Remoting.Messaging.MethodResponse.ExternalProperties"> <summary> Specifies an <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodResponse.GetArg(System.Int32)"> <summary> Gets a method argument, as an object, at a specified index. </summary> <returns> The method argument as an object. </returns> <param name="argNum"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodResponse.GetArgName(System.Int32)"> <summary> Gets the name of a method argument at a specified index. </summary> <returns> The name of the method argument. </returns> <param name="index"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodResponse.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> The <see cref="M:System.Runtime.Remoting.Messaging.MethodResponse.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> method is not implemented. </summary> <param name="info"> Data for serializing or deserializing the remote object. </param> <param name="context"> Context of a certain serialized stream. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodResponse.GetOutArg(System.Int32)"> <summary> Returns the specified argument marked as a ref parameter or an out parameter. </summary> <returns> The specified argument marked as a ref parameter or an out parameter. </returns> <param name="argNum"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodResponse.GetOutArgName(System.Int32)"> <summary> Returns the name of the specified argument marked as a ref parameter or an out parameter. </summary> <returns> The argument name, or null if the current method is not implemented. </returns> <param name="index"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.HasVarArgs"> <summary> Gets a value that indicates whether the method can accept a variable number of arguments. </summary> <returns>true if the method can accept a variable number of arguments; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodResponse.HeaderHandler(System.Runtime.Remoting.Messaging.Header[])"> <summary> Initializes an internal serialization handler from an array of remoting headers that are applied to a method. </summary> <returns> An internal serialization handler. </returns> <param name="h"> An array of remoting headers that contain key/value pairs. This array is used to initialize <see cref="T:System.Runtime.Remoting.Messaging.MethodResponse" /> fields for headers that belong to the namespace "http://schemas.microsoft.com/clr/soap/messageProperties". </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="F:System.Runtime.Remoting.Messaging.MethodResponse.InternalProperties"> <summary> Specifies an <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </summary> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.LogicalCallContext"> <summary> Gets the <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> for the current method call. </summary> <returns> The <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> for the current method call. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.MethodBase"> <summary> Gets the <see cref="T:System.Reflection.MethodBase" /> of the called method. </summary> <returns> The <see cref="T:System.Reflection.MethodBase" /> of the called method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.MethodName"> <summary> Gets the name of the invoked method. </summary> <returns> A <see cref="T:System.String" /> that contains the name of the invoked method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.MethodSignature"> <summary> Gets an object that contains the method signature. </summary> <returns> A <see cref="T:System.Object" /> that contains the method signature. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.OutArgCount"> <summary> Gets the number of arguments in the method call marked as ref or out parameters. </summary> <returns> A <see cref="T:System.Int32" /> that represents the number of arguments in the method call marked as ref or out parameters. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.OutArgs"> <summary> Gets an array of arguments in the method call that are marked as ref or out parameters. </summary> <returns> An array of type <see cref="T:System.Object" /> that represents the arguments in the method call that are marked as ref or out parameters. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.Properties"> <summary> Gets an <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </summary> <returns> An <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.ReturnValue"> <summary> Gets the return value of the method call. </summary> <returns> A <see cref="T:System.Object" /> that represents the return value of the method call. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodResponse.RootSetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets method information from serialization settings. </summary> <param name="info"> The data for serializing or deserializing the remote object. </param> <param name="ctx"> The context of a certain serialized stream. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.TypeName"> <summary> Gets the full type name of the remote object on which the method call is being made. </summary> <returns> A <see cref="T:System.String" /> that contains the full type name of the remote object on which the method call is being made. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodResponse.Uri"> <summary> Gets the Uniform Resource Identifier (URI) of the remote object on which the method call is being made. </summary> <returns> The URI of a remote object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper"> <summary> Implements the <see cref="T:System.Runtime.Remoting.Messaging.IMethodReturnMessage" /> interface to create a message that acts as a response to a method call on a remote object. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.#ctor(System.Runtime.Remoting.Messaging.IMethodReturnMessage)"> <summary> Wraps an <see cref="T:System.Runtime.Remoting.Messaging.IMethodReturnMessage" /> to create a <see cref="T:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper" />. </summary> <param name="msg"> A message that acts as an outgoing method call on a remote object. </param> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.ArgCount"> <summary> Gets the number of arguments passed to the method. </summary> <returns> A <see cref="T:System.Int32" /> that represents the number of arguments passed to a method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.Args"> <summary> Gets an array of arguments passed to the method. </summary> <returns> An array of type <see cref="T:System.Object" /> that represents the arguments passed to a method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.Exception"> <summary> Gets the exception thrown during the method call, or null if the method did not throw an exception. </summary> <returns> The <see cref="T:System.Exception" /> thrown during the method call, or null if the method did not throw an exception. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.GetArg(System.Int32)"> <summary> Gets a method argument, as an object, at a specified index. </summary> <returns> The method argument as an object. </returns> <param name="argNum"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.GetArgName(System.Int32)"> <summary> Gets the name of a method argument at a specified index. </summary> <returns> The name of the method argument. </returns> <param name="index"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.GetOutArg(System.Int32)"> <summary> Returns the specified argument marked as a ref parameter or an out parameter. </summary> <returns> The specified argument marked as a ref parameter or an out parameter. </returns> <param name="argNum"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.GetOutArgName(System.Int32)"> <summary> Returns the name of the specified argument marked as a ref parameter or an out parameter. </summary> <returns> The argument name, or null if the current method is not implemented. </returns> <param name="index"> The index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.HasVarArgs"> <summary> Gets a flag that indicates whether the method can accept a variable number of arguments. </summary> <returns>true if the method can accept a variable number of arguments; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.LogicalCallContext"> <summary> Gets the <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> for the current method call. </summary> <returns> The <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> for the current method call. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.MethodBase"> <summary> Gets the <see cref="T:System.Reflection.MethodBase" /> of the called method. </summary> <returns> The <see cref="T:System.Reflection.MethodBase" /> of the called method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.MethodName"> <summary> Gets the name of the invoked method. </summary> <returns> A <see cref="T:System.String" /> that contains the name of the invoked method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.MethodSignature"> <summary> Gets an object that contains the method signature. </summary> <returns> A <see cref="T:System.Object" /> that contains the method signature. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.OutArgCount"> <summary> Gets the number of arguments in the method call that are marked as ref parameters or out parameters. </summary> <returns> A <see cref="T:System.Int32" /> that represents the number of arguments in the method call that are marked as ref parameters or out parameters. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.OutArgs"> <summary> Gets an array of arguments in the method call that are marked as ref parameters or out parameters. </summary> <returns> An array of type <see cref="T:System.Object" /> that represents the arguments in the method call that are marked as ref parameters or out parameters. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.Properties"> <summary> An <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </summary> <returns> An <see cref="T:System.Collections.IDictionary" /> interface that represents a collection of the remoting message's properties. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.ReturnValue"> <summary> Gets the return value of the method call. </summary> <returns> A <see cref="T:System.Object" /> that represents the return value of the method call. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.TypeName"> <summary> Gets the full type name of the remote object on which the method call is being made. </summary> <returns> A <see cref="T:System.String" /> that contains the full type name of the remote object on which the method call is being made. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.Uri"> <summary> Gets the Uniform Resource Identifier (URI) of the remote object on which the method call is being made. </summary> <returns> The URI of a remote object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.OneWayAttribute"> <summary> Marks a method as one way, without a return value and out or ref parameters. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.OneWayAttribute.#ctor"></member> <member name="T:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector"> <summary> Selects the remoting surrogate that can be used to serialize an object that derives from a <see cref="T:System.MarshalByRefObject" />. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector.ChainSelector(System.Runtime.Serialization.ISurrogateSelector)"> <summary> Adds the specified <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> to the surrogate selector chain. </summary> <param name="selector"> The next <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> to examine. </param> </member> <member name="P:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector.Filter"> <summary> Gets or sets the <see cref="T:System.Runtime.Remoting.Messaging.MessageSurrogateFilter" /> delegate for the current instance of the <see cref="T:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector" />. </summary> <returns> The <see cref="T:System.Runtime.Remoting.Messaging.MessageSurrogateFilter" /> delegate for the current instance of the <see cref="T:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector.GetNextSelector"> <summary> Returns the next <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> in the chain of surrogate selectors. </summary> <returns> The next <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> in the chain of surrogate selectors. </returns> </member> <member name="M:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector.GetRootObject"> <summary> Returns the object at the root of the object graph. </summary> <returns> The object at the root of the object graph. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector.GetSurrogate(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector@)"> <summary> Returns the appropriate surrogate for the given type in the given context. </summary> <returns> The appropriate surrogate for the given type in the given context. </returns> <param name="type"> The <see cref="T:System.Type" /> for which the surrogate is requested. </param> <param name="context"> The source or destination of serialization. </param> <param name="ssout"> When this method returns, contains an <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> that is appropriate for the specified object type. This parameter is passed uninitialized. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector.SetRootObject(System.Object)"> <summary> Sets the object at the root of the object graph. </summary> <param name="obj"> The object at the root of the object graph. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.RemotingSurrogateSelector.UseSoapFormat"> <summary> Sets up the current surrogate selector to use the SOAP format. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Messaging.ReturnMessage"> <summary> Holds a message returned in response to a method call on a remote object. </summary> </member> <member name="M:System.Runtime.Remoting.Messaging.ReturnMessage.#ctor(System.Exception,System.Runtime.Remoting.Messaging.IMethodCallMessage)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.ReturnMessage" /> class. </summary> <param name="e"> The exception that was thrown during execution of the remotely called method. </param> <param name="mcm"> An <see cref="T:System.Runtime.Remoting.Messaging.IMethodCallMessage" /> with which to create an instance of the <see cref="T:System.Runtime.Remoting.Messaging.ReturnMessage" /> class. </param> </member> <member name="M:System.Runtime.Remoting.Messaging.ReturnMessage.#ctor(System.Object,System.Object[],System.Int32,System.Runtime.Remoting.Messaging.LogicalCallContext,System.Runtime.Remoting.Messaging.IMethodCallMessage)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Messaging.ReturnMessage" /> class with all the information returning to the caller after the method call. </summary> <param name="ret"> The object returned by the invoked method from which the current <see cref="T:System.Runtime.Remoting.Messaging.ReturnMessage" /> instance originated. </param> <param name="outArgs"> The objects returned from the invoked method as out parameters. </param> <param name="outArgsCount"> The number of out parameters returned from the invoked method. </param> <param name="callCtx"> The <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> of the method call. </param> <param name="mcm"> The original method call to the invoked method. </param> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.ArgCount"> <summary> Gets the number of arguments of the called method. </summary> <returns> The number of arguments of the called method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.Args"> <summary> Gets a specified argument passed to the method called on the remote object. </summary> <returns> An argument passed to the method called on the remote object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.Exception"> <summary> Gets the exception that was thrown during the remote method call. </summary> <returns> The exception thrown during the method call, or null if an exception did not occur during the call. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.ReturnMessage.GetArg(System.Int32)"> <summary> Returns a specified argument passed to the remote method during the method call. </summary> <returns> An argument passed to the remote method during the method call. </returns> <param name="argNum"> The zero-based index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.ReturnMessage.GetArgName(System.Int32)"> <summary> Returns the name of a specified method argument. </summary> <returns> The name of a specified method argument. </returns> <param name="index"> The zero-based index of the requested argument name. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.ReturnMessage.GetOutArg(System.Int32)"> <summary> Returns the object passed as an out or ref parameter during the remote method call. </summary> <returns> The object passed as an out or ref parameter during the remote method call. </returns> <param name="argNum"> The zero-based index of the requested out or ref parameter. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Messaging.ReturnMessage.GetOutArgName(System.Int32)"> <summary> Returns the name of a specified out or ref parameter passed to the remote method. </summary> <returns> A string representing the name of the specified out or ref parameter, or null if the current method is not implemented. </returns> <param name="index"> The zero-based index of the requested argument. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.HasVarArgs"> <summary> Gets a value indicating whether the called method accepts a variable number of arguments. </summary> <returns>true if the called method accepts a variable number of arguments; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.LogicalCallContext"> <summary> Gets the <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> of the called method. </summary> <returns> The <see cref="T:System.Runtime.Remoting.Messaging.LogicalCallContext" /> of the called method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.MethodBase"> <summary> Gets the <see cref="T:System.Reflection.MethodBase" /> of the called method. </summary> <returns> The <see cref="T:System.Reflection.MethodBase" /> of the called method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.MethodName"> <summary> Gets the name of the called method. </summary> <returns> The name of the method that the current <see cref="T:System.Runtime.Remoting.Messaging.ReturnMessage" /> originated from. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.MethodSignature"> <summary> Gets an array of <see cref="T:System.Type" /> objects containing the method signature. </summary> <returns> An array of <see cref="T:System.Type" /> objects containing the method signature. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.OutArgCount"> <summary> Gets the number of out or ref arguments on the called method. </summary> <returns> The number of out or ref arguments on the called method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.OutArgs"> <summary> Gets a specified object passed as an out or ref parameter to the called method. </summary> <returns> An object passed as an out or ref parameter to the called method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.Properties"> <summary> Gets an <see cref="T:System.Collections.IDictionary" /> of properties contained in the current <see cref="T:System.Runtime.Remoting.Messaging.ReturnMessage" />. </summary> <returns> An <see cref="T:System.Collections.IDictionary" /> of properties contained in the current <see cref="T:System.Runtime.Remoting.Messaging.ReturnMessage" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.ReturnValue"> <summary> Gets the object returned by the called method. </summary> <returns> The object returned by the called method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.TypeName"> <summary> Gets the name of the type on which the remote method was called. </summary> <returns> The type name of the remote object on which the remote method was called. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Runtime.Remoting.Messaging.ReturnMessage.Uri"> <summary> Gets or sets the URI of the remote object on which the remote method was called. </summary> <returns> The URI of the remote object on which the remote method was called. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Metadata.SoapAttribute"> <summary> Provides default functionality for all SOAP attributes. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.SoapAttribute.#ctor"></member> <member name="P:System.Runtime.Remoting.Metadata.SoapAttribute.Embedded"> <summary> Gets or sets a value indicating whether the type must be nested during SOAP serialization. </summary> <returns>true if the target object must be nested during SOAP serialization; otherwise, false. </returns> </member> <member name="F:System.Runtime.Remoting.Metadata.SoapAttribute.ProtXmlNamespace"> <summary> The XML namespace to which the target of the current SOAP attribute is serialized. </summary> </member> <member name="F:System.Runtime.Remoting.Metadata.SoapAttribute.ReflectInfo"> <summary> A reflection object used by attribute classes derived from the <see cref="T:System.Runtime.Remoting.Metadata.SoapAttribute" /> class to set XML serialization information. </summary> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapAttribute.UseAttribute"> <summary> Gets or sets a value indicating whether the target of the current attribute will be serialized as an XML attribute instead of an XML field. </summary> <returns>true if the target object of the current attribute must be serialized as an XML attribute; false if the target object must be serialized as a subelement. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapAttribute.XmlNamespace"> <summary> Gets or sets the XML namespace name. </summary> <returns> The XML namespace name under which the target of the current attribute is serialized. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.SoapFieldAttribute"> <summary> Customizes SOAP generation and processing for a field. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.SoapFieldAttribute.#ctor"></member> <member name="M:System.Runtime.Remoting.Metadata.SoapFieldAttribute.IsInteropXmlElement"> <summary> Returns a value indicating whether the current attribute contains interop XML element values. </summary> <returns>true if the current attribute contains interop XML element values; otherwise, false. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapFieldAttribute.Order"> <summary> You should not use this property; it is not used by the .NET Framework remoting infrastructure. </summary> <returns> A <see cref="T:System.Int32" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapFieldAttribute.XmlElementName"> <summary> Gets or sets the XML element name of the field contained in the <see cref="T:System.Runtime.Remoting.Metadata.SoapFieldAttribute" /> attribute. </summary> <returns> The XML element name of the field contained in this attribute. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.SoapMethodAttribute"> <summary> Customizes SOAP generation and processing for a method. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.SoapMethodAttribute.#ctor"></member> <member name="P:System.Runtime.Remoting.Metadata.SoapMethodAttribute.ResponseXmlElementName"> <summary> Gets or sets the XML element name to use for the method response to the target method. </summary> <returns> The XML element name to use for the method response to the target method. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapMethodAttribute.ResponseXmlNamespace"> <summary> Gets or sets the XML element namesapce used for method response to the target method. </summary> <returns> The XML element namesapce used for method response to the target method. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapMethodAttribute.ReturnXmlElementName"> <summary> Gets or sets the XML element name used for the return value from the target method. </summary> <returns> The XML element name used for the return value from the target method. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapMethodAttribute.SoapAction"> <summary> Gets or sets the SOAPAction header field used with HTTP requests sent with this method. This property is currently not implemented. </summary> <returns> The SOAPAction header field used with HTTP requests sent with this method. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapMethodAttribute.UseAttribute"> <summary> Gets or sets a value indicating whether the target of the current attribute will be serialized as an XML attribute instead of an XML field. </summary> <returns> The current implementation always returns false. </returns> <exception cref="T:System.Runtime.Remoting.RemotingException"> An attempt was made to set the current property. </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapMethodAttribute.XmlNamespace"> <summary> Gets or sets the XML namespace that is used during serialization of remote method calls of the target method. </summary> <returns> The XML namespace that is used during serialization of remote method calls of the target method. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.SoapOption"> <summary> Specifies the SOAP configuration options for use with the <see cref="T:System.Runtime.Remoting.Metadata.SoapTypeAttribute" /> class. </summary> </member> <member name="F:System.Runtime.Remoting.Metadata.SoapOption.None"> <summary> The default option indicating that no extra options are selected. </summary> </member> <member name="F:System.Runtime.Remoting.Metadata.SoapOption.AlwaysIncludeTypes"> <summary> Indicates that type will always be included on SOAP elements. This option is useful when performing SOAP interop with SOAP implementations that require types on all elements. </summary> </member> <member name="F:System.Runtime.Remoting.Metadata.SoapOption.XsdString"> <summary> Indicates that the output SOAP string type in a SOAP Envelope is using the XSD prefix, and that the resulting XML does not have an ID attribute for the string. </summary> </member> <member name="F:System.Runtime.Remoting.Metadata.SoapOption.EmbedAll"> <summary> Indicates that SOAP will be generated without references. This option is currently not implemented. </summary> </member> <member name="F:System.Runtime.Remoting.Metadata.SoapOption.Option1"> <summary> Public reserved option for temporary interop conditions; the use will change. </summary> </member> <member name="F:System.Runtime.Remoting.Metadata.SoapOption.Option2"> <summary> Public reserved option for temporary interop conditions; the use will change. </summary> </member> <member name="T:System.Runtime.Remoting.Metadata.SoapParameterAttribute"> <summary> Customizes SOAP generation and processing for a parameter. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.SoapParameterAttribute.#ctor"></member> <member name="T:System.Runtime.Remoting.Metadata.SoapTypeAttribute"> <summary> Customizes SOAP generation and processing for target types. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.SoapTypeAttribute.#ctor"></member> <member name="P:System.Runtime.Remoting.Metadata.SoapTypeAttribute.SoapOptions"> <summary> Gets or sets a <see cref="T:System.Runtime.Remoting.Metadata.SoapOption" /> configuration value. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.SoapOption" /> value. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapTypeAttribute.UseAttribute"> <summary> Gets or sets a value indicating whether the target of the current attribute will be serialized as an XML attribute instead of an XML field. </summary> <returns> The current implementation always returns false. </returns> <exception cref="T:System.Runtime.Remoting.RemotingException"> An attempt was made to set the current property. </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapTypeAttribute.XmlElementName"> <summary> Gets or sets the XML element name. </summary> <returns> The XML element name. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapTypeAttribute.XmlFieldOrder"> <summary> You should not use this property; it is not used by the .NET Framework remoting infrastructure. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.XmlFieldOrderOption" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapTypeAttribute.XmlNamespace"> <summary> Gets or sets the XML namespace that is used during serialization of the target object type. </summary> <returns> The XML namespace that is used during serialization of the target object type. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapTypeAttribute.XmlTypeName"> <summary> Gets or sets the XML type name for the target object type. </summary> <returns> The XML type name for the target object type. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.SoapTypeAttribute.XmlTypeNamespace"> <summary> Gets or sets the XML type namespace for the current object type. </summary> <returns> The XML type namespace for the current object type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.XmlFieldOrderOption"> <summary> You should not use this enumeration; it is not used by the .NET Framework remoting infrastructure. </summary> </member> <member name="F:System.Runtime.Remoting.Metadata.XmlFieldOrderOption.All"> <summary> You should not use the XmlFieldOrderOption enumeration; it is not used by the .NET Framework's remoting infrastructure. </summary> </member> <member name="F:System.Runtime.Remoting.Metadata.XmlFieldOrderOption.Sequence"> <summary> You should not use the XmlFieldOrderOption enumeration; it is not used by the .NET Framework's remoting infrastructure. </summary> </member> <member name="F:System.Runtime.Remoting.Metadata.XmlFieldOrderOption.Choice"> <summary> You should not use the XmlFieldOrderOption enumeration; it is not used by the .NET Framework's remoting infrastructure. </summary> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd"> <summary> Provides access to the XML Schema definition language (XSD) of a SOAP type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri"> <summary> Wraps an XSD anyURI type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri" /> class with the specified URI. </summary> <param name="value"> A <see cref="T:System.String" /> that contains a URI. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri.Value"> <summary> Gets or sets a URI. </summary> <returns> A <see cref="T:System.String" /> that contains a URI. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary"> <summary> Wraps an XSD base64Binary type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary" /> class with the binary representation of a 64-bit number. </summary> <param name="value"> A <see cref="T:System.Byte" /> array that contains a 64-bit number. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> One of the following: <paramref name="value" /> is null. The length of <paramref name="value" /> is less than 4. The length of <paramref name="value" /> is not a multiple of 4. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary.Value"> <summary> Gets or sets the binary representation of a 64-bit number. </summary> <returns> A <see cref="T:System.Byte" /> array that contains the binary representation of a 64-bit number. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate"> <summary> Wraps an XSD date type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.#ctor(System.DateTime)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate" /> class with a specified <see cref="T:System.DateTime" /> object. </summary> <param name="value"> A <see cref="T:System.DateTime" /> object to initialize the current instance. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.#ctor(System.DateTime,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate" /> class with a specified <see cref="T:System.DateTime" /> object and an integer that indicates whether <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.Value" /> is a positive or negative value. </summary> <param name="value"> A <see cref="T:System.DateTime" /> object to initialize the current instance. </param> <param name="sign"> An integer that indicates whether <paramref name="value" /> is positive. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> does not contain a date and time that corresponds to any of the recognized format patterns. </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.Sign"> <summary> Gets or sets whether the date and time of the current instance is positive or negative. </summary> <returns> An integer that indicates whether <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.Value" /> is positive or negative. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.Value" /> in the format "yyyy-MM-dd" or "'-'yyyy-MM-dd" if <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.Sign" /> is negative. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.Value"> <summary> Gets or sets the date and time of the current instance. </summary> <returns> The <see cref="T:System.DateTime" /> object that contains the date and time of the current instance. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDateTime"> <summary> Provides static methods for the serialization and deserialization of <see cref="T:System.DateTime" /> to a string that is formatted as XSD dateTime. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDateTime.#ctor"></member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDateTime.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.DateTime" /> object. </summary> <returns> A <see cref="T:System.DateTime" /> object obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> One of the following: <paramref name="value" /> is an empty string. <paramref name="value" /> is null reference. <paramref name="value" /> does not contain a date and time that corresponds to any of the recognized format patterns. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDateTime.ToString(System.DateTime)"> <summary> Returns the specified <see cref="T:System.DateTime" /> object as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> representation of <paramref name="value" /> in the format "yyyy-MM-dd'T'HH:mm:ss.fffffffzzz". </returns> <param name="value"> The <see cref="T:System.DateTime" /> object to convert. </param> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDateTime.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay"> <summary> Wraps an XSD gDay type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay.#ctor(System.DateTime)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay" /> class with a specified <see cref="T:System.DateTime" /> object. </summary> <param name="value"> A <see cref="T:System.DateTime" /> object to initialize the current instance. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> does not contain a date and time that corresponds to any of the recognized format patterns. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay.Value" /> in the format "---dd". </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay.Value"> <summary> Gets or sets the date and time of the current instance. </summary> <returns> The <see cref="T:System.DateTime" /> object that contains the date and time of the current instance. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDuration"> <summary> Provides static methods for the serialization and deserialization of <see cref="T:System.TimeSpan" /> to a string that is formatted as XSD duration. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDuration.#ctor"></member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDuration.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.TimeSpan" /> object. </summary> <returns> A <see cref="T:System.TimeSpan" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> does not contain a date and time that corresponds to any of the recognized format patterns. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDuration.ToString(System.TimeSpan)"> <summary> Returns the specified <see cref="T:System.TimeSpan" /> object as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> representation of <paramref name="timeSpan" /> in the format "PxxYxxDTxxHxxMxx.xxxS" or "PxxYxxDTxxHxxMxxS". The "PxxYxxDTxxHxxMxx.xxxS" is used if <see cref="P:System.TimeSpan.Milliseconds" /> does not equal zero. </returns> <param name="timeSpan"> The <see cref="T:System.TimeSpan" /> object to convert. </param> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDuration.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities"> <summary> Wraps an XML ENTITIES attribute. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities" /> class with an XML ENTITIES attribute. </summary> <param name="value"> A <see cref="T:System.String" /> that contains an XML ENTITIES attribute. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities.Value"> <summary> Gets or sets an XML ENTITIES attribute. </summary> <returns> A <see cref="T:System.String" /> that contains an XML ENTITIES attribute. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity"> <summary> Wraps an XML ENTITY attribute. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity" /> class with an XML ENTITY attribute. </summary> <param name="value"> A <see cref="T:System.String" /> that contains an XML ENTITY attribute. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity.Value"> <summary> Gets or sets an XML ENTITY attribute. </summary> <returns> A <see cref="T:System.String" /> that contains an XML ENTITY attribute. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary"> <summary> Wraps an XSD hexBinary type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary" /> class. </summary> <param name="value"> A <see cref="T:System.Byte" /> array that contains a hexadecimal number. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.Value"> <summary> Gets or sets the hexadecimal representation of a number. </summary> <returns> A <see cref="T:System.Byte" /> array containing the hexadecimal representation of a number. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> indicating the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId"> <summary> Wraps an XML ID attribute. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId" /> class with an XML ID attribute. </summary> <param name="value"> A <see cref="T:System.String" /> that contains an XML ID attribute. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId.Value"> <summary> Gets or sets an XML ID attribute. </summary> <returns> A <see cref="T:System.String" /> that contains an XML ID attribute. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref"> <summary> Wraps an XML IDREFS attribute. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref" /> class with an XML IDREF attribute. </summary> <param name="value"> A <see cref="T:System.String" /> that contains an XML IDREF attribute. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs" /> object. </summary> <returns> A <see cref="T:System.String" /> obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref.Value"> <summary> Gets or sets an XML IDREF attribute. </summary> <returns> A <see cref="T:System.String" /> that contains an XML IDREF attribute. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs"> <summary> Wraps an XML IDREFS attribute. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs" /> class with an XML IDREFS attribute. </summary> <param name="value"> A <see cref="T:System.String" /> that contains an XML IDREFS attribute. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs" /> object. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs.Value"> <summary> Gets or sets an XML IDREFS attribute. </summary> <returns> A <see cref="T:System.String" /> that contains an XML IDREFS attribute. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger"> <summary> Wraps an XSD integer type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger.#ctor(System.Decimal)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger" /> class with a <see cref="T:System.Decimal" /> value. </summary> <param name="value"> A <see cref="T:System.Decimal" /> value to initialize the current instance. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger.Value"> <summary> Gets or sets the numeric value of the current instance. </summary> <returns> A <see cref="T:System.Decimal" /> that indicates the numeric value of the current instance. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage"> <summary> Wraps an XML language type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage" /> class with the language identifier value of language attribute. </summary> <param name="value"> A <see cref="T:System.String" /> that contains the language identifier value of a language attribute. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage" /> object that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage.Value"> <summary> Gets or sets the language identifier of a language attribute. </summary> <returns> A <see cref="T:System.String" /> that contains the language identifier of a language attribute. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth"> <summary> Wraps an XSD gMonth type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth.#ctor(System.DateTime)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth" /> class with a specified <see cref="T:System.DateTime" /> object. </summary> <param name="value"> A <see cref="T:System.DateTime" /> object to initialize the current instance. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> does not contain a date and time that corresponds to any of the recognized format patterns. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth.Value" /> in the format "--MM--". </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth.Value"> <summary> Gets or sets the date and time of the current instance. </summary> <returns> The <see cref="T:System.DateTime" /> object that contains the date and time of the current instance. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay"> <summary> Wraps an XSD gMonthDay type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay.#ctor(System.DateTime)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay" /> class with a specified <see cref="T:System.DateTime" /> object. </summary> <param name="value"> A <see cref="T:System.DateTime" /> object to initialize the current instance. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> does not contain a date and time that corresponds to any of the recognized format patterns. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay.Value" /> in the format "'--'MM'-'dd". </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay.Value"> <summary> Gets or sets the date and time of the current instance. </summary> <returns> The <see cref="T:System.DateTime" /> object that contains the date and time of the current instance. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName"> <summary> Wraps an XML Name type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName" /> class with an XML Name type. </summary> <param name="value"> A <see cref="T:System.String" /> that contains an XML Name type. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName.Value"> <summary> Gets or sets an XML Name type. </summary> <returns> A <see cref="T:System.String" /> that contains an XML Name type. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName"> <summary> Wraps an XML NcName type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName" /> class with an XML NcName type. </summary> <param name="value"> A <see cref="T:System.String" /> that contains an XML NcName type. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName.Value"> <summary> Gets or sets an XML NcName type. </summary> <returns> A <see cref="T:System.String" /> that contains an XML NcName type. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger"> <summary> Wraps an XSD negativeInteger type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger.#ctor(System.Decimal)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger" /> class with a <see cref="T:System.Decimal" /> value. </summary> <param name="value"> A <see cref="T:System.Decimal" /> value to initialize the current instance. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> is greater than -1. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from Value. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger.Value"> <summary> Gets or sets the numeric value of the current instance. </summary> <returns> A <see cref="T:System.Decimal" /> that indicates the numeric value of the current instance. </returns> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> is greater than -1. </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken"> <summary> Wraps an XML NMTOKEN attribute. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken" /> class with an XML NMTOKEN attribute. </summary> <param name="value"> A <see cref="T:System.String" /> containing an XML NMTOKEN attribute. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken.Value"> <summary> Gets or sets an XML NMTOKEN attribute. </summary> <returns> A <see cref="T:System.String" /> that contains an XML NMTOKEN attribute. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens"> <summary> Wraps an XML NMTOKENS attribute. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens" /> class with an XML NMTOKENS attribute. </summary> <param name="value"> A <see cref="T:System.String" /> that contains an XML NMTOKENS attribute. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens.Value"> <summary> Gets or sets an XML NMTOKENS attribute. </summary> <returns> A <see cref="T:System.String" /> that contains an XML NMTOKENS attribute. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger"> <summary> Wraps an XSD nonNegativeInteger type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger.#ctor(System.Decimal)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger" /> class with a <see cref="T:System.Decimal" /> value. </summary> <param name="value"> A <see cref="T:System.Decimal" /> value to initialize the current instance. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> is less than 0. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger.Value"> <summary> Gets or sets the numeric value of the current instance. </summary> <returns> A <see cref="T:System.Decimal" /> that indicates the numeric value of the current instance. </returns> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> is less than 0. </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger"> <summary> Wraps an XSD nonPositiveInteger type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger.#ctor(System.Decimal)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger" /> class with a <see cref="T:System.Decimal" /> value. </summary> <param name="value"> A <see cref="T:System.Decimal" /> value to initialize the current instance. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> is greater than zero. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger" /> object that is obtained from <paramref name="value" /></returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from Value. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger.Value"> <summary> Gets or sets the numeric value of the current instance. </summary> <returns> A <see cref="T:System.Decimal" /> that indicates the numeric value of the current instance. </returns> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> is greater than zero. </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString"> <summary> Wraps an XML normalizedString type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString" /> class with a normalized string. </summary> <param name="value"> A <see cref="T:System.String" /> object that contains a normalized string. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> contains invalid characters (0xD, 0xA, or 0x9). </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString" /> object obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> contains invalid characters (0xD, 0xA, or 0x9). </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString.Value" /> in the format "<![CDATA[" + <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString.Value" /> + "]]>". </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString.Value"> <summary> Gets or sets a normalized string. </summary> <returns> A <see cref="T:System.String" /> object that contains a normalized string. </returns> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> contains invalid characters (0xD, 0xA, or 0x9). </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation"> <summary> Wraps an XML NOTATION attribute type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation" /> class with an XML NOTATION attribute. </summary> <param name="value"> A <see cref="T:System.String" /> that contains an XML NOTATION attribute. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation.Value"> <summary> Gets or sets an XML NOTATION attribute. </summary> <returns> A <see cref="T:System.String" /> that contains an XML NOTATION attribute. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger"> <summary> Wraps an XSD positiveInteger type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger.#ctor(System.Decimal)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger" /> class with a <see cref="T:System.Decimal" /> value. </summary> <param name="value"> A <see cref="T:System.Decimal" /> value to initialize the current instance. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> is less than 1. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger.Value"> <summary> Gets or sets the numeric value of the current instance. </summary> <returns> A <see cref="T:System.Decimal" /> indicating the numeric value of the current instance. </returns> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> is less than 1. </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName"> <summary> Wraps an XSD QName type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName" /> class with the local part of a qualified name. </summary> <param name="value"> A <see cref="T:System.String" /> that contains the local part of a qualified name. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName" /> class with the namespace alias and the local part of a qualified name. </summary> <param name="key"> A <see cref="T:System.String" /> that contains the namespace alias of a qualified name. </param> <param name="name"> A <see cref="T:System.String" /> that contains the local part of a qualified name. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.#ctor(System.String,System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName" /> class with the namespace alias, the local part of a qualified name, and the namespace that is referenced by the alias. </summary> <param name="key"> A <see cref="T:System.String" /> that contains the namespace alias of a qualified name. </param> <param name="name"> A <see cref="T:System.String" /> that contains the local part of a qualified name. </param> <param name="namespaceValue"> A <see cref="T:System.String" /> that contains the namespace that is referenced by <paramref name="key" />. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> indicating the XSD of the current SOAP type. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.Key"> <summary> Gets or sets the namespace alias of a qualified name. </summary> <returns> A <see cref="T:System.String" /> that contains the namespace alias of a qualified name. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.Name"> <summary> Gets or sets the name portion of a qualified name. </summary> <returns> A <see cref="T:System.String" /> that contains the name portion of a qualified name. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.Namespace"> <summary> Gets or sets the namespace that is referenced by <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.Key" />. </summary> <returns> A <see cref="T:System.String" /> that contains the namespace that is referenced by <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.Key" />. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.ToString"> <summary> Returns the qualified name as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> in the format " <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.Key" /> : <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.Name" /> ". If <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.Key" /> is not specified, this method returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.Name" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime"> <summary> Wraps an XSD time type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime.#ctor(System.DateTime)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime" /> class with a specified <see cref="T:System.DateTime" /> object. </summary> <param name="value"> A <see cref="T:System.DateTime" /> object to initialize the current instance. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> does not contain a date and time that corresponds to any of the recognized format patterns. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime.Value" /> in the format "HH:mm:ss.fffzzz". </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime.Value"> <summary> Gets or sets the date and time of the current instance. </summary> <returns> The <see cref="T:System.DateTime" /> object that contains the date and time of the current instance. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken"> <summary> Wraps an XML token type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken" /> class with an XML token. </summary> <param name="value"> A <see cref="T:System.String" /> that contains an XML token. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> One of the following: <paramref name="value" /> contains invalid characters (0xD or 0x9). <paramref name="value" /> [0] or <paramref name="value" /> [ <paramref name="value" />.Length - 1] contains white space. <paramref name="value" /> contains any spaces. </exception> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The String to convert. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken.Value" />. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken.Value"> <summary> Gets or sets an XML token. </summary> <returns> A <see cref="T:System.String" /> that contains an XML token. </returns> <exception cref="T:System.Runtime.Remoting.RemotingException"> One of the following: <paramref name="value" /> contains invalid characters (0xD or 0x9). <paramref name="value" /> [0] or <paramref name="value" /> [ <paramref name="value" />.Length - 1] contains white space. <paramref name="value" /> contains any spaces. </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear"> <summary> Wraps an XSD gYear type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.#ctor(System.DateTime)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear" /> class with a specified <see cref="T:System.DateTime" /> object. </summary> <param name="value"> A <see cref="T:System.DateTime" /> object to initialize the current instance. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.#ctor(System.DateTime,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear" /> class with a specified <see cref="T:System.DateTime" /> object and an integer that indicates whether <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.Value" /> is a positive or negative value. </summary> <param name="value"> A <see cref="T:System.DateTime" /> object to initialize the current instance. </param> <param name="sign"> An integer that indicates whether <paramref name="value" /> is positive. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert. </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> does not contain a date and time that corresponds to any of the recognized format patterns. </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.Sign"> <summary> Gets or sets whether the date and time of the current instance is positive or negative. </summary> <returns> An integer that indicates whether <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.Value" /> is positive or negative. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.ToString"> <summary> Returns <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.Value" /> in the format "yyyy" or "-yyyy" if <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.Sign" /> is negative. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.Value"> <summary> Gets or sets the date and time of the current instance. </summary> <returns> The <see cref="T:System.DateTime" /> object that contains the date and time of the current instance. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth"> <summary> Wraps an XSD gYearMonth type. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth" /> class. </summary> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.#ctor(System.DateTime)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth" /> class with a specified <see cref="T:System.DateTime" /> object. </summary> <param name="value"> A <see cref="T:System.DateTime" /> object to initialize the current instance. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.#ctor(System.DateTime,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth" /> class with a specified <see cref="T:System.DateTime" /> object and an integer that indicates whether <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.Value" /> is a positive or negative value. </summary> <param name="value"> A <see cref="T:System.DateTime" /> object to initialize the current instance. </param> <param name="sign"> An integer that indicates whether <paramref name="value" /> is positive. </param> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.GetXsdType"> <summary> Returns the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.Parse(System.String)"> <summary> Converts the specified <see cref="T:System.String" /> into a <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth" /> object. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth" /> object that is obtained from <paramref name="value" />. </returns> <param name="value"> The <see cref="T:System.String" /> to convert </param> <exception cref="T:System.Runtime.Remoting.RemotingException"> <paramref name="value" /> does not contain a date and time that corresponds to any of the recognized format patterns. </exception> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.Sign"> <summary> Gets or sets whether the date and time of the current instance is positive or negative. </summary> <returns> An integer that indicates whether <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.Value" /> is positive or negative. </returns> </member> <member name="M:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.ToString"> <summary> Returns a <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.Value" /> as a <see cref="T:System.String" />. </summary> <returns> A <see cref="T:System.String" /> that is obtained from <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.Value" /> in the format "yyyy-MM" or "'-'yyyy-MM" if <see cref="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.Sign" /> is negative. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.Value"> <summary> Gets or sets the date and time of the current instance. </summary> <returns> The <see cref="T:System.DateTime" /> object that contains the date and time of the current instance. </returns> </member> <member name="P:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth.XsdType"> <summary> Gets the XML Schema definition language (XSD) of the current SOAP type. </summary> <returns> A <see cref="T:System.String" /> that indicates the XSD of the current SOAP type. </returns> </member> <member name="T:System.Runtime.Remoting.Proxies.ProxyAttribute"> <summary> Indicates that an object type requires a custom proxy. </summary> </member> <member name="M:System.Runtime.Remoting.Proxies.ProxyAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Proxies.ProxyAttribute" /> class with default values. </summary> </member> <member name="M:System.Runtime.Remoting.Proxies.ProxyAttribute.CreateInstance(System.Type)"> <summary> Creates either an uninitialized <see cref="T:System.MarshalByRefObject" /> or a transparent proxy, depending on whether the specified type can exist in the current context. </summary> <returns> An uninitialized <see cref="T:System.MarshalByRefObject" /> or a transparent proxy. </returns> <param name="serverType"> The object type to create an instance of. </param> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.ProxyAttribute.CreateProxy(System.Runtime.Remoting.ObjRef,System.Type,System.Object,System.Runtime.Remoting.Contexts.Context)"> <summary> Creates an instance of a remoting proxy for a remote object described by the specified <see cref="T:System.Runtime.Remoting.ObjRef" />, and located on the server. </summary> <returns> The new instance of remoting proxy for the remote object that is described in the specified <see cref="T:System.Runtime.Remoting.ObjRef" />. </returns> <param name="objRef"> The object reference to the remote object for which to create a proxy. </param> <param name="serverType"> The type of the server where the remote object is located. </param> <param name="serverObject"> The server object. </param> <param name="serverContext"> The context in which the server object is located. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.ProxyAttribute.GetPropertiesForNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> [To be supplied.] </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.ProxyAttribute.IsContextOK(System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> [To be supplied.] </summary> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Proxies.RealProxy"> <summary> Provides base functionality for proxies. </summary> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> class with default values. </summary> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> class that represents a remote object of the specified <see cref="T:System.Type" />. </summary> <param name="classToProxy"> The <see cref="T:System.Type" /> of the remote object for which to create a proxy. </param> <exception cref="T:System.ArgumentException"> <paramref name="classToProxy" /> is not an interface, and is not derived from <see cref="T:System.MarshalByRefObject" />. </exception> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.#ctor(System.Type,System.IntPtr,System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> class. </summary> <param name="classToProxy"> The <see cref="T:System.Type" /> of the remote object for which to create a proxy. </param> <param name="stub"> A stub to associate with the new proxy instance. </param> <param name="stubData"> The stub data to set for the specified stub and the new proxy instance. </param> <exception cref="T:System.ArgumentException"> <paramref name="classToProxy" /> is not an interface, and is not derived from <see cref="T:System.MarshalByRefObject" />. </exception> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.AttachServer(System.MarshalByRefObject)"> <summary> Attaches the current proxy instance to the specified remote <see cref="T:System.MarshalByRefObject" />. </summary> <param name="s"> The <see cref="T:System.MarshalByRefObject" /> that the current proxy instance represents. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have UnmanagedCode permission. </exception> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.CreateObjRef(System.Type)"> <summary> Creates an <see cref="T:System.Runtime.Remoting.ObjRef" /> for the specified object type, and registers it with the remoting infrastructure as a client-activated object. </summary> <returns> A new instance of <see cref="T:System.Runtime.Remoting.ObjRef" /> that is created for the specified type. </returns> <param name="requestedType"> The object type that an <see cref="T:System.Runtime.Remoting.ObjRef" /> is created for. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.DetachServer"> <summary> Detaches the current proxy instance from the remote server object that it represents. </summary> <returns> The detached server object. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have UnmanagedCode permission. </exception> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.GetCOMIUnknown(System.Boolean)"> <summary> Requests an unmanaged reference to the object represented by the current proxy instance. </summary> <returns> A pointer to a COM Callable Wrapper if the object reference is requested for communication with unmanaged objects in the current process through COM, or a pointer to a cached or newly generated IUnknown COM interface if the object reference is requested for marshaling to a remote location. </returns> <param name="fIsMarshalled">true if the object reference is requested for marshaling to a remote location; false if the object reference is requested for communication with unmanaged objects in the current process through COM. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Adds the transparent proxy of the object represented by the current instance of <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> to the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" />. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> into which the transparent proxy is serialized. </param> <param name="context"> The source and destination of the serialization. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> or <paramref name="context" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have SerializationFormatter permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.GetProxiedType"> <summary> Returns the <see cref="T:System.Type" /> of the object that the current instance of <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> represents. </summary> <returns> The <see cref="T:System.Type" /> of the object that the current instance of <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> represents. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.GetStubData(System.Runtime.Remoting.Proxies.RealProxy)"> <summary> Retrieves stub data that is stored for the specified proxy. </summary> <returns> Stub data for the specified proxy. </returns> <param name="rp"> The proxy for which stub data is requested. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have UnmanagedCode permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.GetTransparentProxy"> <summary> Returns the transparent proxy for the current instance of <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" />. </summary> <returns> The transparent proxy for the current proxy instance. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.GetUnwrappedServer"> <summary> Returns the server object that is represented by the current proxy instance. </summary> <returns> The server object that is represented by the current proxy instance. </returns> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have UnmanagedCode permission. </exception> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.InitializeServerObject(System.Runtime.Remoting.Activation.IConstructionCallMessage)"> <summary> Initializes a new instance of the object <see cref="T:System.Type" /> of the remote object that the current instance of <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" /> represents with the specified <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" />. </summary> <returns> The result of the construction request. </returns> <param name="ctorMsg"> A construction call message that contains the constructor parameters for the new instance of the remote object that is represented by the current <see cref="T:System.Runtime.Remoting.Proxies.RealProxy" />. Can be null. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have UnmanagedCode permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.Invoke(System.Runtime.Remoting.Messaging.IMessage)"> <summary> When overridden in a derived class, invokes the method that is specified in the provided <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> on the remote object that is represented by the current instance. </summary> <returns> The message returned by the invoked method, containing the return value and any out or ref parameters. </returns> <param name="msg"> A <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> that contains a <see cref="T:System.Collections.IDictionary" /> of information about the method call. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.SetCOMIUnknown(System.IntPtr)"> <summary> Stores an unmanaged proxy of the object that is represented by the current instance. </summary> <param name="i"> A pointer to the IUnknown interface for the object that is represented by the current proxy instance. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.SetStubData(System.Runtime.Remoting.Proxies.RealProxy,System.Object)"> <summary> Sets the stub data for the specified proxy. </summary> <param name="rp"> The proxy for which to set stub data. </param> <param name="stubData"> The new stub data. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have UnmanagedCode permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Proxies.RealProxy.SupportsInterface(System.Guid@)"> <summary> Requests a COM interface with the specified ID. </summary> <returns> A pointer to the requested interface. </returns> <param name="iid"> A reference to the requested interface. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Services.EnterpriseServicesHelper"> <summary> Provides APIs that are needed for communication and operation with unmanaged classes outside of the <see cref="T:System.AppDomain" />. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Remoting.Services.EnterpriseServicesHelper.#ctor"></member> <member name="M:System.Runtime.Remoting.Services.EnterpriseServicesHelper.CreateConstructionReturnMessage(System.Runtime.Remoting.Activation.IConstructionCallMessage,System.MarshalByRefObject)"> <summary> Constructs a <see cref="T:System.Runtime.Remoting.Messaging.ReturnMessage" /> from the specified <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" />. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Activation.IConstructionReturnMessage" /> returned from the construction call that is specified in the <paramref name="ctorMsg" /> parameter. </returns> <param name="ctorMsg"> A construction call to the object from which the new <see cref="T:System.Runtime.Remoting.Messaging.ReturnMessage" /> instance is returning. </param> <param name="retObj"> A <see cref="T:System.Runtime.Remoting.ObjRef" /> that represents the object that is constructed with the construction call in <paramref name="ctorMsg" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Services.EnterpriseServicesHelper.SwitchWrappers(System.Runtime.Remoting.Proxies.RealProxy,System.Runtime.Remoting.Proxies.RealProxy)"> <summary> Switches a COM Callable Wrapper (CCW) from one instance of a class to another instance of the same class. </summary> <param name="oldcp"> A proxy that represents the old instance of a class that is referenced by a CCW. </param> <param name="newcp"> A proxy that represents the new instance of a class that is referenced by a CCW. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have UnmanagedCode permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Services.EnterpriseServicesHelper.WrapIUnknownWithComObject(System.IntPtr)"> <summary> Wraps the specified IUnknown COM interface with a Runtime Callable Wrapper (RCW). </summary> <returns> The RCW where the specified IUnknown is wrapped. </returns> <param name="punk"> A pointer to the IUnknown COM interface to wrap. </param> <exception cref="T:System.Security.SecurityException"> The immediate caller does not have UnmanagedCode permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Remoting.Services.ITrackingHandler"> <summary> Indicates that the implementing object must be notified of marshaling, unmarshaling, and disconnection of objects and proxies by the remoting infrastructure. </summary> </member> <member name="M:System.Runtime.Remoting.Services.ITrackingHandler.DisconnectedObject(System.Object)"> <summary> Notifies the current instance that an object has been disconnected from its proxy. </summary> <param name="obj"> The disconnected object. </param> </member> <member name="M:System.Runtime.Remoting.Services.ITrackingHandler.MarshaledObject(System.Object,System.Runtime.Remoting.ObjRef)"> <summary> Notifies the current instance that an object has been marshaled. </summary> <param name="obj"> The object that has been marshaled. </param> <param name="or"> The <see cref="T:System.Runtime.Remoting.ObjRef" /> that results from marshaling and represents the specified object. </param> </member> <member name="M:System.Runtime.Remoting.Services.ITrackingHandler.UnmarshaledObject(System.Object,System.Runtime.Remoting.ObjRef)"> <summary> Notifies the current instance that an object has been unmarshaled. </summary> <param name="obj"> The unmarshaled object. </param> <param name="or"> The <see cref="T:System.Runtime.Remoting.ObjRef" /> that represents the specified object. </param> </member> <member name="T:System.Runtime.Remoting.Services.TrackingServices"> <summary> Provides a way to register, unregister, and obtain a list of tracking handlers. </summary> </member> <member name="M:System.Runtime.Remoting.Services.TrackingServices.#ctor"></member> <member name="P:System.Runtime.Remoting.Services.TrackingServices.RegisteredHandlers"> <summary> Gets an array of the tracking handlers that are currently registered with <see cref="T:System.Runtime.Remoting.Services.TrackingServices" /> in the current <see cref="T:System.AppDomain" />. </summary> <returns> An array of the tracking handlers that are currently registered with <see cref="T:System.Runtime.Remoting.Services.TrackingServices" /> in the current <see cref="T:System.AppDomain" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Services.TrackingServices.RegisterTrackingHandler(System.Runtime.Remoting.Services.ITrackingHandler)"> <summary> Registers a new tracking handler with the <see cref="T:System.Runtime.Remoting.Services.TrackingServices" />. </summary> <param name="handler"> The tracking handler to register. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="handler" /> is null. </exception> <exception cref="T:System.Runtime.Remoting.RemotingException"> The handler that is indicated in the <paramref name="handler" /> parameter is already registered with <see cref="T:System.Runtime.Remoting.Services.TrackingServices" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Runtime.Remoting.Services.TrackingServices.UnregisterTrackingHandler(System.Runtime.Remoting.Services.ITrackingHandler)"> <summary> Unregisters the specified tracking handler from <see cref="T:System.Runtime.Remoting.Services.TrackingServices" />. </summary> <param name="handler"> The handler to unregister. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="handler" /> is null. </exception> <exception cref="T:System.Runtime.Remoting.RemotingException"> The handler that is indicated in the <paramref name="handler" /> parameter is not registered with <see cref="T:System.Runtime.Remoting.Services.TrackingServices" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Runtime.Serialization.Formatter"> <summary> Provides base functionality for the common language runtime serialization formatters. </summary> </member> <member name="M:System.Runtime.Serialization.Formatter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatter" /> class. </summary> </member> <member name="P:System.Runtime.Serialization.Formatter.Binder"> <summary> When overridden in a derived class, gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder" /> used with the current formatter. </summary> <returns> The <see cref="T:System.Runtime.Serialization.SerializationBinder" /> used with the current formatter. </returns> </member> <member name="P:System.Runtime.Serialization.Formatter.Context"> <summary> When overridden in a derived class, gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext" /> used for the current serialization. </summary> <returns> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> used for the current serialization. </returns> </member> <member name="M:System.Runtime.Serialization.Formatter.Deserialize(System.IO.Stream)"> <summary> When overridden in a derived class, deserializes the stream attached to the formatter when it was created, creating a graph of objects identical to the graph originally serialized into that stream. </summary> <returns> The top object of the deserialized graph of objects. </returns> <param name="serializationStream"> The stream to deserialize. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.GetNext(System.Int64@)"> <summary> Returns the next object to serialize, from the formatter's internal work queue. </summary> <returns> The next object to serialize. </returns> <param name="objID"> The ID assigned to the current object during serialization. </param> <exception cref="T:System.Runtime.Serialization.SerializationException"> The next object retrieved from the work queue did not have an assigned ID. </exception> </member> <member name="F:System.Runtime.Serialization.Formatter.m_idGenerator"> <summary> Contains the <see cref="T:System.Runtime.Serialization.ObjectIDGenerator" /> used with the current formatter. </summary> </member> <member name="F:System.Runtime.Serialization.Formatter.m_objectQueue"> <summary> Contains a <see cref="T:System.Collections.Queue" /> of the objects left to serialize. </summary> </member> <member name="M:System.Runtime.Serialization.Formatter.Schedule(System.Object)"> <summary> Schedules an object for later serialization. </summary> <returns> The object ID assigned to the object. </returns> <param name="obj"> The object to schedule for serialization. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.Serialize(System.IO.Stream,System.Object)"> <summary> When overridden in a derived class, serializes the graph of objects with the specified root to the stream already attached to the formatter. </summary> <param name="serializationStream"> The stream to which the objects are serialized. </param> <param name="graph"> The object at the root of the graph to serialize. </param> </member> <member name="P:System.Runtime.Serialization.Formatter.SurrogateSelector"> <summary> When overridden in a derived class, gets or sets the <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> used with the current formatter. </summary> <returns> The <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> used with the current formatter. </returns> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteArray(System.Object,System.String,System.Type)"> <summary> When overridden in a derived class, writes an array to the stream already attached to the formatter. </summary> <param name="obj"> The array to write. </param> <param name="name"> The name of the array. </param> <param name="memberType"> The type of elements that the array holds. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteBoolean(System.Boolean,System.String)"> <summary> When overridden in a derived class, writes a Boolean value to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteByte(System.Byte,System.String)"> <summary> When overridden in a derived class, writes an 8-bit unsigned integer to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteChar(System.Char,System.String)"> <summary> When overridden in a derived class, writes a Unicode character to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteDateTime(System.DateTime,System.String)"> <summary> When overridden in a derived class, writes a <see cref="T:System.DateTime" /> value to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteDecimal(System.Decimal,System.String)"> <summary> When overridden in a derived class, writes a <see cref="T:System.Decimal" /> value to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteDouble(System.Double,System.String)"> <summary> When overridden in a derived class, writes a double-precision floating-point number to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteInt16(System.Int16,System.String)"> <summary> When overridden in a derived class, writes a 16-bit signed integer to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteInt32(System.Int32,System.String)"> <summary> When overridden in a derived class, writes a 32-bit signed integer to the stream. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteInt64(System.Int64,System.String)"> <summary> When overridden in a derived class, writes a 64-bit signed integer to the stream. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteMember(System.String,System.Object)"> <summary> Inspects the type of data received, and calls the appropriate Write method to perform the write to the stream already attached to the formatter. </summary> <param name="memberName"> The name of the member to serialize. </param> <param name="data"> The object to write to the stream attached to the formatter. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteObjectRef(System.Object,System.String,System.Type)"> <summary> When overridden in a derived class, writes an object reference to the stream already attached to the formatter. </summary> <param name="obj"> The object reference to write. </param> <param name="name"> The name of the member. </param> <param name="memberType"> The type of object the reference points to. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteSByte(System.SByte,System.String)"> <summary> When overridden in a derived class, writes an 8-bit signed integer to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteSingle(System.Single,System.String)"> <summary> When overridden in a derived class, writes a single-precision floating-point number to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteTimeSpan(System.TimeSpan,System.String)"> <summary> When overridden in a derived class, writes a <see cref="T:System.TimeSpan" /> value to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteUInt16(System.UInt16,System.String)"> <summary> When overridden in a derived class, writes a 16-bit unsigned integer to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteUInt32(System.UInt32,System.String)"> <summary> When overridden in a derived class, writes a 32-bit unsigned integer to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteUInt64(System.UInt64,System.String)"> <summary> When overridden in a derived class, writes a 64-bit unsigned integer to the stream already attached to the formatter. </summary> <param name="val"> The value to write. </param> <param name="name"> The name of the member. </param> </member> <member name="M:System.Runtime.Serialization.Formatter.WriteValueType(System.Object,System.String,System.Type)"> <summary> When overridden in a derived class, writes a value of the given type to the stream already attached to the formatter. </summary> <param name="obj"> The object representing the value type. </param> <param name="name"> The name of the member. </param> <param name="memberType"> The <see cref="T:System.Type" /> of the value type. </param> </member> <member name="T:System.Runtime.Serialization.FormatterConverter"> <summary> Represents a base implementation of the <see cref="T:System.Runtime.Serialization.IFormatterConverter" /> interface that uses the <see cref="T:System.Convert" /> class and the <see cref="T:System.IConvertible" /> interface. </summary> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.FormatterConverter" /> class. </summary> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.Convert(System.Object,System.Type)"> <summary> Converts a value to the given <see cref="T:System.Type" />. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <param name="type"> The <see cref="T:System.Type" /> into which <paramref name="value" /> is converted. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.Convert(System.Object,System.TypeCode)"> <summary> Converts a value to the given <see cref="T:System.TypeCode" />. </summary> <returns> The converted <paramref name="value" />, or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <param name="typeCode"> The <see cref="T:System.TypeCode" /> into which <paramref name="value" /> is converted. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToBoolean(System.Object)"> <summary> Converts a value to a <see cref="T:System.Boolean" />. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToByte(System.Object)"> <summary> Converts a value to an 8-bit unsigned integer. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToChar(System.Object)"> <summary> Converts a value to a Unicode character. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToDateTime(System.Object)"> <summary> Converts a value to a <see cref="T:System.DateTime" />. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToDecimal(System.Object)"> <summary> Converts a value to a <see cref="T:System.Decimal" />. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToDouble(System.Object)"> <summary> Converts a value to a double-precision floating-point number. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToInt16(System.Object)"> <summary> Converts a value to a 16-bit signed integer. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToInt32(System.Object)"> <summary> Converts a value to a 32-bit signed integer. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToInt64(System.Object)"> <summary> Converts a value to a 64-bit signed integer. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToSByte(System.Object)"> <summary> Converts a value to a <see cref="T:System.SByte" />. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToSingle(System.Object)"> <summary> Converts a value to a single-precision floating-point number. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToString(System.Object)"> <summary> Converts the specified object to a <see cref="T:System.String" />. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToUInt16(System.Object)"> <summary> Converts a value to a 16-bit unsigned integer. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToUInt32(System.Object)"> <summary> Converts a value to a 32-bit unsigned integer. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterConverter.ToUInt64(System.Object)"> <summary> Converts a value to a 64-bit unsigned integer. </summary> <returns> The converted <paramref name="value" /> or null if the <paramref name="type" /> parameter is null. </returns> <param name="value"> The object to convert. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="value" /> parameter is null. </exception> </member> <member name="T:System.Runtime.Serialization.FormatterServices"> <summary> Provides static methods to aid with the implementation of a <see cref="T:System.Runtime.Serialization.Formatter" /> for serialization. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Serialization.FormatterServices.CheckTypeSecurity(System.Type,System.Runtime.Serialization.Formatters.TypeFilterLevel)"> <summary> Determines whether the specified <see cref="T:System.Type" /> can be deserialized with the <see cref="T:System.Runtime.Serialization.Formatters.TypeFilterLevel" /> property set to Low. </summary> <param name="t"> The <see cref="T:System.Type" /> to check for the ability to deserialize. </param> <param name="securityLevel"> The <see cref="T:System.Runtime.Serialization.Formatters.TypeFilterLevel" /> property value. </param> <exception cref="T:System.Security.SecurityException"> The <paramref name="t" /> parameter is an advanced type and cannot be deserialized when the <see cref="T:System.Runtime.Serialization.Formatters.TypeFilterLevel" /> property is set to Low. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterServices.GetObjectData(System.Object,System.Reflection.MemberInfo[])"> <summary> Extracts the data from the specified object and returns it as an array of objects. </summary> <returns> An array of <see cref="T:System.Object" /> that contains data stored in <paramref name="members" /> and associated with <paramref name="obj" />. </returns> <param name="obj"> The object to write to the formatter. </param> <param name="members"> The members to extract from the object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> or <paramref name="members" /> parameter is null. An element of <paramref name="members" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element of <paramref name="members" /> does not represent a field. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.FormatterServices.GetSafeUninitializedObject(System.Type)"> <summary> Creates a new instance of the specified object type. </summary> <returns> A zeroed object of the specified type. </returns> <param name="type"> The type of object to create. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <paramref name="type" /> parameter is not a valid common language runtime type. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.FormatterServices.GetSerializableMembers(System.Type)"> <summary> Gets all the serializable members for a class of the specified <see cref="T:System.Type" />. </summary> <returns> An array of type <see cref="T:System.Reflection.MemberInfo" /> of the non-transient, non-static members. </returns> <param name="type"> The type being serialized. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.FormatterServices.GetSerializableMembers(System.Type,System.Runtime.Serialization.StreamingContext)"> <summary> Gets all the serializable members for a class of the specified <see cref="T:System.Type" /> and in the provided <see cref="T:System.Runtime.Serialization.StreamingContext" />. </summary> <returns> An array of type <see cref="T:System.Reflection.MemberInfo" /> of the non-transient, non-static members. </returns> <param name="type"> The type being serialized or cloned. </param> <param name="context"> The context where the serialization occurs. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.FormatterServices.GetTypeFromAssembly(System.Reflection.Assembly,System.String)"> <summary> Looks up the <see cref="T:System.Type" /> of the specified object in the provided <see cref="T:System.Reflection.Assembly" />. </summary> <returns> The <see cref="T:System.Type" /> of the object. </returns> <param name="assem"> The assembly where you want to look up the object. </param> <param name="name"> The name of the object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="assem" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.FormatterServices.GetUninitializedObject(System.Type)"> <summary> Creates a new instance of the specified object type. </summary> <returns> A zeroed object of the specified type. </returns> <param name="type"> The type of object to create. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.FormatterServices.PopulateObjectMembers(System.Object,System.Reflection.MemberInfo[],System.Object[])"> <summary> Populates the specified object with values for each field drawn from the data array of objects. </summary> <returns> The newly populated object. </returns> <param name="obj"></param> <param name="members"></param> <param name="data"></param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" />, <paramref name="members" />, or <paramref name="data" /> parameter is null. An element of <paramref name="members" /> is null. </exception> <exception cref="T:System.ArgumentException"> The length of <paramref name="members" /> does not match the length of <paramref name="data" />. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element of <paramref name="members" /> is not an instance of <see cref="T:System.Reflection.FieldInfo" />. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="T:System.Runtime.Serialization.IDeserializationCallback"> <summary> Indicates that a class is to be notified when deserialization of the entire object graph has been completed. </summary> </member> <member name="M:System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)"> <summary> Runs when the entire object graph has been deserialized. </summary> <param name="sender"> The object that initiated the callback. The functionality for this parameter is not currently implemented. </param> </member> <member name="T:System.Runtime.Serialization.IFormatter"> <summary> Provides functionality for formatting serialized objects. </summary> </member> <member name="P:System.Runtime.Serialization.IFormatter.Binder"> <summary> Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder" /> that performs type lookups during deserialization. </summary> <returns> The <see cref="T:System.Runtime.Serialization.SerializationBinder" /> that performs type lookups during deserialization. </returns> </member> <member name="P:System.Runtime.Serialization.IFormatter.Context"> <summary> Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext" /> used for serialization and deserialization. </summary> <returns> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> used for serialization and deserialization. </returns> </member> <member name="M:System.Runtime.Serialization.IFormatter.Deserialize(System.IO.Stream)"> <summary> Deserializes the data on the provided stream and reconstitutes the graph of objects. </summary> <returns> The top object of the deserialized graph. </returns> <param name="serializationStream"> The stream that contains the data to deserialize. </param> </member> <member name="M:System.Runtime.Serialization.IFormatter.Serialize(System.IO.Stream,System.Object)"> <summary> Serializes an object, or graph of objects with the given root to the provided stream. </summary> <param name="serializationStream"> The stream where the formatter puts the serialized data. This stream can reference a variety of backing stores (such as files, network, memory, and so on). </param> <param name="graph"> The object, or root of the object graph, to serialize. All child objects of this root object are automatically serialized. </param> </member> <member name="P:System.Runtime.Serialization.IFormatter.SurrogateSelector"> <summary> Gets or sets the <see cref="T:System.Runtime.Serialization.SurrogateSelector" /> used by the current formatter. </summary> <returns> The <see cref="T:System.Runtime.Serialization.SurrogateSelector" /> used by this formatter. </returns> </member> <member name="T:System.Runtime.Serialization.IFormatterConverter"> <summary> Provides the connection between an instance of <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and the formatter-provided class best suited to parse the data inside the <see cref="T:System.Runtime.Serialization.SerializationInfo" />. </summary> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.Convert(System.Object,System.Type)"> <summary> Converts a value to the given <see cref="T:System.Type" />. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> <param name="type"> The <see cref="T:System.Type" /> into which <paramref name="value" /> is to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.Convert(System.Object,System.TypeCode)"> <summary> Converts a value to the given <see cref="T:System.TypeCode" />. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> <param name="typeCode"> The <see cref="T:System.TypeCode" /> into which <paramref name="value" /> is to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToBoolean(System.Object)"> <summary> Converts a value to a <see cref="T:System.Boolean" />. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToByte(System.Object)"> <summary> Converts a value to an 8-bit unsigned integer. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToChar(System.Object)"> <summary> Converts a value to a Unicode character. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToDateTime(System.Object)"> <summary> Converts a value to a <see cref="T:System.DateTime" />. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToDecimal(System.Object)"> <summary> Converts a value to a <see cref="T:System.Decimal" />. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToDouble(System.Object)"> <summary> Converts a value to a double-precision floating-point number. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToInt16(System.Object)"> <summary> Converts a value to a 16-bit signed integer. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToInt32(System.Object)"> <summary> Converts a value to a 32-bit signed integer. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToInt64(System.Object)"> <summary> Converts a value to a 64-bit signed integer. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToSByte(System.Object)"> <summary> Converts a value to a <see cref="T:System.SByte" />. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToSingle(System.Object)"> <summary> Converts a value to a single-precision floating-point number. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToString(System.Object)"> <summary> Converts a value to a <see cref="T:System.String" />. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToUInt16(System.Object)"> <summary> Converts a value to a 16-bit unsigned integer. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToUInt32(System.Object)"> <summary> Converts a value to a 32-bit unsigned integer. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="M:System.Runtime.Serialization.IFormatterConverter.ToUInt64(System.Object)"> <summary> Converts a value to a 64-bit unsigned integer. </summary> <returns> The converted <paramref name="value" />. </returns> <param name="value"> The object to be converted. </param> </member> <member name="T:System.Runtime.Serialization.IObjectReference"> <summary> Indicates that the current interface implementer is a reference to another object. </summary> </member> <member name="M:System.Runtime.Serialization.IObjectReference.GetRealObject(System.Runtime.Serialization.StreamingContext)"> <summary> Returns the real object that should be deserialized, rather than the object that the serialized stream specifies. </summary> <returns> Returns the actual object that is put into the graph. </returns> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> from which the current object is deserialized. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. The call will not work on a medium trusted server. </exception> </member> <member name="T:System.Runtime.Serialization.ISerializable"> <summary> Allows an object to control its own serialization and deserialization. </summary> </member> <member name="M:System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data. </param> <param name="context"> The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext" />) for this serialization. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="T:System.Runtime.Serialization.ISerializationSurrogate"> <summary> Implements a serialization surrogate selector that allows one object to perform serialization and deserialization of another. </summary> </member> <member name="M:System.Runtime.Serialization.ISerializationSurrogate.GetObjectData(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates the provided <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the object. </summary> <param name="obj"> The object to serialize. </param> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data. </param> <param name="context"> The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext" />) for this serialization. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Runtime.Serialization.ISerializationSurrogate.SetObjectData(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector)"> <summary> Populates the object using the information in the <see cref="T:System.Runtime.Serialization.SerializationInfo" />. </summary> <returns> The populated deserialized object. </returns> <param name="obj"> The object to populate. </param> <param name="info"> The information to populate the object. </param> <param name="context"> The source from which the object is deserialized. </param> <param name="selector"> The surrogate selector where the search for a compatible surrogate begins. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="T:System.Runtime.Serialization.ISurrogateSelector"> <summary> Indicates a serialization surrogate selector class. </summary> </member> <member name="M:System.Runtime.Serialization.ISurrogateSelector.ChainSelector(System.Runtime.Serialization.ISurrogateSelector)"> <summary> Specifies the next <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> for surrogates to examine if the current instance does not have a surrogate for the specified type and assembly in the specified context. </summary> <param name="selector"> The next surrogate selector to examine. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Runtime.Serialization.ISurrogateSelector.GetNextSelector"> <summary> Returns the next surrogate selector in the chain. </summary> <returns> The next surrogate selector in the chain or null. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Runtime.Serialization.ISurrogateSelector.GetSurrogate(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector@)"> <summary> Finds the surrogate that represents the specified object's type, starting with the specified surrogate selector for the specified serialization context. </summary> <returns> The appropriate surrogate for the given type in the given context. </returns> <param name="type"> The <see cref="T:System.Type" /> of object (class) that needs a surrogate. </param> <param name="context"> The source or destination context for the current serialization. </param> <param name="selector"> When this method returns, contains a <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> that holds a reference to the surrogate selector where the appropriate surrogate was found. This parameter is passed uninitialized. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="T:System.Runtime.Serialization.ObjectIDGenerator"> <summary> Generates IDs for objects. </summary> </member> <member name="M:System.Runtime.Serialization.ObjectIDGenerator.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.ObjectIDGenerator" /> class. </summary> </member> <member name="M:System.Runtime.Serialization.ObjectIDGenerator.GetId(System.Object,System.Boolean@)"> <summary> Returns the ID for the specified object, generating a new ID if the specified object has not already been identified by the <see cref="T:System.Runtime.Serialization.ObjectIDGenerator" />. </summary> <returns> The object's ID is used for serialization. <paramref name="firstTime" /> is set to true if this is the first time the object has been identified; otherwise, it is set to false. </returns> <param name="obj"> The object you want an ID for. </param> <param name="firstTime">true if <paramref name="obj" /> was not previously known to the <see cref="T:System.Runtime.Serialization.ObjectIDGenerator" />; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <see cref="T:System.Runtime.Serialization.ObjectIDGenerator" /> has been asked to keep track of too many objects. </exception> </member> <member name="M:System.Runtime.Serialization.ObjectIDGenerator.HasId(System.Object,System.Boolean@)"> <summary> Determines whether an object has already been assigned an ID. </summary> <returns> The object ID of <paramref name="obj" /> if previously known to the <see cref="T:System.Runtime.Serialization.ObjectIDGenerator" />; otherwise, zero. </returns> <param name="obj"> The object you are asking for. </param> <param name="firstTime">true if <paramref name="obj" /> was not previously known to the <see cref="T:System.Runtime.Serialization.ObjectIDGenerator" />; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> </member> <member name="T:System.Runtime.Serialization.ObjectManager"> <summary> Keeps track of objects as they are deserialized. </summary> </member> <member name="M:System.Runtime.Serialization.ObjectManager.#ctor(System.Runtime.Serialization.ISurrogateSelector,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.ObjectManager" /> class. </summary> <param name="selector"> The surrogate selector to use. The <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> determines the correct surrogate to use when deserializing objects of a given type. At deserialization time, the surrogate selector creates a new instance of the object from the information transmitted on the stream. </param> <param name="context"> The streaming context. The <see cref="T:System.Runtime.Serialization.StreamingContext" /> is not used by ObjectManager, but is passed as a parameter to any objects implementing <see cref="T:System.Runtime.Serialization.ISerializable" /> or having a <see cref="T:System.Runtime.Serialization.ISerializationSurrogate" />. These objects can take specific actions depending on the source of the information to deserialize. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Runtime.Serialization.ObjectManager.DoFixups"> <summary> Performs all the recorded fixups. </summary> <exception cref="T:System.Runtime.Serialization.SerializationException"> A fixup was not successfully completed. </exception> </member> <member name="M:System.Runtime.Serialization.ObjectManager.GetObject(System.Int64)"> <summary> Returns the object with the specified object ID. </summary> <returns> The object with the specified object ID if it has been previously stored or null if no such object has been registered. </returns> <param name="objectID"> The ID of the requested object. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="objectID" /> parameter is less than or equal to zero. </exception> </member> <member name="M:System.Runtime.Serialization.ObjectManager.RaiseDeserializationEvent"> <summary> Raises the deserialization event to any registered object that implements <see cref="T:System.Runtime.Serialization.IDeserializationCallback" />. </summary> </member> <member name="M:System.Runtime.Serialization.ObjectManager.RaiseOnDeserializingEvent(System.Object)"> <summary> Invokes the method marked with the <see cref="T:System.Runtime.Serialization.OnDeserializingAttribute" />. </summary> <param name="obj"> The instance of the type that contains the method to be invoked. </param> </member> <member name="M:System.Runtime.Serialization.ObjectManager.RecordArrayElementFixup(System.Int64,System.Int32,System.Int64)"> <summary> Records a fixup for one element in an array. </summary> <param name="arrayToBeFixed"> The ID of the array used to record a fixup. </param> <param name="index"> The index within <paramref name="arrayFixup" /> that a fixup is requested for. </param> <param name="objectRequired"> The ID of the object that the current array element will point to after fixup is completed. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="arrayToBeFixed" /> or <paramref name="objectRequired" /> parameter is less than or equal to zero. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="index" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.ObjectManager.RecordArrayElementFixup(System.Int64,System.Int32[],System.Int64)"> <summary> Records fixups for the specified elements in an array, to be executed later. </summary> <param name="arrayToBeFixed"> The ID of the array used to record a fixup. </param> <param name="indices"> The indexes within the multidimensional array that a fixup is requested for. </param> <param name="objectRequired"> The ID of the object the array elements will point to after fixup is completed. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="arrayToBeFixed" /> or <paramref name="objectRequired" /> parameter is less than or equal to zero. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="indices" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.ObjectManager.RecordDelayedFixup(System.Int64,System.String,System.Int64)"> <summary> Records a fixup for an object member, to be executed later. </summary> <param name="objectToBeFixed"> The ID of the object that needs the reference to <paramref name="objectRequired" />. </param> <param name="memberName"> The member name of <paramref name="objectToBeFixed" /> where the fixup will be performed. </param> <param name="objectRequired"> The ID of the object required by <paramref name="objectToBeFixed" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="objectToBeFixed" /> or <paramref name="objectRequired" /> parameter is less than or equal to zero. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="memberName" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.ObjectManager.RecordFixup(System.Int64,System.Reflection.MemberInfo,System.Int64)"> <summary> Records a fixup for a member of an object, to be executed later. </summary> <param name="objectToBeFixed"> The ID of the object that needs the reference to the <paramref name="objectRequired" /> object. </param> <param name="member"> The member of <paramref name="objectToBeFixed" /> where the fixup will be performed. </param> <param name="objectRequired"> The ID of the object required by <paramref name="objectToBeFixed" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="objectToBeFixed" /> or <paramref name="objectRequired" /> parameter is less than or equal to zero. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="member" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.ObjectManager.RegisterObject(System.Object,System.Int64)"> <summary> Registers an object as it is deserialized, associating it with <paramref name="objectID" />. </summary> <param name="obj"> The object to register. </param> <param name="objectID"> The ID of the object to register. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="objectID" /> parameter is less than or equal to zero. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <paramref name="objectID" /> has already been registered for an object other than <paramref name="obj" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.ObjectManager.RegisterObject(System.Object,System.Int64,System.Runtime.Serialization.SerializationInfo)"> <summary> Registers an object as it is deserialized, associating it with <paramref name="objectID" />, and recording the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> used with it. </summary> <param name="obj"> The object to register. </param> <param name="objectID"> The ID of the object to register. </param> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> used if <paramref name="obj" /> implements <see cref="T:System.Runtime.Serialization.ISerializable" /> or has a <see cref="T:System.Runtime.Serialization.ISerializationSurrogate" />. <paramref name="info" /> will be completed with any required fixup information and then passed to the required object when that object is completed. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="objectID" /> parameter is less than or equal to zero. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <paramref name="objectID" /> has already been registered for an object other than <paramref name="obj" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.ObjectManager.RegisterObject(System.Object,System.Int64,System.Runtime.Serialization.SerializationInfo,System.Int64,System.Reflection.MemberInfo)"> <summary> Registers a member of an object as it is deserialized, associating it with <paramref name="objectID" />, and recording the <see cref="T:System.Runtime.Serialization.SerializationInfo" />. </summary> <param name="obj"> The object to register. </param> <param name="objectID"> The ID of the object to register. </param> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> used if <paramref name="obj" /> implements <see cref="T:System.Runtime.Serialization.ISerializable" /> or has a <see cref="T:System.Runtime.Serialization.ISerializationSurrogate" />. <paramref name="info" /> will be completed with any required fixup information and then passed to the required object when that object is completed. </param> <param name="idOfContainingObj"> The ID of the object that contains <paramref name="obj" />. This parameter is required only if <paramref name="obj" /> is a value type. </param> <param name="member"> The field in the containing object where <paramref name="obj" /> exists. This parameter has meaning only if <paramref name="obj" /> is a value type. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="objectID" /> parameter is less than or equal to zero. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <paramref name="objectID" /> has already been registered for an object other than <paramref name="obj" />, or <paramref name="member" /> is not a <see cref="T:System.Reflection.FieldInfo" /> and <paramref name="member" /> is not null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.ObjectManager.RegisterObject(System.Object,System.Int64,System.Runtime.Serialization.SerializationInfo,System.Int64,System.Reflection.MemberInfo,System.Int32[])"> <summary> Registers a member of an array contained in an object while it is deserialized, associating it with <paramref name="objectID" />, and recording the <see cref="T:System.Runtime.Serialization.SerializationInfo" />. </summary> <param name="obj"> The object to register. </param> <param name="objectID"> The ID of the object to register. </param> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> used if <paramref name="obj" /> implements <see cref="T:System.Runtime.Serialization.ISerializable" /> or has a <see cref="T:System.Runtime.Serialization.ISerializationSurrogate" />. <paramref name="info" /> will be completed with any required fixup information and then passed to the required object when that object is completed. </param> <param name="idOfContainingObj"> The ID of the object that contains <paramref name="obj" />. This parameter is required only if <paramref name="obj" /> is a value type. </param> <param name="member"> The field in the containing object where <paramref name="obj" /> exists. This parameter has meaning only if <paramref name="obj" /> is a value type. </param> <param name="arrayIndex"> If <paramref name="obj" /> is a <see cref="T:System.ValueType" /> and a member of an array, <paramref name="arrayIndex" /> contains the index within that array where <paramref name="obj" /> exists. <paramref name="arrayIndex" /> is ignored if <paramref name="obj" /> is not both a <see cref="T:System.ValueType" /> and a member of an array. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="objectID" /> parameter is less than or equal to zero. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <paramref name="objectID" /> has already been registered for an object other than <paramref name="obj" />, or <paramref name="member" /> is not a <see cref="T:System.Reflection.FieldInfo" /> and <paramref name="member" /> isn't null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="T:System.Runtime.Serialization.OnDeserializedAttribute"> <summary> When applied to a method, specifies that the method is called immediately after deserialization of the object. </summary> </member> <member name="M:System.Runtime.Serialization.OnDeserializedAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.OnDeserializedAttribute" /> class. </summary> </member> <member name="T:System.Runtime.Serialization.OnDeserializingAttribute"> <summary> When applied to a method, specifies that the method is called during deserialization of an object. </summary> </member> <member name="M:System.Runtime.Serialization.OnDeserializingAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.OnDeserializingAttribute" /> class. </summary> </member> <member name="T:System.Runtime.Serialization.OnSerializedAttribute"> <summary> When applied to a method, specifies that the method is called after serialization of an object graph. </summary> </member> <member name="M:System.Runtime.Serialization.OnSerializedAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.OnSerializedAttribute" /> class. </summary> </member> <member name="T:System.Runtime.Serialization.OnSerializingAttribute"> <summary> When applied to a method, specifies that the method is called before serialization of an object. </summary> </member> <member name="M:System.Runtime.Serialization.OnSerializingAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.OnSerializingAttribute" /> class. </summary> </member> <member name="T:System.Runtime.Serialization.OptionalFieldAttribute"> <summary> Specifies that a field can be missing from a serialization stream so that the <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" /> and the <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" /> does not throw an exception. </summary> </member> <member name="M:System.Runtime.Serialization.OptionalFieldAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.OptionalFieldAttribute" /> class. </summary> </member> <member name="P:System.Runtime.Serialization.OptionalFieldAttribute.VersionAdded"> <summary> This property is unused and is reserved. </summary> <returns> This property is reserved. </returns> </member> <member name="T:System.Runtime.Serialization.SerializationBinder"> <summary> Allows users to control class loading and mandate what class to load. </summary> </member> <member name="M:System.Runtime.Serialization.SerializationBinder.#ctor"></member> <member name="M:System.Runtime.Serialization.SerializationBinder.BindToType(System.String,System.String)"> <summary> When overridden in a derived class, controls the binding of a serialized object to a type. </summary> <returns> The type of the object the formatter creates a new instance of. </returns> <param name="assemblyName"> Specifies the <see cref="T:System.Reflection.Assembly" /> name of the serialized object. </param> <param name="typeName"> Specifies the <see cref="T:System.Type" /> name of the serialized object. </param> </member> <member name="T:System.Runtime.Serialization.SerializationEntry"> <summary> Holds the value, <see cref="T:System.Type" />, and name of a serialized object. </summary> </member> <member name="P:System.Runtime.Serialization.SerializationEntry.Name"> <summary> Gets the name of the object. </summary> <returns> The name of the object. </returns> </member> <member name="P:System.Runtime.Serialization.SerializationEntry.ObjectType"> <summary> Gets the <see cref="T:System.Type" /> of the object. </summary> <returns> The <see cref="T:System.Type" /> of the object. </returns> </member> <member name="P:System.Runtime.Serialization.SerializationEntry.Value"> <summary> Gets the value contained in the object. </summary> <returns> The value contained in the object. </returns> </member> <member name="T:System.Runtime.Serialization.SerializationException"> <summary> The exception thrown when an error occurs during serialization or deserialization. </summary> </member> <member name="M:System.Runtime.Serialization.SerializationException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationException" /> class with default properties. </summary> </member> <member name="M:System.Runtime.Serialization.SerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationException" /> class from serialized data. </summary> <param name="info"> The serialization information object holding the serialized object data in the name-value form. </param> <param name="context"> The contextual information about the source or destination of the exception. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationException" /> class with a specified message. </summary> <param name="message"> Indicates the reason why the exception occurred. </param> </member> <member name="M:System.Runtime.Serialization.SerializationException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Runtime.Serialization.SerializationInfo"> <summary> Stores all the data needed to serialize or deserialize an object. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.#ctor(System.Type,System.Runtime.Serialization.IFormatterConverter)"> <summary> Creates a new instance of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class. </summary> <param name="type"> The <see cref="T:System.Type" /> of the object to serialize. </param> <param name="converter"> The <see cref="T:System.Runtime.Serialization.IFormatterConverter" /> used during deserialization. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="type" /> or <paramref name="converter" /> is null. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Boolean)"> <summary> Adds a Boolean value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The Boolean value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Byte)"> <summary> Adds an 8-bit unsigned integer value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The byte value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Char)"> <summary> Adds a Unicode character value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The character value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.DateTime)"> <summary> Adds a <see cref="T:System.DateTime" /> value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The <see cref="T:System.DateTime" /> value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Decimal)"> <summary> Adds a decimal value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The decimal value to serialize. </param> <exception cref="T:System.ArgumentNullException"> If The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> If a value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Double)"> <summary> Adds a double-precision floating-point value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The double value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Int16)"> <summary> Adds a 16-bit signed integer value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The Int16 value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Int32)"> <summary> Adds a 32-bit signed integer value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The Int32 value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Int64)"> <summary> Adds a 64-bit signed integer value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The Int64 value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Object)"> <summary> Adds the specified object into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store, where it is associated with a specified name. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The value to be serialized. Any children of this object will automatically be serialized. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Object,System.Type)"> <summary> Adds a value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store, where <paramref name="value" /> is associated with <paramref name="name" /> and is serialized as being of <see cref="T:System.Type" /><paramref name="type" />. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The value to be serialized. Any children of this object will automatically be serialized. </param> <param name="type"> The <see cref="T:System.Type" /> to associate with the current object. This parameter must always be the type of the object itself or of one of its base classes. </param> <exception cref="T:System.ArgumentNullException"> If <paramref name="name" /> or <paramref name="type" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.SByte)"> <summary> Adds an 8-bit signed integer value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The Sbyte value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Single)"> <summary> Adds a single-precision floating-point value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The single value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.UInt16)"> <summary> Adds a 16-bit unsigned integer value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The UInt16 value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.UInt32)"> <summary> Adds a 32-bit unsigned integer value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The UInt32 value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.UInt64)"> <summary> Adds a 64-bit unsigned integer value into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <param name="name"> The name to associate with the value, so it can be deserialized later. </param> <param name="value"> The UInt64 value to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> A value has already been associated with <paramref name="name" />. </exception> </member> <member name="P:System.Runtime.Serialization.SerializationInfo.AssemblyName"> <summary> Gets or sets the assembly name of the type to serialize during serialization only. </summary> <returns> The full name of the assembly of the type to serialize. </returns> <exception cref="T:System.ArgumentNullException"> The value the property is set to is null. </exception> </member> <member name="P:System.Runtime.Serialization.SerializationInfo.FullTypeName"> <summary> Gets or sets the full name of the <see cref="T:System.Type" /> to serialize. </summary> <returns> The full name of the type to serialize. </returns> <exception cref="T:System.ArgumentNullException"> The value this property is set to is null. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetBoolean(System.String)"> <summary> Retrieves a Boolean value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The Boolean value associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a Boolean value. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetByte(System.String)"> <summary> Retrieves an 8-bit unsigned integer value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The 8-bit unsigned integer associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to an 8-bit unsigned integer. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetChar(System.String)"> <summary> Retrieves a Unicode character value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The Unicode character associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a Unicode character. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetDateTime(System.String)"> <summary> Retrieves a <see cref="T:System.DateTime" /> value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The <see cref="T:System.DateTime" /> value associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a <see cref="T:System.DateTime" /> value. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetDecimal(System.String)"> <summary> Retrieves a decimal value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> A decimal value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a decimal. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetDouble(System.String)"> <summary> Retrieves a double-precision floating-point value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The double-precision floating-point value associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a double-precision floating-point value. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetEnumerator"> <summary> Returns a <see cref="T:System.Runtime.Serialization.SerializationInfoEnumerator" /> used to iterate through the name-value pairs in the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> A <see cref="T:System.Runtime.Serialization.SerializationInfoEnumerator" /> for parsing the name-value pairs contained in the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </returns> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetInt16(System.String)"> <summary> Retrieves a 16-bit signed integer value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The 16-bit signed integer associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a 16-bit signed integer. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetInt32(System.String)"> <summary> Retrieves a 32-bit signed integer value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The 32-bit signed integer associated with <paramref name="name" />. </returns> <param name="name"> The name of the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a 32-bit signed integer. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetInt64(System.String)"> <summary> Retrieves a 64-bit signed integer value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The 64-bit signed integer associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a 64-bit signed integer. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetSByte(System.String)"> <summary> Retrieves an 8-bit signed integer value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The 8-bit signed integer associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to an 8-bit signed integer. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetSingle(System.String)"> <summary> Retrieves a single-precision floating-point value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The single-precision floating-point value associated with <paramref name="name" />. </returns> <param name="name"> The name of the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a single-precision floating-point value. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetString(System.String)"> <summary> Retrieves a <see cref="T:System.String" /> value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The <see cref="T:System.String" /> associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a <see cref="T:System.String" />. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetUInt16(System.String)"> <summary> Retrieves a 16-bit unsigned integer value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The 16-bit unsigned integer associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a 16-bit unsigned integer. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetUInt32(System.String)"> <summary> Retrieves a 32-bit unsigned integer value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The 32-bit unsigned integer associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a 32-bit unsigned integer. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetUInt64(System.String)"> <summary> Retrieves a 64-bit unsigned integer value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The 64-bit unsigned integer associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to a 64-bit unsigned integer. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.GetValue(System.String,System.Type)"> <summary> Retrieves a value from the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The object of the specified <see cref="T:System.Type" /> associated with <paramref name="name" />. </returns> <param name="name"> The name associated with the value to retrieve. </param> <param name="type"> The <see cref="T:System.Type" /> of the value to retrieve. If the stored value cannot be converted to this type, the system will throw a <see cref="T:System.InvalidCastException" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> or <paramref name="type" /> is null. </exception> <exception cref="T:System.InvalidCastException"> The value associated with <paramref name="name" /> cannot be converted to <paramref name="type" />. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An element with the specified name is not found in the current instance. </exception> </member> <member name="P:System.Runtime.Serialization.SerializationInfo.MemberCount"> <summary> Gets the number of members that have been added to the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> store. </summary> <returns> The number of members that have been added to the current <see cref="T:System.Runtime.Serialization.SerializationInfo" />. </returns> </member> <member name="M:System.Runtime.Serialization.SerializationInfo.SetType(System.Type)"> <summary> Sets the <see cref="T:System.Type" /> of the object to serialize. </summary> <param name="type"> The <see cref="T:System.Type" /> of the object to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> parameter is null. </exception> </member> <member name="T:System.Runtime.Serialization.SerializationInfoEnumerator"> <summary> Provides a formatter-friendly mechanism for parsing the data in <see cref="T:System.Runtime.Serialization.SerializationInfo" />. This class cannot be inherited. </summary> </member> <member name="P:System.Runtime.Serialization.SerializationInfoEnumerator.Current"> <summary> Gets the item currently being examined. </summary> <returns> The item currently being examined. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator has not started enumerating items or has reached the end of the enumeration. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfoEnumerator.MoveNext"> <summary> Updates the enumerator to the next item. </summary> <returns>true if a new element is found; otherwise, false. </returns> </member> <member name="P:System.Runtime.Serialization.SerializationInfoEnumerator.Name"> <summary> Gets the name for the item currently being examined. </summary> <returns> The item name. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator has not started enumerating items or has reached the end of the enumeration. </exception> </member> <member name="P:System.Runtime.Serialization.SerializationInfoEnumerator.ObjectType"> <summary> Gets the type of the item currently being examined. </summary> <returns> The type of the item currently being examined. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator has not started enumerating items or has reached the end of the enumeration. </exception> </member> <member name="M:System.Runtime.Serialization.SerializationInfoEnumerator.Reset"> <summary> Resets the enumerator to the first item. </summary> </member> <member name="P:System.Runtime.Serialization.SerializationInfoEnumerator.System#Collections#IEnumerator#Current"> <summary> Gets the current item in the collection. </summary> <returns> A <see cref="T:System.Runtime.Serialization.SerializationEntry" /> that contains the current serialization data. </returns> <exception cref="T:System.InvalidOperationException"> The enumeration has not started or has already ended. </exception> </member> <member name="P:System.Runtime.Serialization.SerializationInfoEnumerator.Value"> <summary> Gets the value of the item currently being examined. </summary> <returns> The value of the item currently being examined. </returns> <exception cref="T:System.InvalidOperationException"> The enumerator has not started enumerating items or has reached the end of the enumeration. </exception> </member> <member name="T:System.Runtime.Serialization.SerializationObjectManager"> <summary> Manages serialization processes at run time. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Serialization.SerializationObjectManager.#ctor(System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationObjectManager" /> class. </summary> <param name="context"> An instance of the <see cref="T:System.Runtime.Serialization.StreamingContext" /> class that contains information about the current serialization operation. </param> </member> <member name="M:System.Runtime.Serialization.SerializationObjectManager.RaiseOnSerializedEvent"> <summary> Invokes the OnSerializing callback event if the type of the object has one; and registers the object for raising the OnSerialized event if the type of the object has one. </summary> </member> <member name="M:System.Runtime.Serialization.SerializationObjectManager.RegisterObject(System.Object)"> <summary> Registers the object upon which events will be raised. </summary> <param name="obj"> The object to register. </param> </member> <member name="T:System.Runtime.Serialization.StreamingContext"> <summary> Describes the source and destination of a given serialized stream, and provides an additional caller-defined context. </summary> </member> <member name="M:System.Runtime.Serialization.StreamingContext.#ctor(System.Runtime.Serialization.StreamingContextStates)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.StreamingContext" /> class with a given context state. </summary> <param name="state"> A bitwise combination of the <see cref="T:System.Runtime.Serialization.StreamingContextStates" /> values that specify the source or destination context for this <see cref="T:System.Runtime.Serialization.StreamingContext" />. </param> </member> <member name="M:System.Runtime.Serialization.StreamingContext.#ctor(System.Runtime.Serialization.StreamingContextStates,System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.StreamingContext" /> class with a given context state, and some additional information. </summary> <param name="state"> A bitwise combination of the <see cref="T:System.Runtime.Serialization.StreamingContextStates" /> values that specify the source or destination context for this <see cref="T:System.Runtime.Serialization.StreamingContext" />. </param> <param name="additional"> Any additional information to be associated with the <see cref="T:System.Runtime.Serialization.StreamingContext" />. This information is available to any object that implements <see cref="T:System.Runtime.Serialization.ISerializable" /> or any serialization surrogate. Most users do not need to set this parameter. </param> </member> <member name="P:System.Runtime.Serialization.StreamingContext.Context"> <summary> Gets context specified as part of the additional context. </summary> <returns> The context specified as part of the additional context. </returns> </member> <member name="M:System.Runtime.Serialization.StreamingContext.Equals(System.Object)"> <summary> Determines whether two <see cref="T:System.Runtime.Serialization.StreamingContext" /> instances contain the same values. </summary> <returns>true if the specified object is an instance of <see cref="T:System.Runtime.Serialization.StreamingContext" /> and equals the value of the current instance; otherwise, false. </returns> <param name="obj"> An object to compare with the current instance. </param> </member> <member name="M:System.Runtime.Serialization.StreamingContext.GetHashCode"> <summary> Returns a hash code of this object. </summary> <returns> The <see cref="T:System.Runtime.Serialization.StreamingContextStates" /> value that contains the source or destination of the serialization for this <see cref="T:System.Runtime.Serialization.StreamingContext" />. </returns> </member> <member name="P:System.Runtime.Serialization.StreamingContext.State"> <summary> Gets the source or destination of the transmitted data. </summary> <returns> During serialization, the destination of the transmitted data. During deserialization, the source of the data. </returns> </member> <member name="T:System.Runtime.Serialization.StreamingContextStates"> <summary> Defines a set of flags that specifies the source or destination context for the stream during serialization. </summary> </member> <member name="F:System.Runtime.Serialization.StreamingContextStates.CrossProcess"> <summary> Specifies that the source or destination context is a different process on the same computer. </summary> </member> <member name="F:System.Runtime.Serialization.StreamingContextStates.CrossMachine"> <summary> Specifies that the source or destination context is a different computer. </summary> </member> <member name="F:System.Runtime.Serialization.StreamingContextStates.File"> <summary> Specifies that the source or destination context is a file. Users can assume that files will last longer than the process that created them and not serialize objects in such a way that deserialization will require accessing any data from the current process. </summary> </member> <member name="F:System.Runtime.Serialization.StreamingContextStates.Persistence"> <summary> Specifies that the source or destination context is a persisted store, which could include databases, files, or other backing stores. Users can assume that persisted data will last longer than the process that created the data and not serialize objects so that deserialization will require accessing any data from the current process. </summary> </member> <member name="F:System.Runtime.Serialization.StreamingContextStates.Remoting"> <summary> Specifies that the data is remoted to a context in an unknown location. Users cannot make any assumptions whether this is on the same computer. </summary> </member> <member name="F:System.Runtime.Serialization.StreamingContextStates.Other"> <summary> Specifies that the serialization context is unknown. </summary> </member> <member name="F:System.Runtime.Serialization.StreamingContextStates.Clone"> <summary> Specifies that the object graph is being cloned. Users can assume that the cloned graph will continue to exist within the same process and be safe to access handles or other references to unmanaged resources. </summary> </member> <member name="F:System.Runtime.Serialization.StreamingContextStates.CrossAppDomain"> <summary> Specifies that the source or destination context is a different AppDomain. (For a description of AppDomains, see Application Domains). </summary> </member> <member name="F:System.Runtime.Serialization.StreamingContextStates.All"> <summary> Specifies that the serialized data can be transmitted to or received from any of the other contexts. </summary> </member> <member name="T:System.Runtime.Serialization.SurrogateSelector"> <summary> Assists formatters in selection of the serialization surrogate to delegate the serialization or deserialization process to. </summary> </member> <member name="M:System.Runtime.Serialization.SurrogateSelector.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SurrogateSelector" /> class. </summary> </member> <member name="M:System.Runtime.Serialization.SurrogateSelector.AddSurrogate(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISerializationSurrogate)"> <summary> Adds a surrogate to the list of checked surrogates. </summary> <param name="type"> The <see cref="T:System.Type" /> for which the surrogate is required. </param> <param name="context"> The context-specific data. </param> <param name="surrogate"> The surrogate to call for this type. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> or <paramref name="surrogate" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> A surrogate already exists for this type and context. </exception> </member> <member name="M:System.Runtime.Serialization.SurrogateSelector.ChainSelector(System.Runtime.Serialization.ISurrogateSelector)"> <summary> Adds the specified <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> that can handle a particular object type to the list of surrogates. </summary> <param name="selector"> The surrogate selector to add. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="selector" /> parameter is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The selector is already on the list of selectors. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Runtime.Serialization.SurrogateSelector.GetNextSelector"> <summary> Returns the next selector on the chain of selectors. </summary> <returns> The next <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> on the chain of selectors. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> </member> <member name="M:System.Runtime.Serialization.SurrogateSelector.GetSurrogate(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector@)"> <summary> Returns the surrogate for a particular type. </summary> <returns> The surrogate for a particular type. </returns> <param name="type"> The <see cref="T:System.Type" /> for which the surrogate is requested. </param> <param name="context"> The streaming context. </param> <param name="selector"> The surrogate to use. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.SurrogateSelector.RemoveSurrogate(System.Type,System.Runtime.Serialization.StreamingContext)"> <summary> Removes the surrogate associated with a given type. </summary> <param name="type"> The <see cref="T:System.Type" /> for which to remove the surrogate. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> for the current surrogate. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="type" /> parameter is null. </exception> </member> <member name="M:System.Runtime.Serialization.FormatterServices.GetSurrogateForCyclicalReference(System.Runtime.Serialization.ISerializationSurrogate)"></member> <member name="T:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle"> <summary> Indicates the method that will be used during deserialization for locating and loading assemblies. </summary> </member> <member name="F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple"> <summary> In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the <see cref="Overload:System.Reflection.Assembly.LoadWithPartialName" /> method is used to load the assembly. </summary> </member> <member name="F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Full"> <summary> In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The <see cref="Overload:System.Reflection.Assembly.Load" /> method of the <see cref="T:System.Reflection.Assembly" /> class is used to load the assembly. </summary> </member> <member name="T:System.Runtime.Serialization.Formatters.FormatterTypeStyle"> <summary> Indicates the format in which type descriptions are laid out in the serialized stream. </summary> </member> <member name="F:System.Runtime.Serialization.Formatters.FormatterTypeStyle.TypesWhenNeeded"> <summary> Indicates that types can be stated only for arrays of objects, object members of type <see cref="T:System.Object" />, and <see cref="T:System.Runtime.Serialization.ISerializable" /> non-primitive value types. </summary> </member> <member name="F:System.Runtime.Serialization.Formatters.FormatterTypeStyle.TypesAlways"> <summary> Indicates that types can be given to all object members and <see cref="T:System.Runtime.Serialization.ISerializable" /> object members. </summary> </member> <member name="F:System.Runtime.Serialization.Formatters.FormatterTypeStyle.XsdString"> <summary> Indicates that strings can be given in the XSD format rather than SOAP. No string IDs are transmitted. </summary> </member> <member name="T:System.Runtime.Serialization.Formatters.IFieldInfo"> <summary> Allows access to field names and field types of objects that support the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface. </summary> </member> <member name="P:System.Runtime.Serialization.Formatters.IFieldInfo.FieldNames"> <summary> Gets or sets the field names of serialized objects. </summary> <returns> The field names of serialized objects. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="P:System.Runtime.Serialization.Formatters.IFieldInfo.FieldTypes"> <summary> Gets or sets the field types of the serialized objects. </summary> <returns> The field types of the serialized objects. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="SerializationFormatter" /> </PermissionSet> </member> <member name="T:System.Runtime.Serialization.Formatters.InternalRM"> <summary> Logs tracing messages when the .NET Framework serialization infrastructure is compiled. </summary> </member> <member name="M:System.Runtime.Serialization.Formatters.InternalRM.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.InternalRM" /> class. </summary> </member> <member name="M:System.Runtime.Serialization.Formatters.InternalRM.InfoSoap(System.Object[])"> <summary> Prints SOAP trace messages. </summary> <param name="messages"></param> <PermissionSet> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="00000000000000000400000000000000" Name="System.Runtime.Remoting" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.Formatters.InternalRM.SoapCheckEnabled"> <summary> Checks if SOAP tracing is enabled. </summary> <returns>true, if tracing is enabled; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="00000000000000000400000000000000" Name="System.Runtime.Remoting" /> </PermissionSet> </member> <member name="T:System.Runtime.Serialization.Formatters.InternalST"> <summary> Logs tracing messages when the .NET Framework serialization infrastructure is compiled. </summary> </member> <member name="M:System.Runtime.Serialization.Formatters.InternalST.InfoSoap(System.Object[])"> <summary> Prints SOAP trace messages. </summary> <param name="messages"> An array of trace messages to print. </param> <PermissionSet> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="002400000480000094000000060200000024000052534131000400000100010007D1FA57C4AED9F0A32E84AA0FAEFD0DE9E8FD6AEC8F87FB03766C834C99921EB23BE79AD9D5DCC1DD9AD236132102900B723CF980957FC4E177108FC607774F29E8320E92EA05ECE4E821C0A5EFE8F1645C4C0C93C1AB99285D622CAA652C1DFAD63D745D6F2DE5F17E5EAF0FC4963D261C8A12436518206DC093344D5AD293" Name="System.Runtime.Serialization.Formatters.Soap" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.Formatters.InternalST.LoadAssemblyFromString(System.String)"> <summary> Loads a specified assembly to debug. </summary> <returns> The <see cref="T:System.Reflection.Assembly" /> to debug. </returns> <param name="assemblyString"> The name of the assembly to load. </param> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="002400000480000094000000060200000024000052534131000400000100010007D1FA57C4AED9F0A32E84AA0FAEFD0DE9E8FD6AEC8F87FB03766C834C99921EB23BE79AD9D5DCC1DD9AD236132102900B723CF980957FC4E177108FC607774F29E8320E92EA05ECE4E821C0A5EFE8F1645C4C0C93C1AB99285D622CAA652C1DFAD63D745D6F2DE5F17E5EAF0FC4963D261C8A12436518206DC093344D5AD293" Name="System.Runtime.Serialization.Formatters.Soap" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.Formatters.InternalST.SerializationSetValue(System.Reflection.FieldInfo,System.Object,System.Object)"> <summary> Sets the value of a field. </summary> <param name="fi"> A <see cref="T:System.Reflection.FieldInfo" /> containing data about the target field. </param> <param name="target"> The field to change. </param> <param name="value"> The value to set. </param> <PermissionSet> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="002400000480000094000000060200000024000052534131000400000100010007D1FA57C4AED9F0A32E84AA0FAEFD0DE9E8FD6AEC8F87FB03766C834C99921EB23BE79AD9D5DCC1DD9AD236132102900B723CF980957FC4E177108FC607774F29E8320E92EA05ECE4E821C0A5EFE8F1645C4C0C93C1AB99285D622CAA652C1DFAD63D745D6F2DE5F17E5EAF0FC4963D261C8A12436518206DC093344D5AD293" Name="System.Runtime.Serialization.Formatters.Soap" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.Formatters.InternalST.Soap(System.Object[])"> <summary> Processes the specified array of messages. </summary> <param name="messages"> An array of messages to process. </param> <PermissionSet> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="002400000480000094000000060200000024000052534131000400000100010007D1FA57C4AED9F0A32E84AA0FAEFD0DE9E8FD6AEC8F87FB03766C834C99921EB23BE79AD9D5DCC1DD9AD236132102900B723CF980957FC4E177108FC607774F29E8320E92EA05ECE4E821C0A5EFE8F1645C4C0C93C1AB99285D622CAA652C1DFAD63D745D6F2DE5F17E5EAF0FC4963D261C8A12436518206DC093344D5AD293" Name="System.Runtime.Serialization.Formatters.Soap" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.Formatters.InternalST.SoapAssert(System.Boolean,System.String)"> <summary> Asserts the specified message. </summary> <param name="condition"> A Boolean value to use when asserting. </param> <param name="message"> The message to use when asserting. </param> <PermissionSet> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="002400000480000094000000060200000024000052534131000400000100010007D1FA57C4AED9F0A32E84AA0FAEFD0DE9E8FD6AEC8F87FB03766C834C99921EB23BE79AD9D5DCC1DD9AD236132102900B723CF980957FC4E177108FC607774F29E8320E92EA05ECE4E821C0A5EFE8F1645C4C0C93C1AB99285D622CAA652C1DFAD63D745D6F2DE5F17E5EAF0FC4963D261C8A12436518206DC093344D5AD293" Name="System.Runtime.Serialization.Formatters.Soap" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.Formatters.InternalST.SoapCheckEnabled"> <summary> Checks if SOAP tracing is enabled. </summary> <returns>true, if tracing is enabled; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="002400000480000094000000060200000024000052534131000400000100010007D1FA57C4AED9F0A32E84AA0FAEFD0DE9E8FD6AEC8F87FB03766C834C99921EB23BE79AD9D5DCC1DD9AD236132102900B723CF980957FC4E177108FC607774F29E8320E92EA05ECE4E821C0A5EFE8F1645C4C0C93C1AB99285D622CAA652C1DFAD63D745D6F2DE5F17E5EAF0FC4963D261C8A12436518206DC093344D5AD293" Name="System.Runtime.Serialization.Formatters.Soap" /> </PermissionSet> </member> <member name="T:System.Runtime.Serialization.Formatters.ISoapMessage"> <summary> Provides an interface for an object that contains the names and types of parameters required during serialization of a SOAP RPC (Remote Procedure Call). </summary> </member> <member name="P:System.Runtime.Serialization.Formatters.ISoapMessage.Headers"> <summary> Gets or sets the out-of-band data of the method call. </summary> <returns> The out-of-band data of the method call. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.ISoapMessage.MethodName"> <summary> Gets or sets the name of the called method. </summary> <returns> The name of the called method. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.ISoapMessage.ParamNames"> <summary> Gets or sets the parameter names of the method call. </summary> <returns> The parameter names of the method call. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.ISoapMessage.ParamTypes"> <summary> Gets or sets the parameter types of a method call. </summary> <returns> The parameter types of a method call. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.ISoapMessage.ParamValues"> <summary> Gets or sets the parameter values of a method call. </summary> <returns> The parameter values of a method call. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.ISoapMessage.XmlNameSpace"> <summary> Gets or sets the XML namespace of the SOAP RPC (Remote Procedure Call) <see cref="P:System.Runtime.Serialization.Formatters.ISoapMessage.MethodName" /> element. </summary> <returns> The XML namespace name where the object that contains the called method is located. </returns> </member> <member name="T:System.Runtime.Serialization.Formatters.ServerFault"> <summary> Contains information for a server fault. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Serialization.Formatters.ServerFault.#ctor(System.String,System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.ServerFault" /> class. </summary> <param name="exceptionType"> The type of the exception that occurred on the server. </param> <param name="message"> The message that accompanied the exception. </param> <param name="stackTrace"> The stack trace of the thread that threw the exception on the server. </param> </member> <member name="P:System.Runtime.Serialization.Formatters.ServerFault.ExceptionMessage"> <summary> Gets or sets the exception message that accompanied the exception thrown on the server. </summary> <returns> The exception message that accompanied the exception thrown on the server. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.ServerFault.ExceptionType"> <summary> Gets or sets the type of exception that was thrown by the server. </summary> <returns> The type of exception that was thrown by the server. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.ServerFault.StackTrace"> <summary> Gets or sets the stack trace of the thread that threw the exception on the server. </summary> <returns> The stack trace of the thread that threw the exception on the server. </returns> </member> <member name="T:System.Runtime.Serialization.Formatters.SoapFault"> <summary> Carries error and status information within a SOAP message. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Serialization.Formatters.SoapFault.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" /> class with default values. </summary> </member> <member name="M:System.Runtime.Serialization.Formatters.SoapFault.#ctor(System.String,System.String,System.String,System.Runtime.Serialization.Formatters.ServerFault)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" /> class, setting the properties to specified values. </summary> <param name="faultCode"> The fault code for the new instance of <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" />. The fault code identifies the type of the fault that occurred. </param> <param name="faultString"> The fault string for the new instance of <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" />. The fault string provides a human readable explanation of the fault. </param> <param name="faultActor"> The URI of the object that generated the fault. </param> <param name="serverFault"> The description of a common language runtime exception. This information is also present in the <see cref="P:System.Runtime.Serialization.Formatters.SoapFault.Detail" /> property. </param> </member> <member name="P:System.Runtime.Serialization.Formatters.SoapFault.Detail"> <summary> Gets or sets additional information required for the <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" />. </summary> <returns> Additional information required for the <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" />. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.SoapFault.FaultActor"> <summary> Gets or sets the fault actor for the <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" />. </summary> <returns> The fault actor for the <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" />. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.SoapFault.FaultCode"> <summary> Gets or sets the fault code for the <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" />. </summary> <returns> The fault code for this <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" />. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.SoapFault.FaultString"> <summary> Gets or sets the fault message for the <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" />. </summary> <returns> The fault message for the <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" />. </returns> </member> <member name="M:System.Runtime.Serialization.Formatters.SoapFault.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data to serialize the <see cref="T:System.Runtime.Serialization.Formatters.SoapFault" /> object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data. </param> <param name="context"> The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext" />) for the current serialization. </param> </member> <member name="T:System.Runtime.Serialization.Formatters.SoapMessage"> <summary> Holds the names and types of parameters required during serialization of a SOAP RPC (Remote Procedure Call). </summary> </member> <member name="M:System.Runtime.Serialization.Formatters.SoapMessage.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.SoapMessage" /> class. </summary> </member> <member name="P:System.Runtime.Serialization.Formatters.SoapMessage.Headers"> <summary> Gets or sets the out-of-band data of the called method. </summary> <returns> The out-of-band data of the called method. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.SoapMessage.MethodName"> <summary> Gets or sets the name of the called method. </summary> <returns> The name of the called method. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.SoapMessage.ParamNames"> <summary> Gets or sets the parameter names for the called method. </summary> <returns> The parameter names for the called method. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.SoapMessage.ParamTypes"> <summary> This property is reserved. Use the <see cref="P:System.Runtime.Serialization.Formatters.SoapMessage.ParamNames" /> and/or <see cref="P:System.Runtime.Serialization.Formatters.SoapMessage.ParamValues" /> properties instead. </summary> <returns> Parameter types for the called method. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.SoapMessage.ParamValues"> <summary> Gets or sets the parameter values for the called method. </summary> <returns> Parameter values for the called method. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.SoapMessage.XmlNameSpace"> <summary> Gets or sets the XML namespace name where the object that contains the called method is located. </summary> <returns> The XML namespace name where the object that contains the called method is located. </returns> </member> <member name="T:System.Runtime.Serialization.Formatters.TypeFilterLevel"> <summary> Specifies the level of automatic deserialization for .NET Framework remoting. </summary> </member> <member name="F:System.Runtime.Serialization.Formatters.TypeFilterLevel.Low"> <summary> The low deserialization level for .NET Framework remoting. It supports types associated with basic remoting functionality. </summary> </member> <member name="F:System.Runtime.Serialization.Formatters.TypeFilterLevel.Full"> <summary> The full deserialization level for .NET Framework remoting. It supports all types that remoting supports in all situations. </summary> </member> <member name="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter"> <summary> Serializes and deserializes an object, or an entire graph of connected objects, in binary format. </summary> </member> <member name="M:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" /> class with default values. </summary> </member> <member name="M:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.#ctor(System.Runtime.Serialization.ISurrogateSelector,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" /> class with a given surrogate selector and streaming context. </summary> <param name="selector"> The <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> to use. Can be null. </param> <param name="context"> The source and destination for the serialized data. </param> </member> <member name="P:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.AssemblyFormat"> <summary> Gets or sets the behavior of the deserializer with regards to finding and loading assemblies. </summary> <returns> One of the <see cref="T:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle" /> values that specifies the deserializer behavior. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Binder"> <summary> Gets or sets an object of type <see cref="T:System.Runtime.Serialization.SerializationBinder" /> that controls the binding of a serialized object to a type. </summary> <returns> The serialization binder to use with this formatter. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Context"> <summary> Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext" /> for this formatter. </summary> <returns> The streaming context to use with this formatter. </returns> </member> <member name="M:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Deserialize(System.IO.Stream)"> <summary> Deserializes the specified stream into an object graph. </summary> <returns> The top (root) of the object graph. </returns> <param name="serializationStream"> The stream from which to deserialize the object graph. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="serializationStream" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <paramref name="serializationStream" /> supports seeking, but its length is 0. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Deserialize(System.IO.Stream,System.Runtime.Remoting.Messaging.HeaderHandler)"> <summary> Deserializes the specified stream into an object graph. The provided <see cref="T:System.Runtime.Remoting.Messaging.HeaderHandler" /> handles any headers in that stream. </summary> <returns> The deserialized object or the top object (root) of the object graph. </returns> <param name="serializationStream"> The stream from which to deserialize the object graph. </param> <param name="handler"> The <see cref="T:System.Runtime.Remoting.Messaging.HeaderHandler" /> that handles any headers in the <paramref name="serializationStream" />. Can be null. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="serializationStream" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <paramref name="serializationStream" /> supports seeking, but its length is 0. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.DeserializeMethodResponse(System.IO.Stream,System.Runtime.Remoting.Messaging.HeaderHandler,System.Runtime.Remoting.Messaging.IMethodCallMessage)"> <summary> Deserializes a response to a remote method call from the provided <see cref="T:System.IO.Stream" />. </summary> <returns> The deserialized response to the remote method call. </returns> <param name="serializationStream"> The stream from which to deserialize the object graph. </param> <param name="handler"> The <see cref="T:System.Runtime.Remoting.Messaging.HeaderHandler" /> that handles any headers in the <paramref name="serializationStream" />. Can be null. </param> <param name="methodCallMessage"> The <see cref="T:System.Runtime.Remoting.Messaging.IMethodCallMessage" /> that contains details about where the call came from. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="serializationStream" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <paramref name="serializationStream" /> supports seeking, but its length is 0. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="P:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.FilterLevel"> <summary> Gets or sets the <see cref="T:System.Runtime.Serialization.Formatters.TypeFilterLevel" /> of automatic deserialization the <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" /> performs. </summary> <returns> The <see cref="T:System.Runtime.Serialization.Formatters.TypeFilterLevel" /> that represents the current automatic deserialization level. </returns> </member> <member name="M:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(System.IO.Stream,System.Object)"> <summary> Serializes the object, or graph of objects with the specified top (root), to the given stream. </summary> <param name="serializationStream"> The stream to which the graph is to be serialized. </param> <param name="graph"> The object at the root of the graph to serialize. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="serializationStream" /> is null. -or- The <paramref name="graph" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An error has occurred during serialization, such as if an object in the <paramref name="graph" /> parameter is not marked as serializable. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(System.IO.Stream,System.Object,System.Runtime.Remoting.Messaging.Header[])"> <summary> Serializes the object, or graph of objects with the specified top (root), to the given stream attaching the provided headers. </summary> <param name="serializationStream"> The stream to which the object is to be serialized. </param> <param name="graph"> The object at the root of the graph to serialize. </param> <param name="headers"> Remoting headers to include in the serialization. Can be null. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="serializationStream" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> An error has occurred during serialization, such as if an object in the <paramref name="graph" /> parameter is not marked as serializable. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="P:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.SurrogateSelector"> <summary> Gets or sets a <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> that controls type substitution during serialization and deserialization. </summary> <returns> The surrogate selector to use with this formatter. </returns> </member> <member name="P:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.TypeFormat"> <summary> Gets or sets the format in which type descriptions are laid out in the serialized stream. </summary> <returns> The style of type layouts to use. </returns> </member> <member name="M:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.UnsafeDeserialize(System.IO.Stream,System.Runtime.Remoting.Messaging.HeaderHandler)"> <summary> Deserializes the specified stream into an object graph. The provided <see cref="T:System.Runtime.Remoting.Messaging.HeaderHandler" /> handles any headers in that stream. </summary> <returns> The deserialized object or the top object (root) of the object graph. </returns> <param name="serializationStream"> The stream from which to deserialize the object graph. </param> <param name="handler"> The <see cref="T:System.Runtime.Remoting.Messaging.HeaderHandler" /> that handles any headers in the <paramref name="serializationStream" />. Can be null. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="serializationStream" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <paramref name="serializationStream" /> supports seeking, but its length is 0. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, SerializationFormatter" /> </PermissionSet> </member> <member name="M:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.UnsafeDeserializeMethodResponse(System.IO.Stream,System.Runtime.Remoting.Messaging.HeaderHandler,System.Runtime.Remoting.Messaging.IMethodCallMessage)"> <summary> Deserializes a response to a remote method call from the provided <see cref="T:System.IO.Stream" />. </summary> <returns> The deserialized response to the remote method call. </returns> <param name="serializationStream"> The stream from which to deserialize the object graph. </param> <param name="handler"> The <see cref="T:System.Runtime.Remoting.Messaging.HeaderHandler" /> that handles any headers in the <paramref name="serializationStream" />. Can be null. </param> <param name="methodCallMessage"> The <see cref="T:System.Runtime.Remoting.Messaging.IMethodCallMessage" /> that contains details about where the call came from. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="serializationStream" /> is null. </exception> <exception cref="T:System.Runtime.Serialization.SerializationException"> The <paramref name="serializationStream" /> supports seeking, but its length is 0. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, SerializationFormatter" /> </PermissionSet> </member> <member name="T:System.Runtime.Versioning.ResourceConsumptionAttribute"> <summary> Specifies the resource consumed by the member of a class. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Versioning.ResourceConsumptionAttribute.#ctor(System.Runtime.Versioning.ResourceScope)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Versioning.ResourceConsumptionAttribute" /> class specifying the scope of the consumed resource. </summary> <param name="resourceScope"> The <see cref="T:System.Runtime.Versioning.ResourceScope" /> for the consumed resource. </param> </member> <member name="M:System.Runtime.Versioning.ResourceConsumptionAttribute.#ctor(System.Runtime.Versioning.ResourceScope,System.Runtime.Versioning.ResourceScope)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Versioning.ResourceConsumptionAttribute" /> class specifying the scope of the consumed resource and the scope of how it is consumed. </summary> <param name="resourceScope"> The <see cref="T:System.Runtime.Versioning.ResourceScope" /> for the consumed resource. </param> <param name="consumptionScope"> The <see cref="T:System.Runtime.Versioning.ResourceScope" /> used by this member. </param> </member> <member name="P:System.Runtime.Versioning.ResourceConsumptionAttribute.ConsumptionScope"> <summary> Gets the consumption scope for this member. </summary> <returns> A <see cref="T:System.Runtime.Versioning.ResourceScope" /> object specifying the resource scope used by this member. </returns> </member> <member name="P:System.Runtime.Versioning.ResourceConsumptionAttribute.ResourceScope"> <summary> Gets the resource scope for the consumed resource. </summary> <returns> A <see cref="T:System.Runtime.Versioning.ResourceScope" /> object specifying the resource scope of the consumed member. </returns> </member> <member name="T:System.Runtime.Versioning.ResourceExposureAttribute"> <summary> Specifies the resource exposure for a member of a class. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Versioning.ResourceExposureAttribute.#ctor(System.Runtime.Versioning.ResourceScope)"> <summary> Initializes a new instance of the <see cref="T:System.Runtime.Versioning.ResourceExposureAttribute" /> class with the specified exposure level. </summary> <param name="exposureLevel"> The scope of the resource. </param> </member> <member name="P:System.Runtime.Versioning.ResourceExposureAttribute.ResourceExposureLevel"> <summary> Gets the resource exposure scope. </summary> <returns> A <see cref="T:System.Runtime.Versioning.ResourceScope" /> object. </returns> </member> <member name="T:System.Runtime.Versioning.ResourceScope"> <summary> Identifies the scope of a sharable resource. </summary> </member> <member name="F:System.Runtime.Versioning.ResourceScope.None"> <summary> There is no shared state. </summary> </member> <member name="F:System.Runtime.Versioning.ResourceScope.Machine"> <summary> The state is shared by objects within the machine. </summary> </member> <member name="F:System.Runtime.Versioning.ResourceScope.Process"> <summary> The state is shared within a process. </summary> </member> <member name="F:System.Runtime.Versioning.ResourceScope.AppDomain"> <summary> The state is shared by objects within an <see cref="T:System.AppDomain" />. </summary> </member> <member name="F:System.Runtime.Versioning.ResourceScope.Library"> <summary> The state is shared by objects within a library. </summary> </member> <member name="F:System.Runtime.Versioning.ResourceScope.Private"> <summary> The resource is visible to only the type. </summary> </member> <member name="F:System.Runtime.Versioning.ResourceScope.Assembly"> <summary> The resource is visible at an assembly scope. </summary> </member> <member name="T:System.Runtime.Versioning.VersioningHelper"> <summary> Provides methods to aid developers in writing version-safe code. This class cannot be inherited. </summary> </member> <member name="M:System.Runtime.Versioning.VersioningHelper.MakeVersionSafeName(System.String,System.Runtime.Versioning.ResourceScope,System.Runtime.Versioning.ResourceScope)"> <summary> Returns a version-safe name based on the specified resource name and the intended resource consumption source. </summary> <returns> A version-safe name. </returns> <param name="name"> The name of the resource. </param> <param name="from"> The scope of the resource. </param> <param name="to"> The desired resource consumption scope. </param> </member> <member name="M:System.Runtime.Versioning.VersioningHelper.MakeVersionSafeName(System.String,System.Runtime.Versioning.ResourceScope,System.Runtime.Versioning.ResourceScope,System.Type)"> <summary> Returns a version-safe name based on the specified resource name, the intended resource consumption scope, and the type using the resource. </summary> <returns> A version-safe name. </returns> <param name="name"> The name of the resource. </param> <param name="from"> The beginning of the scope range. </param> <param name="to"> The end of the scope range. </param> <param name="type"> The <see cref="T:System.Type" /> of the resource. </param> <exception cref="T:System.ArgumentException"> The values for <paramref name="from " />and <paramref name="to " />are invalid. The resource type in the <see cref="T:System.Runtime.Versioning.ResourceScope" /> enumeration is going from a more restrictive resource type to a more general resource type. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="type " />is null. </exception> </member> <member name="T:System.Security.AllowPartiallyTrustedCallersAttribute"> <summary> Allows strong-named assemblies to be called by partially trusted code. Without this declaration, only fully trusted callers are able to use such assemblies. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AllowPartiallyTrustedCallersAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AllowPartiallyTrustedCallersAttribute" /> class. </summary> </member> <member name="T:System.Security.CodeAccessPermission"> <summary> Defines the underlying structure of all code access permissions. </summary> </member> <member name="M:System.Security.CodeAccessPermission.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.CodeAccessPermission" /> class. </summary> </member> <member name="M:System.Security.CodeAccessPermission.Assert"> <summary> Declares that the calling code can access the resource protected by a permission demand through the code that calls this method, even if callers higher in the stack have not been granted permission to access the resource. Using <see cref="M:System.Security.CodeAccessPermission.Assert" /> can create security issues. </summary> <exception cref="T:System.Security.SecurityException"> The calling code does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.Assertion" />. -or- There is already an active <see cref="M:System.Security.CodeAccessPermission.Assert" /> for the current frame. </exception> </member> <member name="M:System.Security.CodeAccessPermission.Copy"> <summary> When implemented by a derived class, creates and returns an identical copy of the current permission object. </summary> <returns> A copy of the current permission object. </returns> </member> <member name="M:System.Security.CodeAccessPermission.Demand"> <summary> Forces a <see cref="T:System.Security.SecurityException" /> at run time if all callers higher in the call stack have not been granted the permission specified by the current instance. </summary> <exception cref="T:System.Security.SecurityException"> A caller higher in the call stack does not have the permission specified by the current instance. -or- A caller higher in the call stack has called <see cref="M:System.Security.CodeAccessPermission.Deny" /> on the current permission object. </exception> </member> <member name="M:System.Security.CodeAccessPermission.Deny"> <summary> Prevents callers higher in the call stack from using the code that calls this method to access the resource specified by the current instance. </summary> <exception cref="T:System.Security.SecurityException"> There is already an active <see cref="M:System.Security.CodeAccessPermission.Deny" /> for the current frame. </exception> </member> <member name="M:System.Security.CodeAccessPermission.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Security.CodeAccessPermission" /> object is equal to the current <see cref="T:System.Security.CodeAccessPermission" />. </summary> <returns>true if the specified <see cref="T:System.Security.CodeAccessPermission" /> object is equal to the current <see cref="T:System.Security.CodeAccessPermission" />; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Security.CodeAccessPermission" /> object to compare with the current <see cref="T:System.Security.CodeAccessPermission" />. </param> </member> <member name="M:System.Security.CodeAccessPermission.FromXml(System.Security.SecurityElement)"> <summary> When overridden in a derived class, reconstructs a security object with a specified state from an XML encoding. </summary> <param name="elem"> The XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="elem" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="elem" /> parameter does not contain the XML encoding for an instance of the same type as the current instance. -or- The version number of the <paramref name="elem" /> parameter is not supported. </exception> </member> <member name="M:System.Security.CodeAccessPermission.GetHashCode"> <summary> Gets a hash code for the <see cref="T:System.Security.CodeAccessPermission" /> object that is suitable for use in hashing algorithms and data structures such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Security.CodeAccessPermission" /> object. </returns> </member> <member name="M:System.Security.CodeAccessPermission.Intersect(System.Security.IPermission)"> <summary> When implemented by a derived class, creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not an instance of the same class as the current permission. </exception> </member> <member name="M:System.Security.CodeAccessPermission.IsSubsetOf(System.Security.IPermission)"> <summary> When implemented by a derived class, determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.CodeAccessPermission.PermitOnly"> <summary> Prevents callers higher in the call stack from using the code that calls this method to access all resources except for the resource specified by the current instance. </summary> <exception cref="T:System.Security.SecurityException"> There is already an active <see cref="M:System.Security.CodeAccessPermission.PermitOnly" /> for the current frame. </exception> </member> <member name="M:System.Security.CodeAccessPermission.RevertAll"> <summary> Causes all previous overrides for the current frame to be removed and no longer in effect. </summary> <exception cref="T:System.ExecutionEngineException"> There is no previous <see cref="M:System.Security.CodeAccessPermission.Assert" />, <see cref="M:System.Security.CodeAccessPermission.Deny" />, or <see cref="M:System.Security.CodeAccessPermission.PermitOnly" /> for the current frame. </exception> </member> <member name="M:System.Security.CodeAccessPermission.RevertAssert"> <summary> Causes any previous <see cref="M:System.Security.CodeAccessPermission.Assert" /> for the current frame to be removed and no longer in effect. </summary> <exception cref="T:System.ExecutionEngineException"> There is no previous <see cref="M:System.Security.CodeAccessPermission.Assert" /> for the current frame. </exception> </member> <member name="M:System.Security.CodeAccessPermission.RevertDeny"> <summary> Causes any previous <see cref="M:System.Security.CodeAccessPermission.Deny" /> for the current frame to be removed and no longer in effect. </summary> <exception cref="T:System.ExecutionEngineException"> There is no previous <see cref="M:System.Security.CodeAccessPermission.Deny" /> for the current frame. </exception> </member> <member name="M:System.Security.CodeAccessPermission.RevertPermitOnly"> <summary> Causes any previous <see cref="M:System.Security.CodeAccessPermission.PermitOnly" /> for the current frame to be removed and no longer in effect. </summary> <exception cref="T:System.ExecutionEngineException"> There is no previous <see cref="M:System.Security.CodeAccessPermission.PermitOnly" /> for the current frame. </exception> </member> <member name="M:System.Security.CodeAccessPermission.ToString"> <summary> Creates and returns a string representation of the current permission object. </summary> <returns> A string representation of the current permission object. </returns> </member> <member name="M:System.Security.CodeAccessPermission.ToXml"> <summary> When overridden in a derived class, creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> </member> <member name="M:System.Security.CodeAccessPermission.Union(System.Security.IPermission)"> <summary> When overridden in a derived class, creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="other"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.NotSupportedException"> The <paramref name="other" /> parameter is not null. This method is only supported at this level when passed null. </exception> </member> <member name="T:System.Security.HostProtectionException"> <summary> The exception that is thrown when a denied host resource is detected. </summary> </member> <member name="M:System.Security.HostProtectionException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.HostProtectionException" /> class with default values. </summary> </member> <member name="M:System.Security.HostProtectionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Security.HostProtectionException" /> class using the provided serialization information and streaming context. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> Contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Security.HostProtectionException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.HostProtectionException" /> class with a specified error message. </summary> <param name="message"> The message that describes the error. </param> </member> <member name="M:System.Security.HostProtectionException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Security.HostProtectionException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="e"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Security.HostProtectionException.#ctor(System.String,System.Security.Permissions.HostProtectionResource,System.Security.Permissions.HostProtectionResource)"> <summary> Initializes a new instance of the <see cref="T:System.Security.HostProtectionException" /> class with a specified error message, the protected host resources, and the host resources that caused the exception to be thrown. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="protectedResources"> A bitwise combination of the <see cref="T:System.Security.Permissions.HostProtectionResource" /> values indicating the host resources that are inaccessible to partially trusted code. </param> <param name="demandedResources"> A bitwise combination of the <see cref="T:System.Security.Permissions.HostProtectionResource" /> values indicating the demanded host resources. </param> </member> <member name="P:System.Security.HostProtectionException.DemandedResources"> <summary> Gets or sets the demanded host protection resources that caused the exception to be thrown. </summary> <returns> A bitwise combination of the <see cref="T:System.Security.Permissions.HostProtectionResource" /> values identifying the protection resources causing the exception to be thrown. The default is <see cref="F:System.Security.Permissions.HostProtectionResource.None" />. </returns> </member> <member name="M:System.Security.HostProtectionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with information about the host protection exception. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.Security.HostProtectionException.ProtectedResources"> <summary> Gets or sets the host protection resources that are inaccessible to partially trusted code. </summary> <returns> A bitwise combination of the <see cref="T:System.Security.Permissions.HostProtectionResource" /> values identifying the inaccessible host protection categories. The default is <see cref="F:System.Security.Permissions.HostProtectionResource.None" />. </returns> </member> <member name="M:System.Security.HostProtectionException.ToString"> <summary> Returns a string representation of the current host protection exception. </summary> <returns> A string representation of the current <see cref="T:System.Security.HostProtectionException" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="T:System.Security.HostSecurityManager"> <summary> Allows the control and customization of security behavior for application domains. </summary> </member> <member name="M:System.Security.HostSecurityManager.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.HostSecurityManager" /> class. </summary> </member> <member name="M:System.Security.HostSecurityManager.DetermineApplicationTrust(System.Security.Policy.Evidence,System.Security.Policy.Evidence,System.Security.Policy.TrustManagerContext)"> <summary> Determines whether an application should be executed. </summary> <returns> An <see cref="T:System.Security.Policy.ApplicationTrust" /> object that contains trust information about the application. </returns> <param name="applicationEvidence"> The <see cref="T:System.Security.Policy.Evidence" /> for the application to be activated. </param> <param name="activatorEvidence"> Optionally, the <see cref="T:System.Security.Policy.Evidence" /> for the activating application domain. </param> <param name="context"> A <see cref="T:System.Security.Policy.TrustManagerContext" /> that specifies the trust context. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="applicationEvidence" /> is null. </exception> <exception cref="T:System.ArgumentException"> An <see cref="T:System.Runtime.Hosting.ActivationArguments" /> object could not be found in the application evidence. -or- The <see cref="P:System.Runtime.Hosting.ActivationArguments.ActivationContext" /> property in the activation arguments is null. </exception> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.Security.Policy.ApplicationTrust" /> grant set does not contain the minimum request set specified by the <see cref="T:System.ActivationContext" />. </exception> </member> <member name="P:System.Security.HostSecurityManager.DomainPolicy"> <summary> When overridden in a derived class, gets the security policy for the current application domain. </summary> <returns> A <see cref="T:System.Security.Policy.PolicyLevel" /> object. The default is null. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Security.HostSecurityManager.Flags"> <summary> Gets the flag representing the security policy components of concern to the host. </summary> <returns> One of the <see cref="T:System.Security.HostSecurityManagerOptions" /> values. The default is <see cref="F:System.Security.HostSecurityManagerOptions.AllFlags" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Security.HostSecurityManager.ProvideAppDomainEvidence(System.Security.Policy.Evidence)"> <summary> Provides the application domain evidence for an assembly being loaded. </summary> <returns> An <see cref="T:System.Security.Policy.Evidence" /> object representing the evidence to be used for the <see cref="T:System.AppDomain" />. </returns> <param name="inputEvidence"> Additional <see cref="T:System.Security.Policy.Evidence" /> to add to the <see cref="T:System.AppDomain" /> evidence. </param> </member> <member name="M:System.Security.HostSecurityManager.ProvideAssemblyEvidence(System.Reflection.Assembly,System.Security.Policy.Evidence)"> <summary> Provides the assembly evidence for an assembly being loaded. </summary> <returns> An <see cref="T:System.Security.Policy.Evidence" /> object representing the evidence to be used for the assembly. </returns> <param name="loadedAssembly"> An <see cref="T:System.Reflection.Assembly" /> object representing the loaded assembly. </param> <param name="inputEvidence"> Additional <see cref="T:System.Security.Policy.Evidence" /> to add to the assembly evidence. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Security.HostSecurityManager.ResolvePolicy(System.Security.Policy.Evidence)"> <summary> Determines what permissions to grant to code based on the specified evidence. </summary> <returns> The <see cref="T:System.Security.PermissionSet" /> that can be granted by the security system. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> set used to evaluate policy. </param> </member> <member name="T:System.Security.HostSecurityManagerOptions"> <summary> Specifies the security policy components to be used by the host security manager. </summary> </member> <member name="F:System.Security.HostSecurityManagerOptions.None"> <summary> Use none of the security policy components. </summary> </member> <member name="F:System.Security.HostSecurityManagerOptions.HostAppDomainEvidence"> <summary> Use the application domain evidence. </summary> </member> <member name="F:System.Security.HostSecurityManagerOptions.HostPolicyLevel"> <summary> Use the policy level specified in the <see cref="P:System.Security.HostSecurityManager.DomainPolicy" /> property. </summary> </member> <member name="F:System.Security.HostSecurityManagerOptions.HostAssemblyEvidence"> <summary> Use the assembly evidence. </summary> </member> <member name="F:System.Security.HostSecurityManagerOptions.HostDetermineApplicationTrust"> <summary> Route calls to the <see cref="M:System.Security.Policy.ApplicationSecurityManager.DetermineApplicationTrust(System.ActivationContext,System.Security.Policy.TrustManagerContext)" /> method to the <see cref="M:System.Security.HostSecurityManager.DetermineApplicationTrust(System.Security.Policy.Evidence,System.Security.Policy.Evidence,System.Security.Policy.TrustManagerContext)" /> method first. </summary> </member> <member name="F:System.Security.HostSecurityManagerOptions.HostResolvePolicy"> <summary> Use the <see cref="M:System.Security.HostSecurityManager.ResolvePolicy(System.Security.Policy.Evidence)" /> method to resolve the application evidence. </summary> </member> <member name="F:System.Security.HostSecurityManagerOptions.AllFlags"> <summary> Use all security policy components. </summary> </member> <member name="T:System.Security.IEvidenceFactory"> <summary> Gets an object's <see cref="T:System.Security.Policy.Evidence" />. </summary> </member> <member name="P:System.Security.IEvidenceFactory.Evidence"> <summary> Gets <see cref="T:System.Security.Policy.Evidence" /> that verifies the current object's identity. </summary> <returns> <see cref="T:System.Security.Policy.Evidence" /> of the current object's identity. </returns> </member> <member name="T:System.Security.IPermission"> <summary> Defines methods implemented by permission types. </summary> </member> <member name="M:System.Security.IPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.IPermission.Demand"> <summary> Throws a <see cref="T:System.Security.SecurityException" /> at run time if the security requirement is not met. </summary> </member> <member name="M:System.Security.IPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not an instance of the same class as the current permission. </exception> </member> <member name="M:System.Security.IPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.IPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="T:System.Security.ISecurityEncodable"> <summary> Defines the methods that convert permission object state to and from XML element representation. </summary> </member> <member name="M:System.Security.ISecurityEncodable.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> </member> <member name="M:System.Security.ISecurityEncodable.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> </member> <member name="T:System.Security.ISecurityPolicyEncodable"> <summary> Supports the methods that convert permission object state to and from an XML element representation. </summary> </member> <member name="M:System.Security.ISecurityPolicyEncodable.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The policy-level context to resolve named permission set references. </param> </member> <member name="M:System.Security.ISecurityPolicyEncodable.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> The root element of the XML representation of the policy object. </returns> <param name="level"> The policy-level context to resolve named permission set references. </param> </member> <member name="T:System.Security.IStackWalk"> <summary> Manages the stack walk that determines whether all callers in the call stack have the required permissions to access a protected resource. </summary> </member> <member name="M:System.Security.IStackWalk.Assert"> <summary> Asserts that the calling code can access the resource identified by the current permission object, even if callers higher in the stack have not been granted permission to access the resource. </summary> <exception cref="T:System.Security.SecurityException"> The calling code does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.Assertion" />. </exception> </member> <member name="M:System.Security.IStackWalk.Demand"> <summary> Determines at run time whether all callers in the call stack have been granted the permission specified by the current permission object. </summary> <exception cref="T:System.Security.SecurityException"> A caller higher in the call stack does not have the permission specified by the current permission object. -or- A caller in the call stack has called <see cref="M:System.Security.IStackWalk.Deny" /> on the current permission object. </exception> </member> <member name="M:System.Security.IStackWalk.Deny"> <summary> Causes every <see cref="M:System.Security.IStackWalk.Demand" /> for the current object that passes through the calling code to fail. </summary> </member> <member name="M:System.Security.IStackWalk.PermitOnly"> <summary> Causes every <see cref="M:System.Security.IStackWalk.Demand" /> for all objects except the current one that passes through the calling code to fail, even if code higher in the call stack has been granted permission to access other resources. </summary> </member> <member name="T:System.Security.NamedPermissionSet"> <summary> Defines a permission set that has a name and description associated with it. This class cannot be inherited. </summary> </member> <member name="M:System.Security.NamedPermissionSet.#ctor(System.Security.NamedPermissionSet)"> <summary> Initializes a new instance of the <see cref="T:System.Security.NamedPermissionSet" /> class from another named permission set. </summary> <param name="permSet"> The named permission set from which to create the new instance. </param> </member> <member name="M:System.Security.NamedPermissionSet.#ctor(System.String)"> <summary> Initializes a new, empty instance of the <see cref="T:System.Security.NamedPermissionSet" /> class with the specified name. </summary> <param name="name"> The name for the new named permission set. </param> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is null or is an empty string (""). </exception> </member> <member name="M:System.Security.NamedPermissionSet.#ctor(System.String,System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.NamedPermissionSet" /> class with the specified name in either an unrestricted or a fully restricted state. </summary> <param name="name"> The name for the new named permission set. </param> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is null or is an empty string (""). </exception> </member> <member name="M:System.Security.NamedPermissionSet.#ctor(System.String,System.Security.PermissionSet)"> <summary> Initializes a new instance of the <see cref="T:System.Security.NamedPermissionSet" /> class with the specified name from a permission set. </summary> <param name="name"> The name for the named permission set. </param> <param name="permSet"> The permission set from which to take the value of the new named permission set. </param> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is null or is an empty string (""). </exception> </member> <member name="M:System.Security.NamedPermissionSet.Copy"> <summary> Creates a permission set copy from a named permission set. </summary> <returns> A permission set that is a copy of the permissions in the named permission set. </returns> </member> <member name="M:System.Security.NamedPermissionSet.Copy(System.String)"> <summary> Creates a copy of the named permission set with a different name but the same permissions. </summary> <returns> A copy of the named permission set with the new name. </returns> <param name="name"> The name for the new named permission set. </param> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is null or is an empty string (""). </exception> </member> <member name="P:System.Security.NamedPermissionSet.Description"> <summary> Gets or sets the text description of the current named permission set. </summary> <returns> A text description of the named permission set. </returns> </member> <member name="M:System.Security.NamedPermissionSet.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Security.NamedPermissionSet" /> object is equal to the current <see cref="T:System.Security.NamedPermissionSet" />. </summary> <returns>true if the specified <see cref="T:System.Security.NamedPermissionSet" /> is equal to the current <see cref="T:System.Security.NamedPermissionSet" /> object; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Security.NamedPermissionSet" /> object to compare with the current <see cref="T:System.Security.NamedPermissionSet" />. </param> </member> <member name="M:System.Security.NamedPermissionSet.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a named permission set with a specified state from an XML encoding. </summary> <param name="et"> A security element containing the XML representation of the named permission set. </param> <exception cref="T:System.ArgumentException"> The <paramref name="et" /> parameter is not a valid representation of a named permission set. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="et" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.NamedPermissionSet.GetHashCode"> <summary> Gets a hash code for the <see cref="T:System.Security.NamedPermissionSet" /> object that is suitable for use in hashing algorithms and data structures such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Security.NamedPermissionSet" /> object. </returns> </member> <member name="P:System.Security.NamedPermissionSet.Name"> <summary> Gets or sets the name of the current named permission set. </summary> <returns> The name of the named permission set. </returns> <exception cref="T:System.ArgumentException"> The name is null or is an empty string (""). </exception> </member> <member name="M:System.Security.NamedPermissionSet.ToXml"> <summary> Creates an XML element description of the named permission set. </summary> <returns> The XML representation of the named permission set. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Security.PermissionSet"> <summary> Represents a collection that can contain many different types of permissions. </summary> </member> <member name="M:System.Security.PermissionSet.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.PermissionSet" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" />. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.PermissionSet.#ctor(System.Security.PermissionSet)"> <summary> Initializes a new instance of the <see cref="T:System.Security.PermissionSet" /> class with initial values taken from the <paramref name="permSet" /> parameter. </summary> <param name="permSet"> The <see cref="T:System.Security.PermissionSet" /> from which to take the value of the new <see cref="T:System.Security.PermissionSet" />, or null to create an empty <see cref="T:System.Security.PermissionSet" />. </param> </member> <member name="M:System.Security.PermissionSet.AddPermission(System.Security.IPermission)"> <summary> Adds a specified permission to the <see cref="T:System.Security.PermissionSet" />. </summary> <returns> The union of the permission added and any permission of the same type that already exists in the <see cref="T:System.Security.PermissionSet" />. </returns> <param name="perm"> The permission to add. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.PermissionSet.Assert"> <summary> Declares that the calling code can access the resource protected by a permission demand through the code that calls this method, even if callers higher in the stack have not been granted permission to access the resource. Using <see cref="M:System.Security.PermissionSet.Assert" /> can create security vulnerabilities. </summary> <exception cref="T:System.Security.SecurityException"> The <see cref="T:System.Security.PermissionSet" /> instance asserted has not been granted to the asserting code. -or- There is already an active <see cref="M:System.Security.PermissionSet.Assert" /> for the current frame. </exception> </member> <member name="M:System.Security.PermissionSet.ContainsNonCodeAccessPermissions"> <summary> Gets a value indicating whether the <see cref="T:System.Security.PermissionSet" /> contains permissions that are not derived from <see cref="T:System.Security.CodeAccessPermission" />. </summary> <returns>true if the <see cref="T:System.Security.PermissionSet" /> contains permissions that are not derived from <see cref="T:System.Security.CodeAccessPermission" />; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.PermissionSet.ConvertPermissionSet(System.String,System.Byte[],System.String)"> <summary> Converts an encoded <see cref="T:System.Security.PermissionSet" /> from one XML encoding format to another XML encoding format. </summary> <returns> An encrypted <see cref="T:System.Security.PermissionSet" /> with the specified output format. </returns> <param name="inFormat"> A string representing one of the following encoding formats: ASCII, Unicode, or Binary. Possible values are "XMLASCII" or "XML", "XMLUNICODE", and "BINARY". </param> <param name="inData"> An XML-encoded permission set. </param> <param name="outFormat"> A string representing one of the following encoding formats: ASCII, Unicode, or Binary. Possible values are "XMLASCII" or "XML", "XMLUNICODE", and "BINARY". </param> <exception cref="T:System.NotImplementedException"> In all cases. </exception> </member> <member name="M:System.Security.PermissionSet.Copy"> <summary> Creates a copy of the <see cref="T:System.Security.PermissionSet" />. </summary> <returns> A copy of the <see cref="T:System.Security.PermissionSet" />. </returns> </member> <member name="M:System.Security.PermissionSet.CopyTo(System.Array,System.Int32)"> <summary> Copies the permission objects of the set to the indicated location in an <see cref="T:System.Array" />. </summary> <param name="array"> The target array to which to copy. </param> <param name="index"> The starting position in the array to begin copying (zero based). </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="array" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="array" /> parameter has more than one dimension. </exception> <exception cref="T:System.IndexOutOfRangeException"> The <paramref name="index" /> parameter is out of the range of the <paramref name="array" /> parameter. </exception> </member> <member name="P:System.Security.PermissionSet.Count"> <summary> Gets the number of permission objects contained in the permission set. </summary> <returns> The number of permission objects contained in the <see cref="T:System.Security.PermissionSet" />. </returns> </member> <member name="M:System.Security.PermissionSet.Demand"> <summary> Forces a <see cref="T:System.Security.SecurityException" /> at run time if all callers higher in the call stack have not been granted the permissions specified by the current instance. </summary> <exception cref="T:System.Security.SecurityException"> A caller in the call chain does not have the permission demanded. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.PermissionSet.Deny"> <summary> Causes any <see cref="M:System.Security.PermissionSet.Demand" /> that passes through the calling code for a permission that has an intersection with a permission of a type contained in the current <see cref="T:System.Security.PermissionSet" /> to fail. </summary> <exception cref="T:System.Security.SecurityException"> A previous call to <see cref="M:System.Security.PermissionSet.Deny" /> has already restricted the permissions for the current stack frame. </exception> </member> <member name="M:System.Security.PermissionSet.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Security.PermissionSet" /> or <see cref="T:System.Security.NamedPermissionSet" /> object is equal to the current <see cref="T:System.Security.PermissionSet" />. </summary> <returns>true if the specified object is equal to the current <see cref="T:System.Security.PermissionSet" /> object; otherwise, false. </returns> <param name="obj"> The object to compare with the current <see cref="T:System.Security.PermissionSet" />. </param> </member> <member name="M:System.Security.PermissionSet.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="et"> The XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="et" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="et" /> parameter is not a valid permission element. -or- The <paramref name="et" /> parameter's version number is not supported. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.PermissionSet.GetEnumerator"> <summary> Returns an enumerator for the permissions of the set. </summary> <returns> An enumerator object for the permissions of the set. </returns> </member> <member name="M:System.Security.PermissionSet.GetHashCode"> <summary> Gets a hash code for the <see cref="T:System.Security.PermissionSet" /> object that is suitable for use in hashing algorithms and data structures such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Security.PermissionSet" /> object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.PermissionSet.GetPermission(System.Type)"> <summary> Gets a permission object of the specified type, if it exists in the set. </summary> <returns> A copy of the permission object of the type specified by the <paramref name="permClass" /> parameter contained in the <see cref="T:System.Security.PermissionSet" />, or null if none exists. </returns> <param name="permClass"> The <see cref="T:System.Type" /> of the desired permission object. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.PermissionSet.Intersect(System.Security.PermissionSet)"> <summary> Creates and returns a permission set that is the intersection of the current <see cref="T:System.Security.PermissionSet" /> and the specified <see cref="T:System.Security.PermissionSet" />. </summary> <returns> A new <see cref="T:System.Security.PermissionSet" /> that represents the intersection of the current <see cref="T:System.Security.PermissionSet" /> and the specified target. This object is null if the intersection is empty. </returns> <param name="other"> A <see cref="T:System.Security.PermissionSet" /> to intersect with the current <see cref="T:System.Security.PermissionSet" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.PermissionSet.IsEmpty"> <summary> Gets a value indicating whether the <see cref="T:System.Security.PermissionSet" /> is empty. </summary> <returns>true if the <see cref="T:System.Security.PermissionSet" /> is empty; otherwise, false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.PermissionSet.IsReadOnly"> <summary> Gets a value indicating whether the collection is read-only. </summary> <returns> Always false. </returns> </member> <member name="M:System.Security.PermissionSet.IsSubsetOf(System.Security.PermissionSet)"> <summary> Determines whether the current <see cref="T:System.Security.PermissionSet" /> is a subset of the specified <see cref="T:System.Security.PermissionSet" />. </summary> <returns>true if the current <see cref="T:System.Security.PermissionSet" /> is a subset of the <paramref name="target" /> parameter; otherwise, false. </returns> <param name="target"> A <see cref="T:System.Security.PermissionSet" /> to test for the subset relationship. This must be either a <see cref="T:System.Security.PermissionSet" /> or a <see cref="T:System.Security.NamedPermissionSet" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.PermissionSet.IsSynchronized"> <summary> Gets a value indicating whether the collection is guaranteed to be thread safe. </summary> <returns> Always false. </returns> </member> <member name="M:System.Security.PermissionSet.IsUnrestricted"> <summary> Determines whether the <see cref="T:System.Security.PermissionSet" /> is Unrestricted. </summary> <returns>true if the <see cref="T:System.Security.PermissionSet" /> is Unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.PermissionSet.PermitOnly"> <summary> Causes any <see cref="M:System.Security.PermissionSet.Demand" /> that passes through the calling code for any <see cref="T:System.Security.PermissionSet" /> that is not a subset of the current <see cref="T:System.Security.PermissionSet" /> to fail. </summary> </member> <member name="M:System.Security.PermissionSet.RemovePermission(System.Type)"> <summary> Removes a permission of a certain type from the set. </summary> <returns> The permission removed from the set. </returns> <param name="permClass"> The <see cref="T:System.Type" /> of permission to delete. </param> </member> <member name="M:System.Security.PermissionSet.RevertAssert"> <summary> Causes any previous <see cref="M:System.Security.CodeAccessPermission.Assert" /> for the current frame to be removed and no longer be in effect. </summary> <exception cref="T:System.ExecutionEngineException"> There is no previous <see cref="M:System.Security.CodeAccessPermission.Assert" /> for the current frame. </exception> </member> <member name="M:System.Security.PermissionSet.SetPermission(System.Security.IPermission)"> <summary> Sets a permission to the <see cref="T:System.Security.PermissionSet" />, replacing any existing permission of the same type. </summary> <returns> The set permission. </returns> <param name="perm"> The permission to set. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.PermissionSet.SyncRoot"> <summary> Gets the root object of the current collection. </summary> <returns> The root object of the current collection. </returns> </member> <member name="M:System.Security.PermissionSet.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)"> <summary> Runs when the entire object graph has been deserialized. </summary> <param name="sender"> The object that initiated the callback. The functionality for this parameter is not currently implemented. </param> </member> <member name="M:System.Security.PermissionSet.ToString"> <summary> Returns a string representation of the <see cref="T:System.Security.PermissionSet" />. </summary> <returns> A representation of the <see cref="T:System.Security.PermissionSet" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.PermissionSet.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.PermissionSet.Union(System.Security.PermissionSet)"> <summary> Creates a <see cref="T:System.Security.PermissionSet" /> that is the union of the current <see cref="T:System.Security.PermissionSet" /> and the specified <see cref="T:System.Security.PermissionSet" />. </summary> <returns> A new <see cref="T:System.Security.PermissionSet" /> that represents the union of the current <see cref="T:System.Security.PermissionSet" /> and the specified <see cref="T:System.Security.PermissionSet" />. </returns> <param name="other"> A <see cref="T:System.Security.PermissionSet" /> to form the union with the current <see cref="T:System.Security.PermissionSet" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Security.PolicyLevelType"> <summary> Specifies the type of a managed code policy level. </summary> </member> <member name="F:System.Security.PolicyLevelType.User"> <summary> Security policy for all managed code that is run by the user. </summary> </member> <member name="F:System.Security.PolicyLevelType.Machine"> <summary> Security policy for all managed code that is run on the computer. </summary> </member> <member name="F:System.Security.PolicyLevelType.Enterprise"> <summary> Security policy for all managed code in an enterprise. </summary> </member> <member name="F:System.Security.PolicyLevelType.AppDomain"> <summary> Security policy for all managed code in an application. </summary> </member> <member name="T:System.Security.SecureString"> <summary> Represents text that should be kept confidential. The text is encrypted for privacy when being used, and deleted from computer memory when no longer needed. This class cannot be inherited. </summary> </member> <member name="M:System.Security.SecureString.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecureString" /> class. </summary> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error occurred while encrypting or decrypting the value of this instance. </exception> <exception cref="T:System.NotSupportedException"> This operation is not supported on this platform. </exception> </member> <member name="M:System.Security.SecureString.#ctor(System.Char*,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecureString" /> class from a subarray of <see cref="T:System.Char" /> objects. </summary> <param name="value"> A pointer to an array of <see cref="T:System.Char" /> objects. </param> <param name="length"> The number of elements of <paramref name="value" /> to include in the new instance. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="length" /> is less than zero or greater than 65536. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error occurred while encrypting or decrypting the value of this secure string. </exception> <exception cref="T:System.NotSupportedException"> This operation is not supported on this platform. </exception> </member> <member name="M:System.Security.SecureString.AppendChar(System.Char)"> <summary> Appends a character to the end of the current secure string. </summary> <param name="c"> A character to append to this secure string. </param> <exception cref="T:System.ObjectDisposedException"> This secure string has already been disposed. </exception> <exception cref="T:System.InvalidOperationException"> This secure string is read-only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Performing this operation would make the length of this secure string greater than 65536 characters. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error occurred while encrypting or decrypting the value of this secure string. </exception> </member> <member name="M:System.Security.SecureString.Clear"> <summary> Deletes the value of the current secure string. </summary> <exception cref="T:System.ObjectDisposedException"> This secure string has already been disposed. </exception> <exception cref="T:System.InvalidOperationException"> This secure string is read-only. </exception> </member> <member name="M:System.Security.SecureString.Copy"> <summary> Creates a copy of the current secure string. </summary> <returns> A duplicate of this secure string. </returns> <exception cref="T:System.ObjectDisposedException"> This secure string has already been disposed. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error occurred while encrypting or decrypting the value of this secure string. </exception> </member> <member name="M:System.Security.SecureString.Dispose"> <summary> Releases all resources used by the current <see cref="T:System.Security.SecureString" /> object. </summary> </member> <member name="M:System.Security.SecureString.InsertAt(System.Int32,System.Char)"> <summary> Inserts a character in this secure string at the specified index position. </summary> <param name="index"> The index position where parameter <paramref name="c" /> is inserted. </param> <param name="c"> The character to insert. </param> <exception cref="T:System.ObjectDisposedException"> This secure string has already been disposed. </exception> <exception cref="T:System.InvalidOperationException"> This secure string is read-only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero, or greater than the length of this secure string. -or- Performing this operation would make the length of this secure string greater than 65536 characters. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error occurred while encrypting or decrypting the value of this secure string. </exception> </member> <member name="M:System.Security.SecureString.IsReadOnly"> <summary> Indicates whether this secure string is marked read-only. </summary> <returns>true if this secure string is marked read-only; otherwise, false. </returns> <exception cref="T:System.ObjectDisposedException"> This secure string has already been disposed. </exception> </member> <member name="P:System.Security.SecureString.Length"> <summary> Gets the length of the current secure string. </summary> <returns> The number of <see cref="T:System.Char" /> objects in this secure string. </returns> <exception cref="T:System.ObjectDisposedException"> This secure string has already been disposed. </exception> </member> <member name="M:System.Security.SecureString.MakeReadOnly"> <summary> Makes the text value of this secure string read-only. </summary> <exception cref="T:System.ObjectDisposedException"> This secure string has already been disposed. </exception> </member> <member name="M:System.Security.SecureString.RemoveAt(System.Int32)"> <summary> Removes the character at the specified index position from this secure string. </summary> <param name="index"> The index position of a character in this secure string. </param> <exception cref="T:System.ObjectDisposedException"> This secure string has already been disposed. </exception> <exception cref="T:System.InvalidOperationException"> This secure string is read-only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero, or greater than or equal to the length of this secure string. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error occurred while encrypting or decrypting the value of this secure string. </exception> </member> <member name="M:System.Security.SecureString.SetAt(System.Int32,System.Char)"> <summary> Replaces the existing character at the specified index position with another character. </summary> <param name="index"> The index position of an existing character in this secure string </param> <param name="c"> A character that replaces the existing character. </param> <exception cref="T:System.ObjectDisposedException"> This secure string has already been disposed. </exception> <exception cref="T:System.InvalidOperationException"> This secure string is read-only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero, or greater than or equal to the length of this secure string. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error occurred while encrypting or decrypting the value of this secure string. </exception> </member> <member name="T:System.Security.SecurityContext"> <summary> Encapsulates and propagates all security-related data for execution contexts transferred across threads. This class cannot be inherited. </summary> </member> <member name="M:System.Security.SecurityContext.Capture"> <summary> Captures the security context for the current thread. </summary> <returns> A <see cref="T:System.Security.SecurityContext" /> object representing the security context for the current thread. </returns> </member> <member name="M:System.Security.SecurityContext.CreateCopy"> <summary> Creates a copy of the current security context. </summary> <returns> A <see cref="T:System.Security.SecurityContext" /> object representing the security context for the current thread. </returns> <exception cref="T:System.InvalidOperationException"> The current security context has been previously used, was marshaled across application domains, or was not acquired through the <see cref="M:System.Security.SecurityContext.Capture" /> method. </exception> </member> <member name="M:System.Security.SecurityContext.IsFlowSuppressed"> <summary> Determines whether the flow of the security context has been suppressed. </summary> <returns>true if the flow has been suppressed; otherwise, false. </returns> </member> <member name="M:System.Security.SecurityContext.IsWindowsIdentityFlowSuppressed"> <summary> Determines whether the flow of the Windows identity portion of the current security context has been suppressed. </summary> <returns>true if the flow has been suppressed; otherwise, false. </returns> </member> <member name="M:System.Security.SecurityContext.RestoreFlow"> <summary> Restores the flow of the security context across asynchronous threads. </summary> <exception cref="T:System.InvalidOperationException"> The security context is null or an empty string. </exception> </member> <member name="M:System.Security.SecurityContext.Run(System.Security.SecurityContext,System.Threading.ContextCallback,System.Object)"> <summary> Runs the specified method in the specified security context on the current thread. </summary> <param name="securityContext"> The <see cref="T:System.Security.SecurityContext" /> to set. </param> <param name="callback"> The <see cref="T:System.Threading.ContextCallback" /> delegate that represents the method to run in the specified security context. </param> <param name="state"> The object to pass to the callback method. </param> <exception cref="T:System.InvalidOperationException"> <paramref name="securityContext" /> is null. -or- <paramref name="securityContext" /> was not acquired through a capture operation -or- <paramref name="securityContext" /> has already been used as the argument to a <see cref="M:System.Security.SecurityContext.Run(System.Security.SecurityContext,System.Threading.ContextCallback,System.Object)" /> method call. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Security.SecurityContext.SuppressFlow"> <summary> Suppresses the flow of the security context across asynchronous threads. </summary> <returns> An <see cref="T:System.Threading.AsyncFlowControl" /> structure for restoring the flow. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Security.SecurityContext.SuppressFlowWindowsIdentity"> <summary> Suppresses the flow of the Windows identity portion of the current security context across asynchronous threads. </summary> <returns> An <see cref="T:System.Threading.AsyncFlowControl" /> structure for restoring the flow. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Security.SecurityCriticalAttribute"> <summary> Specifies that code or an assembly performs security-critical operations. </summary> </member> <member name="M:System.Security.SecurityCriticalAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityCriticalAttribute" /> class with default scope. </summary> </member> <member name="M:System.Security.SecurityCriticalAttribute.#ctor(System.Security.SecurityCriticalScope)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityCriticalAttribute" /> class with the specified scope. </summary> <param name="scope"> One of the <see cref="T:System.Security.SecurityCriticalScope" /> values that specifies the scope of the attribute. </param> </member> <member name="P:System.Security.SecurityCriticalAttribute.Scope"> <summary> Gets the scope for the attribute. </summary> <returns> One of the <see cref="T:System.Security.SecurityCriticalScope" /> values that specifies the scope of the attribute. The default is <see cref="F:System.Security.SecurityCriticalScope.Explicit" />. </returns> </member> <member name="T:System.Security.SecurityCriticalScope"> <summary> Specifies the scope of a <see cref="T:System.Security.SecurityCriticalAttribute" />. </summary> </member> <member name="F:System.Security.SecurityCriticalScope.Explicit"> <summary> The attribute applies only to the immediate target. </summary> </member> <member name="F:System.Security.SecurityCriticalScope.Everything"> <summary> The attribute applies to all code that follows it. </summary> </member> <member name="T:System.Security.SecurityElement"> <summary> Represents the XML object model for encoding security objects. This class cannot be inherited. </summary> </member> <member name="M:System.Security.SecurityElement.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityElement" /> class with the specified tag. </summary> <param name="tag"> The tag name of an XML element. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="tag" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="tag" /> parameter is invalid in XML. </exception> </member> <member name="M:System.Security.SecurityElement.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityElement" /> class with the specified tag and text. </summary> <param name="tag"> The tag name of the XML element. </param> <param name="text"> The text content within the element. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="tag" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="tag" /> parameter or <paramref name="text" /> parameter is invalid in XML. </exception> </member> <member name="M:System.Security.SecurityElement.AddAttribute(System.String,System.String)"> <summary> Adds a name/value attribute to an XML element. </summary> <param name="name"> The name of the attribute. </param> <param name="value"> The value of the attribute. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter or <paramref name="value" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter or <paramref name="value" /> parameter is invalid in XML. -or- An attribute with the name specified by the <paramref name="name" /> parameter already exists. </exception> </member> <member name="M:System.Security.SecurityElement.AddChild(System.Security.SecurityElement)"> <summary> Adds a child element to the XML element. </summary> <param name="child"> The child element to add. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="child" /> parameter is null. </exception> </member> <member name="M:System.Security.SecurityElement.Attribute(System.String)"> <summary> Finds an attribute by name in an XML element. </summary> <returns> The value associated with the named attribute, or null if no attribute with <paramref name="name" /> exists. </returns> <param name="name"> The name of the attribute for which to search. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="P:System.Security.SecurityElement.Attributes"> <summary> Gets or sets the attributes of an XML element as name/value pairs. </summary> <returns> The <see cref="T:System.Collections.Hashtable" /> object for the attribute values of the XML element. </returns> <exception cref="T:System.InvalidCastException"> The name or value of the <see cref="T:System.Collections.Hashtable" /> object is invalid. </exception> </member> <member name="P:System.Security.SecurityElement.Children"> <summary> Gets or sets the array of child elements of the XML element. </summary> <returns> The ordered child elements of the XML element as security elements. </returns> <exception cref="T:System.ArgumentException"> A child of the XML parent node is null. </exception> </member> <member name="M:System.Security.SecurityElement.Copy"> <summary> Creates and returns an identical copy of the current <see cref="T:System.Security.SecurityElement" /> object. </summary> <returns> A copy of the current <see cref="T:System.Security.SecurityElement" /> object. </returns> </member> <member name="M:System.Security.SecurityElement.Equal(System.Security.SecurityElement)"> <summary> Compares two XML element objects for equality. </summary> <returns>true if the tag, attribute names and values, child elements, and text fields in the current XML element are identical to their counterparts in the <paramref name="other" /> parameter; otherwise, false. </returns> <param name="other"> An XML element object to which to compare the current XML element object. </param> </member> <member name="M:System.Security.SecurityElement.Escape(System.String)"> <summary> Replaces invalid XML characters in a string with their valid XML equivalent. </summary> <returns> The input string with invalid characters replaced. </returns> <param name="str"> The string within which to escape invalid characters. </param> </member> <member name="M:System.Security.SecurityElement.FromString(System.String)"> <summary> Creates a security element from an XML-encoded string. </summary> <returns> A <see cref="T:System.Security.SecurityElement" /> created from the XML. </returns> <param name="xml"> The XML-encoded string from which to create the security element. </param> <exception cref="T:System.Security.XmlSyntaxException"> <paramref name="xml" /> contains one or more single quotation mark characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="xml" /> is null. </exception> </member> <member name="M:System.Security.SecurityElement.IsValidAttributeName(System.String)"> <summary> Determines whether a string is a valid attribute name. </summary> <returns>true if the <paramref name="name" /> parameter is a valid XML attribute name; otherwise, false. </returns> <param name="name"> The attribute name to test for validity. </param> </member> <member name="M:System.Security.SecurityElement.IsValidAttributeValue(System.String)"> <summary> Determines whether a string is a valid attribute value. </summary> <returns>true if the <paramref name="value" /> parameter is a valid XML attribute value; otherwise, false. </returns> <param name="value"> The attribute value to test for validity. </param> </member> <member name="M:System.Security.SecurityElement.IsValidTag(System.String)"> <summary> Determines whether a string is a valid tag. </summary> <returns>true if the <paramref name="tag" /> parameter is a valid XML tag; otherwise, false. </returns> <param name="tag"> The tag to test for validity. </param> </member> <member name="M:System.Security.SecurityElement.IsValidText(System.String)"> <summary> Determines whether a string is valid as text within an XML element. </summary> <returns>true if the <paramref name="text" /> parameter is a valid XML text element; otherwise, false. </returns> <param name="text"> The text to test for validity. </param> </member> <member name="M:System.Security.SecurityElement.SearchForChildByTag(System.String)"> <summary> Finds a child by its tag name. </summary> <returns> The first child XML element with the specified tag value, or null if no child element with <paramref name="tag" /> exists. </returns> <param name="tag"> The tag for which to search in child elements. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="tag" /> parameter is null. </exception> </member> <member name="M:System.Security.SecurityElement.SearchForTextOfTag(System.String)"> <summary> Finds a child by its tag name and returns the contained text. </summary> <returns> The text contents of the first child element with the specified tag value. </returns> <param name="tag"> The tag for which to search in child elements. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="tag" /> is null. </exception> </member> <member name="P:System.Security.SecurityElement.Tag"> <summary> Gets or sets the tag name of an XML element. </summary> <returns> The tag name of an XML element. </returns> <exception cref="T:System.ArgumentNullException"> The tag is null. </exception> <exception cref="T:System.ArgumentException"> The tag is not valid in XML. </exception> </member> <member name="P:System.Security.SecurityElement.Text"> <summary> Gets or sets the text within an XML element. </summary> <returns> The value of the text within an XML element. </returns> <exception cref="T:System.ArgumentException"> The text is not valid in XML. </exception> </member> <member name="M:System.Security.SecurityElement.ToString"> <summary> Produces a string representation of an XML element and its constituent attributes, child elements, and text. </summary> <returns> The XML element and its contents. </returns> </member> <member name="T:System.Security.SecurityException"> <summary> The exception that is thrown when a security error is detected. </summary> </member> <member name="M:System.Security.SecurityException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class with default properties. </summary> </member> <member name="M:System.Security.SecurityException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info " />is null. </exception> </member> <member name="M:System.Security.SecurityException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Security.SecurityException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Security.SecurityException.#ctor(System.String,System.Object,System.Object,System.Reflection.MethodInfo,System.Object,System.Security.IPermission)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class for an exception caused by a Deny on the stack. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="deny"> The denied permission or permission set. </param> <param name="permitOnly"> The permit-only permission or permission set. </param> <param name="method"> A <see cref="T:System.Reflection.MethodInfo" /> that identifies the method that encountered the exception. </param> <param name="demanded"> The demanded permission, permission set, or permission set collection. </param> <param name="permThatFailed"> An <see cref="T:System.Security.IPermission" /> that identifies the permission that failed. </param> </member> <member name="M:System.Security.SecurityException.#ctor(System.String,System.Reflection.AssemblyName,System.Security.PermissionSet,System.Security.PermissionSet,System.Reflection.MethodInfo,System.Security.Permissions.SecurityAction,System.Object,System.Security.IPermission,System.Security.Policy.Evidence)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class for an exception caused by an insufficient grant set. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="assemblyName"> An <see cref="T:System.Reflection.AssemblyName" /> that specifies the name of the assembly that caused the exception. </param> <param name="grant"> A <see cref="T:System.Security.PermissionSet" /> that represents the permissions granted the assembly. </param> <param name="refused"> A <see cref="T:System.Security.PermissionSet" /> that represents the refused permission or permission set. </param> <param name="method"> A <see cref="T:System.Reflection.MethodInfo" /> that represents the method that encountered the exception. </param> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> <param name="demanded"> The demanded permission, permission set, or permission set collection. </param> <param name="permThatFailed"> An <see cref="T:System.Security.IPermission" /> that represents the permission that failed. </param> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> for the assembly that caused the exception. </param> </member> <member name="M:System.Security.SecurityException.#ctor(System.String,System.Type)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class with a specified error message and the permission type that caused the exception to be thrown. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="type"> The type of the permission that caused the exception to be thrown. </param> </member> <member name="M:System.Security.SecurityException.#ctor(System.String,System.Type,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class with a specified error message, the permission type that caused the exception to be thrown, and the permission state. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="type"> The type of the permission that caused the exception to be thrown. </param> <param name="state"> The state of the permission that caused the exception to be thrown. </param> </member> <member name="P:System.Security.SecurityException.Action"> <summary> Gets or sets the security action that caused the exception. </summary> <returns> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </returns> </member> <member name="P:System.Security.SecurityException.Demanded"> <summary> Gets or sets the demanded security permission, permission set, or permission set collection that failed. </summary> <returns> A permission, permission set, or permission set collection object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.SecurityException.DenySetInstance"> <summary> Gets or sets the denied security permission, permission set, or permission set collection that caused a demand to fail. </summary> <returns> A permission, permission set, or permission set collection object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.SecurityException.FailedAssemblyInfo"> <summary> Gets or sets information about the failed assembly. </summary> <returns> An <see cref="T:System.Reflection.AssemblyName" /> that identifies the failed assembly. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.SecurityException.FirstPermissionThatFailed"> <summary> Gets or sets the first permission in a permission set or permission set collection that failed the demand. </summary> <returns> An <see cref="T:System.Security.IPermission" /> object representing the first permission that failed. </returns> </member> <member name="M:System.Security.SecurityException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the <see cref="T:System.Security.SecurityException" />. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="info" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.SecurityException.GrantedSet"> <summary> Gets or sets the granted permission set of the assembly that caused the <see cref="T:System.Security.SecurityException" />. </summary> <returns> The XML representation of the granted set of the assembly. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.SecurityException.Method"> <summary> Gets or sets the information about the method associated with the exception. </summary> <returns> A <see cref="T:System.Reflection.MethodInfo" /> object describing the method. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.SecurityException.PermissionState"> <summary> Gets or sets the state of the permission that threw the exception. </summary> <returns> The state of the permission at the time the exception was thrown. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.SecurityException.PermissionType"> <summary> Gets or sets the type of the permission that failed. </summary> <returns> The type of the permission that failed. </returns> </member> <member name="P:System.Security.SecurityException.PermitOnlySetInstance"> <summary> Gets or sets the permission, permission set, or permission set collection that is part of the permit-only stack frame that caused a security check to fail. </summary> <returns> A permission, permission set, or permission set collection object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.SecurityException.RefusedSet"> <summary> Gets or sets the refused permission set of the assembly that caused the <see cref="T:System.Security.SecurityException" />. </summary> <returns> The XML representation of the refused permission set of the assembly. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.SecurityException.ToString"> <summary> Returns a representation of the current <see cref="T:System.Security.SecurityException" />. </summary> <returns> A string representation of the current <see cref="T:System.Security.SecurityException" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.SecurityException.Url"> <summary> Gets or sets the URL of the assembly that caused the exception. </summary> <returns> A URL that identifies the location of the assembly. </returns> </member> <member name="P:System.Security.SecurityException.Zone"> <summary> Gets or sets the zone of the assembly that caused the exception. </summary> <returns> One of the <see cref="T:System.Security.SecurityZone" /> values that identifies the zone of the assembly that caused the exception. </returns> </member> <member name="T:System.Security.SecurityManager"> <summary> Provides the main access point for classes interacting with the security system. This class cannot be inherited. </summary> </member> <member name="P:System.Security.SecurityManager.CheckExecutionRights"> <summary> Gets or sets a value indicating whether code must have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.Execution" /> in order to execute. </summary> <returns>true if code must have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.Execution" /> in order to execute; otherwise, false. </returns> <exception cref="T:System.Security.SecurityException"> The code that calls this method does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.ControlPolicy" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.GetZoneAndOrigin(System.Collections.ArrayList@,System.Collections.ArrayList@)"> <summary> Gets the granted zone identity and URL identity permission sets for the current assembly. </summary> <param name="zone"> An output parameter that contains a <see cref="T:System.Collections.ArrayList" /> of granted <see cref="P:System.Security.Permissions.ZoneIdentityPermissionAttribute.Zone" /> objects. </param> <param name="origin"> An output parameter that contains a <see cref="T:System.Collections.ArrayList" /> of granted <see cref="T:System.Security.Permissions.UrlIdentityPermission" /> objects. </param> <exception cref="T:System.Security.SecurityException"> The request for <see cref="T:System.Security.Permissions.StrongNameIdentityPermission" /> failed. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="00000000000000000400000000000000" Name="System.Windows.Forms" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.IsGranted(System.Security.IPermission)"> <summary> Determines whether a permission is granted to the caller. </summary> <returns>true if the permissions granted to the caller include the permission <paramref name="perm" />; otherwise, false. </returns> <param name="perm"> The permission to test against the grant of the caller. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.LoadPolicyLevelFromFile(System.String,System.Security.PolicyLevelType)"> <summary> Loads a <see cref="T:System.Security.Policy.PolicyLevel" /> from the specified file. </summary> <returns> The loaded <see cref="T:System.Security.Policy.PolicyLevel" />. </returns> <param name="path"> The physical file path to a file containing the security policy information. </param> <param name="type"> One of the <see cref="T:System.Security.PolicyLevelType" /> values. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The file indicated by the <paramref name="path" /> parameter does not exist. </exception> <exception cref="T:System.Security.SecurityException"> The code that calls this method does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.ControlPolicy" />. -or- The code that calls this method does not have <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" />. -or- The code that calls this method does not have <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />. -or- The code that calls this method does not have <see cref="F:System.Security.Permissions.FileIOPermissionAccess.PathDiscovery" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.LoadPolicyLevelFromString(System.String,System.Security.PolicyLevelType)"> <summary> Loads a <see cref="T:System.Security.Policy.PolicyLevel" /> from the specified string. </summary> <returns> The loaded <see cref="T:System.Security.Policy.PolicyLevel" />. </returns> <param name="str"> The XML representation of a security policy level in the same form in which it appears in a configuration file. </param> <param name="type"> One of the <see cref="T:System.Security.PolicyLevelType" /> values. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="str" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="str" /> parameter is not valid. </exception> <exception cref="T:System.Security.SecurityException"> The code that calls this method does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.ControlPolicy" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.PolicyHierarchy"> <summary> Provides an enumerator to access the security policy hierarchy by levels, such as computer policy and user policy. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> for <see cref="T:System.Security.Policy.PolicyLevel" /> objects that compose the security policy hierarchy. </returns> <exception cref="T:System.Security.SecurityException"> The code that calls this method does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.ControlPolicy" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence)"> <summary> Determines what permissions to grant to code based on the specified evidence. </summary> <returns> The set of permissions that can be granted by the security system. </returns> <param name="evidence"> The evidence set used to evaluate policy. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet@)"> <summary> Determines what permissions to grant to code based on the specified evidence and requests. </summary> <returns> The set of permissions that would be granted by the security system. </returns> <param name="evidence"> The evidence set used to evaluate policy. </param> <param name="reqdPset"> The required permissions the code needs to run. </param> <param name="optPset"> The optional permissions that will be used if granted, but aren't required for the code to run. </param> <param name="denyPset"> The denied permissions that must never be granted to the code even if policy otherwise permits it. </param> <param name="denied"> An output parameter that contains the set of permissions not granted. </param> <exception cref="T:System.Security.Policy.PolicyException"> Policy fails to grant the minimum required permissions specified by the <paramref name="reqdPset" /> parameter. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.ResolvePolicy(System.Security.Policy.Evidence[])"> <summary> Determines what permissions to grant to code based on the specified evidence. </summary> <returns> The set of permissions that is appropriate for all of the provided evidence. </returns> <param name="evidences"> An array of <see cref="T:System.Security.Policy.Evidence" /> objects used to evaluate policy. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.ResolvePolicyGroups(System.Security.Policy.Evidence)"> <summary> Gets a collection of code groups matching the specified evidence. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> enumeration of the set of code groups matching the evidence. </returns> <param name="evidence"> The evidence set against which the policy is evaluated. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.ResolveSystemPolicy(System.Security.Policy.Evidence)"> <summary> Determines what permissions to grant to code based on the specified evidence, excluding the policy for the <see cref="T:System.AppDomain" /> level. </summary> <returns> The set of permissions that can be granted by the security system. </returns> <param name="evidence"> The evidence set used to evaluate policy. </param> </member> <member name="M:System.Security.SecurityManager.SavePolicy"> <summary> Saves the modified security policy state. </summary> <exception cref="T:System.Security.SecurityException"> The code that calls this method does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.ControlPolicy" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.SecurityManager.SavePolicyLevel(System.Security.Policy.PolicyLevel)"> <summary> Saves a modified security policy level loaded with <see cref="M:System.Security.SecurityManager.LoadPolicyLevelFromFile(System.String,System.Security.PolicyLevelType)" />. </summary> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> object to be saved. </param> <exception cref="T:System.Security.SecurityException"> The code that calls this method does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.ControlPolicy" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.SecurityManager.SecurityEnabled"> <summary> Gets or sets a value indicating whether security is enabled. </summary> <returns>true if security is enabled; otherwise, false. </returns> <exception cref="T:System.Security.SecurityException"> The code that calls this method does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.ControlPolicy" />. </exception> </member> <member name="T:System.Security.SecurityTransparentAttribute"> <summary> Specifies that an assembly cannot cause an elevation of privilege. </summary> </member> <member name="M:System.Security.SecurityTransparentAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityTransparentAttribute" /> class. </summary> </member> <member name="T:System.Security.SecurityTreatAsSafeAttribute"> <summary> Identifies which of the nonpublic <see cref="T:System.Security.SecurityCriticalAttribute" /> members are accessible by transparent code within the assembly. </summary> </member> <member name="M:System.Security.SecurityTreatAsSafeAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityTreatAsSafeAttribute" /> class. </summary> </member> <member name="T:System.Security.SecurityZone"> <summary> Defines the integer values corresponding to security zones used by security policy. </summary> </member> <member name="F:System.Security.SecurityZone.MyComputer"> <summary> The local computer zone is an implicit zone used for content that exists on the user's computer. </summary> </member> <member name="F:System.Security.SecurityZone.Intranet"> <summary> The local intranet zone is used for content located on a company's intranet. Because the servers and information would be within a company's firewall, a user or company could assign a higher trust level to the content on the intranet. </summary> </member> <member name="F:System.Security.SecurityZone.Trusted"> <summary> The trusted sites zone is used for content located on Web sites considered more reputable or trustworthy than other sites on the Internet. Users can use this zone to assign a higher trust level to these sites to minimize the number of authentication requests. The URLs of these trusted Web sites need to be mapped into this zone by the user. </summary> </member> <member name="F:System.Security.SecurityZone.Internet"> <summary> The Internet zone is used for the Web sites on the Internet that do not belong to another zone. </summary> </member> <member name="F:System.Security.SecurityZone.Untrusted"> <summary> The restricted sites zone is used for Web sites with content that could cause, or could have caused, problems when downloaded. The URLs of these untrusted Web sites need to be mapped into this zone by the user. </summary> </member> <member name="F:System.Security.SecurityZone.NoZone"> <summary> No zone is specified. </summary> </member> <member name="T:System.Security.SuppressUnmanagedCodeSecurityAttribute"> <summary> Allows managed code to call into unmanaged code without a stack walk. This class cannot be inherited. </summary> </member> <member name="M:System.Security.SuppressUnmanagedCodeSecurityAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.SuppressUnmanagedCodeSecurityAttribute" /> class. </summary> </member> <member name="T:System.Security.UnverifiableCodeAttribute"> <summary> Marks modules containing unverifiable code. This class cannot be inherited. </summary> </member> <member name="M:System.Security.UnverifiableCodeAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.UnverifiableCodeAttribute" /> class. </summary> </member> <member name="T:System.Security.VerificationException"> <summary> The exception that is thrown when the security policy requires code to be type safe and the verification process is unable to verify that the code is type safe. </summary> </member> <member name="M:System.Security.VerificationException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.VerificationException" /> class with default properties. </summary> </member> <member name="M:System.Security.VerificationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Security.VerificationException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.Security.VerificationException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.VerificationException" /> class with an explanatory message. </summary> <param name="message"> A message indicating the reason the exception occurred. </param> </member> <member name="M:System.Security.VerificationException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Security.VerificationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Security.XmlSyntaxException"> <summary> The exception that is thrown when there is a syntax error in XML parsing. This class cannot be inherited. </summary> </member> <member name="M:System.Security.XmlSyntaxException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.XmlSyntaxException" /> class with default properties. </summary> </member> <member name="M:System.Security.XmlSyntaxException.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.XmlSyntaxException" /> class with the line number where the exception was detected. </summary> <param name="lineNumber"> The line number of the XML stream where the XML syntax error was detected. </param> </member> <member name="M:System.Security.XmlSyntaxException.#ctor(System.Int32,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.XmlSyntaxException" /> class with a specified error message and the line number where the exception was detected. </summary> <param name="lineNumber"> The line number of the XML stream where the XML syntax error was detected. </param> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Security.XmlSyntaxException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.XmlSyntaxException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Security.XmlSyntaxException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Security.XmlSyntaxException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Security.SecuritySafeCriticalAttribute"> <summary> Identifies which of the nonpublic <see cref="T:System.Security.SecurityCriticalAttribute" /> members are accessible by transparent code within the assembly. </summary> </member> <member name="M:System.Security.SecuritySafeCriticalAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecuritySafeCriticalAttribute" /> class. </summary> </member> <member name="T:System.Security.SecurityState"> <summary> Provides a base class for requesting the security status of an action from the <see cref="T:System.AppDomainManager" /> object. </summary> </member> <member name="M:System.Security.SecurityState.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.SecurityState" /> class. </summary> </member> <member name="M:System.Security.SecurityState.EnsureState"> <summary> When overridden in a derived class, ensures that the state that is represented by <see cref="T:System.Security.SecurityState" /> is available on the host. </summary> </member> <member name="M:System.Security.SecurityState.IsStateAvailable"> <summary> Gets a value that indicates whether the state for this implementation of the <see cref="T:System.Security.SecurityState" /> class is available on the current host. </summary> <returns>true if the state is available; otherwise, false. </returns> </member> <member name="T:System.Security.AccessControl.AccessControlActions"> <summary> Specifies the actions that are permitted for securable objects. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlActions.None"> <summary> Specifies no access. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlActions.View"> <summary> Specifies read-only access. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlActions.Change"> <summary> Specifies write-only access. </summary> </member> <member name="T:System.Security.AccessControl.AccessControlModification"> <summary> Specifies the type of access control modification to perform. This enumeration is used by methods of the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> class and its descendents. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlModification.Add"> <summary> Add the specified authorization rule to the access control list (ACL). </summary> </member> <member name="F:System.Security.AccessControl.AccessControlModification.Set"> <summary> Remove all authorization rules from the ACL, then add the specified authorization rule to the ACL. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlModification.Reset"> <summary> Remove authorization rules that contain the same SID as the specified authorization rule from the ACL, and then add the specified authorization rule to the ACL. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlModification.Remove"> <summary> Remove authorization rules that contain the same security identifier (SID) and access mask as the specified authorization rule from the ACL. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlModification.RemoveAll"> <summary> Remove authorization rules that contain the same SID as the specified authorization rule from the ACL. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlModification.RemoveSpecific"> <summary> Remove authorization rules that exactly match the specified authorization rule from the ACL. </summary> </member> <member name="T:System.Security.AccessControl.AccessControlSections"> <summary> Specifies which sections of a security descriptor to save or load. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlSections.None"> <summary> No sections. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlSections.Audit"> <summary> The system access control list (SACL). </summary> </member> <member name="F:System.Security.AccessControl.AccessControlSections.Access"> <summary> The discretionary access control list (DACL). </summary> </member> <member name="F:System.Security.AccessControl.AccessControlSections.Owner"> <summary> The owner. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlSections.Group"> <summary> The primary group. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlSections.All"> <summary> The entire security descriptor. </summary> </member> <member name="T:System.Security.AccessControl.AccessControlType"> <summary> Specifies whether an <see cref="T:System.Security.AccessControl.AccessRule" /> object is used to allow or deny access. These values are not flags, and they cannot be combined. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlType.Allow"> <summary> The <see cref="T:System.Security.AccessControl.AccessRule" /> object is used to allow access to a secured object. </summary> </member> <member name="F:System.Security.AccessControl.AccessControlType.Deny"> <summary> The <see cref="T:System.Security.AccessControl.AccessRule" /> object is used to deny access to a secured object. </summary> </member> <member name="T:System.Security.AccessControl.AccessRule"> <summary> Represents a combination of a user's identity, an access mask, and an access control type (allow or deny). An <see cref="T:System.Security.AccessControl.AccessRule" /> object also contains information about the how the rule is inherited by child objects and how that inheritance is propagated. </summary> </member> <member name="M:System.Security.AccessControl.AccessRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class by using the specified values. </summary> <param name="identity"> The identity to which the access rule applies. This parameter must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited">true if this rule is inherited from a parent container. </param> <param name="inheritanceFlags"> The inheritance properties of the access rule. </param> <param name="propagationFlags"> Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="type"> The valid access control type. </param> <exception cref="T:System.ArgumentException"> The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />, or the <paramref name="type" /> parameter contains an invalid value. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="accessMask" /> parameter is zero, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values. </exception> </member> <member name="P:System.Security.AccessControl.AccessRule.AccessControlType"> <summary> Gets the <see cref="T:System.Security.AccessControl.AccessControlType" /> value associated with this <see cref="T:System.Security.AccessControl.AccessRule" /> object. </summary> <returns> The <see cref="T:System.Security.AccessControl.AccessControlType" /> value associated with this <see cref="T:System.Security.AccessControl.AccessRule" /> object. </returns> </member> <member name="T:System.Security.AccessControl.AceEnumerator"> <summary> Provides the ability to iterate through the access control entries (ACEs) in an access control list (ACL). </summary> </member> <member name="P:System.Security.AccessControl.AceEnumerator.Current"> <summary> Gets the current element in the <see cref="T:System.Security.AccessControl.GenericAce" /> collection. This property gets the type-friendly version of the object. </summary> <returns> The current element in the <see cref="T:System.Security.AccessControl.GenericAce" /> collection. </returns> </member> <member name="M:System.Security.AccessControl.AceEnumerator.MoveNext"> <summary> Advances the enumerator to the next element of the <see cref="T:System.Security.AccessControl.GenericAce" /> collection. </summary> <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. </returns> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> </member> <member name="M:System.Security.AccessControl.AceEnumerator.Reset"> <summary> Sets the enumerator to its initial position, which is before the first element in the <see cref="T:System.Security.AccessControl.GenericAce" /> collection. </summary> <exception cref="T:System.InvalidOperationException"> The collection was modified after the enumerator was created. </exception> </member> <member name="P:System.Security.AccessControl.AceEnumerator.System#Collections#IEnumerator#Current"></member> <member name="T:System.Security.AccessControl.AceFlags"> <summary> Specifies the inheritance and auditing behavior of an access control entry (ACE). </summary> </member> <member name="F:System.Security.AccessControl.AceFlags.None"> <summary> No ACE flags are set. </summary> </member> <member name="F:System.Security.AccessControl.AceFlags.ObjectInherit"> <summary> The access mask is propagated onto child leaf objects. </summary> </member> <member name="F:System.Security.AccessControl.AceFlags.ContainerInherit"> <summary> The access mask is propagated to child container objects. </summary> </member> <member name="F:System.Security.AccessControl.AceFlags.NoPropagateInherit"> <summary> The access checks do not apply to the object; they only apply to its children. </summary> </member> <member name="F:System.Security.AccessControl.AceFlags.InheritOnly"> <summary> The access mask is propagated only to child objects. This includes both container and leaf child objects. </summary> </member> <member name="F:System.Security.AccessControl.AceFlags.Inherited"> <summary> An ACE is inherited from a parent container rather than being explicitly set for an object. </summary> </member> <member name="F:System.Security.AccessControl.AceFlags.SuccessfulAccess"> <summary> Successful access attempts are audited. </summary> </member> <member name="F:System.Security.AccessControl.AceFlags.FailedAccess"> <summary> Failed access attempts are audited. </summary> </member> <member name="F:System.Security.AccessControl.AceFlags.InheritanceFlags"> <summary> A logical OR of <see cref="F:System.Security.AccessControl.AceFlags.ObjectInherit" />, <see cref="F:System.Security.AccessControl.AceFlags.ContainerInherit" />, <see cref="F:System.Security.AccessControl.AceFlags.NoPropagateInherit" />, and <see cref="F:System.Security.AccessControl.AceFlags.InheritOnly" />. </summary> </member> <member name="F:System.Security.AccessControl.AceFlags.AuditFlags"> <summary> All access attempts are audited. </summary> </member> <member name="T:System.Security.AccessControl.AceQualifier"> <summary> Specifies the function of an access control entry (ACE). </summary> </member> <member name="F:System.Security.AccessControl.AceQualifier.AccessAllowed"> <summary> Allow access. </summary> </member> <member name="F:System.Security.AccessControl.AceQualifier.AccessDenied"> <summary> Deny access. </summary> </member> <member name="F:System.Security.AccessControl.AceQualifier.SystemAudit"> <summary> Cause a system audit. </summary> </member> <member name="F:System.Security.AccessControl.AceQualifier.SystemAlarm"> <summary> Cause a system alarm. </summary> </member> <member name="T:System.Security.AccessControl.AceType"> <summary> Defines the available access control entry (ACE) types. </summary> </member> <member name="F:System.Security.AccessControl.AceType.AccessAllowed"> <summary> Allows access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. </summary> </member> <member name="F:System.Security.AccessControl.AceType.AccessDenied"> <summary> Denies access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. </summary> </member> <member name="F:System.Security.AccessControl.AceType.SystemAudit"> <summary> Causes an audit message to be logged when a specified trustee attempts to gain access to an object. The trustee is identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. </summary> </member> <member name="F:System.Security.AccessControl.AceType.SystemAlarm"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Security.AccessControl.AceType.AccessAllowedCompound"> <summary> Defined but never used. Included here for completeness. </summary> </member> <member name="F:System.Security.AccessControl.AceType.AccessAllowedObject"> <summary> Allows access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. </summary> </member> <member name="F:System.Security.AccessControl.AceType.AccessDeniedObject"> <summary> Denies access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. </summary> </member> <member name="F:System.Security.AccessControl.AceType.SystemAuditObject"> <summary> Causes an audit message to be logged when a specified trustee attempts to gain access to an object or subobjects such as property sets or properties. The ACE contains a set of access rights, a GUID that identifies the type of object or subobject, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee for whom the system will audit access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. </summary> </member> <member name="F:System.Security.AccessControl.AceType.SystemAlarmObject"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Security.AccessControl.AceType.AccessAllowedCallback"> <summary> Allows access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. This ACE type may contain optional callback data. The callback data is a resource manager–specific BLOB that is not interpreted. </summary> </member> <member name="F:System.Security.AccessControl.AceType.AccessDeniedCallback"> <summary> Denies access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. This ACE type can contain optional callback data. The callback data is a resource manager–specific BLOB that is not interpreted. </summary> </member> <member name="F:System.Security.AccessControl.AceType.AccessAllowedCallbackObject"> <summary> Allows access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type may contain optional callback data. The callback data is a resource manager–specific BLOB that is not interpreted. </summary> </member> <member name="F:System.Security.AccessControl.AceType.AccessDeniedCallbackObject"> <summary> Denies access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type can contain optional callback data. The callback data is a resource manager–specific BLOB that is not interpreted. </summary> </member> <member name="F:System.Security.AccessControl.AceType.SystemAuditCallback"> <summary> Causes an audit message to be logged when a specified trustee attempts to gain access to an object. The trustee is identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. This ACE type can contain optional callback data. The callback data is a resource manager–specific BLOB that is not interpreted. </summary> </member> <member name="F:System.Security.AccessControl.AceType.SystemAlarmCallback"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Security.AccessControl.AceType.SystemAuditCallbackObject"> <summary> Causes an audit message to be logged when a specified trustee attempts to gain access to an object or subobjects such as property sets or properties. The ACE contains a set of access rights, a GUID that identifies the type of object or subobject, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee for whom the system will audit access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type can contain optional callback data. The callback data is a resource manager–specific BLOB that is not interpreted. </summary> </member> <member name="F:System.Security.AccessControl.AceType.SystemAlarmCallbackObject"> <summary> Reserved for future use. </summary> </member> <member name="F:System.Security.AccessControl.AceType.MaxDefinedAceType"> <summary> Tracks the maximum defined ACE type in the enumeration. </summary> </member> <member name="T:System.Security.AccessControl.AuditFlags"> <summary> Specifies the conditions for auditing attempts to access a securable object. </summary> </member> <member name="F:System.Security.AccessControl.AuditFlags.None"> <summary> No access attempts are to be audited. </summary> </member> <member name="F:System.Security.AccessControl.AuditFlags.Success"> <summary> Successful access attempts are to be audited. </summary> </member> <member name="F:System.Security.AccessControl.AuditFlags.Failure"> <summary> Failed access attempts are to be audited. </summary> </member> <member name="T:System.Security.AccessControl.AuditRule"> <summary> Represents a combination of a user's identity and an access mask. An <see cref="T:System.Security.AccessControl.AuditRule" /> object also contains information about how the rule is inherited by child objects, how that inheritance is propagated, and for what conditions it is audited. </summary> </member> <member name="M:System.Security.AccessControl.AuditRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule" /> class by using the specified values. </summary> <param name="identity"> The identity to which the audit rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited">true to inherit this rule from a parent container. </param> <param name="inheritanceFlags"> The inheritance properties of the audit rule. </param> <param name="propagationFlags"> Whether inherited audit rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="auditFlags"> The conditions for which the rule is audited. </param> <exception cref="T:System.ArgumentException"> The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />, or the <paramref name="auditFlags" /> parameter contains an invalid value. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="accessMask" /> parameter is zero, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values. </exception> </member> <member name="P:System.Security.AccessControl.AuditRule.AuditFlags"> <summary> Gets the audit flags for this audit rule. </summary> <returns> A bitwise combination of the enumeration values. This combination specifies the audit conditions for this audit rule. </returns> </member> <member name="T:System.Security.AccessControl.AuthorizationRule"> <summary> Determines access to securable objects. The derived classes <see cref="T:System.Security.AccessControl.AccessRule" /> and <see cref="T:System.Security.AccessControl.AuditRule" /> offer specializations for access and audit functionality. </summary> </member> <member name="M:System.Security.AccessControl.AuthorizationRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AuthorizationControl.AccessRule" /> class by using the specified values. </summary> <param name="identity"> The identity to which the access rule applies. This parameter must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited">true to inherit this rule from a parent container. </param> <param name="inheritanceFlags"> The inheritance properties of the access rule. </param> <param name="propagationFlags"> Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <exception cref="T:System.ArgumentException"> The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="accessMask" /> parameter is zero, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values. </exception> </member> <member name="P:System.Security.AccessControl.AuthorizationRule.AccessMask"> <summary> Gets the access mask for this rule. </summary> <returns> The access mask for this rule. </returns> </member> <member name="P:System.Security.AccessControl.AuthorizationRule.IdentityReference"> <summary> Gets the <see cref="T:System.Security.Principal.IdentityReference" /> to which this rule applies. </summary> <returns> The <see cref="T:System.Security.Principal.IdentityReference" /> to which this rule applies. </returns> </member> <member name="P:System.Security.AccessControl.AuthorizationRule.InheritanceFlags"> <summary> Gets the value of flags that determine how this rule is inherited by child objects. </summary> <returns> A bitwise combination of the enumeration values. </returns> </member> <member name="P:System.Security.AccessControl.AuthorizationRule.IsInherited"> <summary> Gets a value indicating whether this rule is explicitly set or is inherited from a parent container object. </summary> <returns>true if this rule is not explicitly set but is instead inherited from a parent container. </returns> </member> <member name="P:System.Security.AccessControl.AuthorizationRule.PropagationFlags"> <summary> Gets the value of the propagation flags, which determine how inheritance of this rule is propagated to child objects. This property is significant only when the value of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> enumeration is not <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </summary> <returns> A bitwise combination of the enumeration values. </returns> </member> <member name="T:System.Security.AccessControl.AuthorizationRuleCollection"> <summary> Represents a collection of <see cref="T:System.Security.AccessControl.AuthorizationRule" /> objects. </summary> </member> <member name="M:System.Security.AccessControl.AuthorizationRuleCollection.CopyTo(System.Security.AccessControl.AuthorizationRule[],System.Int32)"> <summary> Copies the contents of the collection to an array. </summary> <param name="rules"> An array to which to copy the contents of the collection. </param> <param name="index"> The zero-based index from which to begin copying. </param> </member> <member name="P:System.Security.AccessControl.AuthorizationRuleCollection.Item(System.Int32)"> <summary> Gets the <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object at the specified index of the collection. </summary> <returns> The <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object at the specified index. </returns> <param name="index"> The zero-based index of the <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object to get. </param> </member> <member name="T:System.Security.AccessControl.CommonAce"> <summary> Represents an access control entry (ACE). </summary> </member> <member name="M:System.Security.AccessControl.CommonAce.#ctor(System.Security.AccessControl.AceFlags,System.Security.AccessControl.AceQualifier,System.Int32,System.Security.Principal.SecurityIdentifier,System.Boolean,System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonAce" /> class. </summary> <param name="flags"> Flags that specify information about the inheritance, inheritance propagation, and auditing conditions for the new access control entry (ACE). </param> <param name="qualifier"> The use of the new ACE. </param> <param name="accessMask"> The access mask for the ACE. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> associated with the new ACE. </param> <param name="isCallback">true to specify that the new ACE is a callback type ACE. </param> <param name="opaque"> Opaque data associated with the new ACE. Opaque data is allowed only for callback ACE types. The length of this array must not be greater than the return value of the <see cref="M:System.Security.AccessControl.CommonAce.MaxOpaqueLength(System.Boolean)" /> method. </param> </member> <member name="P:System.Security.AccessControl.CommonAce.BinaryLength"> <summary> Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAce" /> object. Use this length with the <see cref="M:System.Security.AccessControl.CommonAce.GetBinaryForm(System.Byte[],System.Int32)" /> method before marshaling the ACL into a binary array. </summary> <returns> The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAce" /> object. </returns> </member> <member name="M:System.Security.AccessControl.CommonAce.GetBinaryForm(System.Byte[],System.Int32)"> <summary> Marshals the contents of the <see cref="T:System.Security.AccessControl.CommonAce" /> object into the specified byte array beginning at the specified offset. </summary> <param name="binaryForm"> The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CommonAce" /> object is marshaled. </param> <param name="offset"> The offset at which to start marshaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.CommonAce" /> to be copied into the <paramref name="binaryForm" /> array. </exception> </member> <member name="M:System.Security.AccessControl.CommonAce.MaxOpaqueLength(System.Boolean)"> <summary> Gets the maximum allowed length of an opaque data BLOB for callback access control entries (ACEs). </summary> <returns> The allowed length of an opaque data BLOB. </returns> <param name="isCallback">true to specify that the <see cref="T:System.Security.AccessControl.CommonAce" /> object is a callback ACE type. </param> </member> <member name="T:System.Security.AccessControl.CommonAcl"> <summary> Represents an access control list (ACL) and is the base class for the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> and <see cref="T:System.Security.AccessControl.SystemAcl" /> classes. </summary> </member> <member name="P:System.Security.AccessControl.CommonAcl.BinaryLength"> <summary> Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object. This length should be used before marshaling the access control list (ACL) into a binary array by using the <see cref="M:System.Security.AccessControl.CommonAcl.GetBinaryForm" /> method. </summary> <returns> The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object. </returns> </member> <member name="P:System.Security.AccessControl.CommonAcl.Count"> <summary> Gets the number of access control entries (ACEs) in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object. </summary> <returns> The number of ACEs in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object. </returns> </member> <member name="M:System.Security.AccessControl.CommonAcl.GetBinaryForm(System.Byte[],System.Int32)"> <summary> Marshals the contents of the <see cref="T:System.Security.AccessControl.CommonAcl" /> object into the specified byte array beginning at the specified offset. </summary> <param name="binaryForm"> The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CommonAcl" /> is marshaled. </param> <param name="offset"> The offset at which to start marshaling. </param> </member> <member name="P:System.Security.AccessControl.CommonAcl.IsCanonical"> <summary> Gets a Boolean value that specifies whether the access control entries (ACEs) in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object are in canonical order. </summary> <returns>true if the ACEs in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object are in canonical order; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.CommonAcl.IsContainer"> <summary> Sets whether the <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a container. </summary> <returns>true if the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a container. </returns> </member> <member name="P:System.Security.AccessControl.CommonAcl.IsDS"> <summary> Sets whether the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a directory object access control list (ACL). </summary> <returns>true if the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a directory object ACL. </returns> </member> <member name="P:System.Security.AccessControl.CommonAcl.Item(System.Int32)"> <summary> Gets or sets the <see cref="T:System.Security.AccessControl.CommonAce" /> at the specified index. </summary> <returns> The <see cref="T:System.Security.AccessControl.CommonAce" /> at the specified index. </returns> <param name="index"> The zero-based index of the <see cref="T:System.Security.AccessControl.CommonAce" /> to get or set. </param> </member> <member name="M:System.Security.AccessControl.CommonAcl.Purge(System.Security.Principal.SecurityIdentifier)"> <summary> Removes all access control entries (ACEs) contained by this <see cref="T:System.Security.AccessControl.CommonAcl" /> object that are associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> object to check for. </param> </member> <member name="M:System.Security.AccessControl.CommonAcl.RemoveInheritedAces"> <summary> Removes all inherited access control entries (ACEs) from this <see cref="T:System.Security.AccessControl.CommonAcl" /> object. </summary> </member> <member name="P:System.Security.AccessControl.CommonAcl.Revision"> <summary> Gets the revision level of the <see cref="T:System.Security.AccessControl.CommonAcl" />. </summary> <returns> A byte value that specifies the revision level of the <see cref="T:System.Security.AccessControl.CommonAcl" />. </returns> </member> <member name="T:System.Security.AccessControl.CommonObjectSecurity"> <summary> Controls access to objects without direct manipulation of access control lists (ACLs). This class is the abstract base class for the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class. </summary> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> class. </summary> <param name="isContainer">true if the new object is a container object. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(System.Security.AccessControl.AccessRule)"> <summary> Adds the specified access rule to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <param name="rule"> The access rule to add. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.AddAuditRule(System.Security.AccessControl.AuditRule)"> <summary> Adds the specified audit rule to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <param name="rule"> The audit rule to add. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.GetAccessRules(System.Boolean,System.Boolean,System.Type)"> <summary> Gets a collection of the access rules associated with the specified security identifier. </summary> <returns> The collection of access rules associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </returns> <param name="includeExplicit">true to include access rules explicitly set for the object. </param> <param name="includeInherited">true to include inherited access rules. </param> <param name="targetType"> Specifies whether the security identifier for which to retrieve access rules is of type T:System.Security.Principal.SecurityIdentifier or type T:System.Security.Principal.NTAccount. The value of this parameter must be a type that can be translated to the <see cref="T:System.Security.Principal.SecurityIdentifier" /> type. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.GetAuditRules(System.Boolean,System.Boolean,System.Type)"> <summary> Gets a collection of the audit rules associated with the specified security identifier. </summary> <returns> The collection of audit rules associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </returns> <param name="includeExplicit">true to include audit rules explicitly set for the object. </param> <param name="includeInherited">true to include inherited audit rules. </param> <param name="targetType"> The security identifier for which to retrieve audit rules. This must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)"> <summary> Applies the specified modification to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <returns>true if the DACL is successfully modified; otherwise, false. </returns> <param name="modification"></param> <param name="rule"></param> <param name="modified"></param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.ModifyAudit(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)"> <summary> Applies the specified modification to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <returns>true if the SACL is successfully modified; otherwise, false. </returns> <param name="modification"></param> <param name="rule"></param> <param name="modified"></param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAccessRule(System.Security.AccessControl.AccessRule)"> <summary> Removes access rules that contain the same security identifier and access mask as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <returns>true if the access rule was successfully removed; otherwise, false. </returns> <param name="rule"> The access rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAccessRuleAll(System.Security.AccessControl.AccessRule)"> <summary> Removes all access rules that have the same security identifier as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <param name="rule"> The access rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.AccessRule)"> <summary> Removes all access rules that exactly match the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <param name="rule"> The access rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAuditRule(System.Security.AccessControl.AuditRule)"> <summary> Removes audit rules that contain the same security identifier and access mask as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <returns>true if the audit rule was successfully removed; otherwise, false. </returns> <param name="rule"> The audit rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAuditRuleAll(System.Security.AccessControl.AuditRule)"> <summary> Removes all audit rules that have the same security identifier as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <param name="rule"> The audit rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.AuditRule)"> <summary> Removes all audit rules that exactly match the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <param name="rule"> The audit rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.ResetAccessRule(System.Security.AccessControl.AccessRule)"> <summary> Removes all access rules in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object and then adds the specified access rule. </summary> <param name="rule"> The access rule to reset. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.SetAccessRule(System.Security.AccessControl.AccessRule)"> <summary> Removes all access rules that contain the same security identifier and qualifier as the specified access rule in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object and then adds the specified access rule. </summary> <param name="rule"> The access rule to set. </param> </member> <member name="M:System.Security.AccessControl.CommonObjectSecurity.SetAuditRule(System.Security.AccessControl.AuditRule)"> <summary> Removes all audit rules that contain the same security identifier and qualifier as the specified audit rule in the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object and then adds the specified audit rule. </summary> <param name="rule"> The audit rule to set. </param> </member> <member name="T:System.Security.AccessControl.CommonSecurityDescriptor"> <summary> Represents a security descriptor. A security descriptor includes an owner, a primary group, a Discretionary Access Control List (DACL), and a System Access Control List (SACL). </summary> </member> <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.Byte[],System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified array of byte values. </summary> <param name="isContainer">true if the new security descriptor is associated with a container object. </param> <param name="isDS">true if the new security descriptor is associated with a directory object. </param> <param name="binaryForm"> The array of byte values from which to create the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </param> <param name="offset"> The offset in the <paramref name="binaryForm" /> array at which to begin copying. </param> </member> <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.ControlFlags,System.Security.Principal.SecurityIdentifier,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.SystemAcl,System.Security.AccessControl.DiscretionaryAcl)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified information. </summary> <param name="isContainer">true if the new security descriptor is associated with a container object. </param> <param name="isDS">true if the new security descriptor is associated with a directory object. </param> <param name="flags"> Flags that specify behavior of the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </param> <param name="owner"> The owner for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </param> <param name="group"> The primary group for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </param> <param name="systemAcl"> The System Access Control List (SACL) for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </param> <param name="discretionaryAcl"> The Discretionary Access Control List (DACL) for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </param> </member> <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.RawSecurityDescriptor)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </summary> <param name="isContainer">true if the new security descriptor is associated with a container object. </param> <param name="isDS">true if the new security descriptor is associated with a directory object. </param> <param name="rawSecurityDescriptor"> The <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object from which to create the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </param> </member> <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified Security Descriptor Definition Language (SDDL) string. </summary> <param name="isContainer">true if the new security descriptor is associated with a container object. </param> <param name="isDS">true if the new security descriptor is associated with a directory object. </param> <param name="sddlForm"> The SDDL string from which to create the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </param> </member> <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.ControlFlags"> <summary> Gets values that specify behavior of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </summary> <returns> One or more values of the <see cref="T:System.Security.AccessControl.ControlFlags" /> enumeration combined with a logical OR operation. </returns> </member> <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.DiscretionaryAcl"> <summary> Gets or sets the discretionary access control list (DACL) for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. The DACL contains access rules. </summary> <returns> The DACL for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </returns> </member> <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.Group"> <summary> Gets or sets the primary group for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </summary> <returns> The primary group for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </returns> </member> <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsContainer"> <summary> Gets a Boolean value that specifies whether the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a container object. </summary> <returns>true if the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a container object; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsDiscretionaryAclCanonical"> <summary> Gets a Boolean value that specifies whether the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order. </summary> <returns>true if the DACL associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsDS"> <summary> Gets a Boolean value that specifies whether the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a directory object. </summary> <returns>true if the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a directory object; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsSystemAclCanonical"> <summary> Gets a Boolean value that specifies whether the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order. </summary> <returns>true if the SACL associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.Owner"> <summary> Gets or sets the owner of the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </summary> <returns> The owner of the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </returns> </member> <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.PurgeAccessControl(System.Security.Principal.SecurityIdentifier)"> <summary> Removes all access rules for the specified security identifier from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </summary> <param name="sid"> The security identifier for which to remove access rules. </param> </member> <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.PurgeAudit(System.Security.Principal.SecurityIdentifier)"> <summary> Removes all audit rules for the specified security identifier from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </summary> <param name="sid"> The security identifier for which to remove audit rules. </param> </member> <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.SetDiscretionaryAclProtection(System.Boolean,System.Boolean)"> <summary> Sets the inheritance protection for the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. DACLs that are protected do not inherit access rules from parent containers. </summary> <param name="isProtected">true to protect the DACL from inheritance. </param> <param name="preserveInheritance">true to keep inherited access rules in the DACL; false to remove inherited access rules from the DACL. </param> </member> <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.SetSystemAclProtection(System.Boolean,System.Boolean)"> <summary> Sets the inheritance protection for the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. SACLs that are protected do not inherit audit rules from parent containers. </summary> <param name="isProtected">true to protect the SACL from inheritance. </param> <param name="preserveInheritance">true to keep inherited audit rules in the SACL; false to remove inherited audit rules from the SACL. </param> </member> <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.SystemAcl"> <summary> Gets or sets the System Access Control List (SACL) for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. The SACL contains audit rules. </summary> <returns> The SACL for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. </returns> </member> <member name="T:System.Security.AccessControl.CompoundAce"> <summary> Represents a compound Access Control Entry (ACE). </summary> </member> <member name="M:System.Security.AccessControl.CompoundAce.#ctor(System.Security.AccessControl.AceFlags,System.Int32,System.Security.AccessControl.CompoundAceType,System.Security.Principal.SecurityIdentifier)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CompoundAce" /> class. </summary> <param name="flags"> Contains flags that specify information about the inheritance, inheritance propagation, and auditing conditions for the new Access Control Entry (ACE). </param> <param name="accessMask"> The access mask for the ACE. </param> <param name="compoundAceType"> A value from the <see cref="T:System.Security.AccessControl.CompoundAceType" /> enumeration. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> associated with the new ACE. </param> </member> <member name="P:System.Security.AccessControl.CompoundAce.BinaryLength"> <summary> Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CompoundAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl. CompoundAce.GetBinaryForm" /> method. </summary> <returns> The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl. CompoundAce" /> object. </returns> </member> <member name="P:System.Security.AccessControl.CompoundAce.CompoundAceType"> <summary> Gets or sets the type of this <see cref="T:System.Security.AccessControl. CompoundAce" /> object. </summary> <returns> The type of this <see cref="T:System.Security.AccessControl. CompoundAce" /> object. </returns> </member> <member name="M:System.Security.AccessControl.CompoundAce.GetBinaryForm(System.Byte[],System.Int32)"> <summary> Marshals the contents of the <see cref="T:System.Security.AccessControl.CompoundAce" /> object into the specified byte array beginning at the specified offset. </summary> <param name="binaryForm"> The byte array into which the contents of the <see cref="T:System.Security.AccessControl. CompoundAce" /> is marshaled. </param> <param name="offset"> The offset at which to start marshaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl. CompoundAce" /> to be copied into <paramref name="array" />. </exception> </member> <member name="T:System.Security.AccessControl.CompoundAceType"> <summary> Specifies the type of a <see cref="T:System.Security.AccessControl.CompoundAce" /> object. </summary> </member> <member name="F:System.Security.AccessControl.CompoundAceType.Impersonation"> <summary> The <see cref="T:System.Security.AccessControl.CompoundAce" /> object is used for impersonation. </summary> </member> <member name="T:System.Security.AccessControl.ControlFlags"> <summary> These flags affect the security descriptor behavior. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.None"> <summary> No control flags. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.OwnerDefaulted"> <summary> Specifies that the owner <see cref="T:System.Security.Principal.SecurityIdentifier" /> was obtained by a defaulting mechanism. Set by resource managers only; should not be set by callers. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.GroupDefaulted"> <summary> Specifies that the group <see cref="T:System.Security.Principal.SecurityIdentifier" /> was obtained by a defaulting mechanism. Set by resource managers only; should not be set by callers. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclPresent"> <summary> Specifies that the DACL is not null. Set by resource managers or users. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclDefaulted"> <summary> Specifies that the DACL was obtained by a defaulting mechanism. Set by resource managers only. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.SystemAclPresent"> <summary> Specifies that the SACL is not null. Set by resource managers or users. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.SystemAclDefaulted"> <summary> Specifies that the SACL was obtained by a defaulting mechanism. Set by resource managers only. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclUntrusted"> <summary> Ignored. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.ServerSecurity"> <summary> Ignored. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclAutoInheritRequired"> <summary> Ignored. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.SystemAclAutoInheritRequired"> <summary> Ignored. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclAutoInherited"> <summary> Specifies that the Discretionary Access Control List (DACL) has been automatically inherited from the parent. Set by resource managers only. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.SystemAclAutoInherited"> <summary> Specifies that the System Access Control List (SACL) has been automatically inherited from the parent. Set by resource managers only. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclProtected"> <summary> Specifies that the resource manager prevents auto-inheritance. Set by resource managers or users. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.SystemAclProtected"> <summary> Specifies that the resource manager prevents auto-inheritance. Set by resource managers or users. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.RMControlValid"> <summary> Specifies that the contents of the Reserved field are valid. </summary> </member> <member name="F:System.Security.AccessControl.ControlFlags.SelfRelative"> <summary> Specifies that the security descriptor binary representation is in the self-relative format. This flag is always set. </summary> </member> <member name="T:System.Security.AccessControl.CryptoKeyAccessRule"> <summary> Represents an access rule for a cryptographic key. An access rule represents a combination of a user's identity, an access mask, and an access control type (allow or deny). An access rule object also contains information about the how the rule is inherited by child objects and how that inheritance is propagated. </summary> </member> <member name="M:System.Security.AccessControl.CryptoKeyAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.CryptoKeyRights,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CryptoKeyAccessRule" /> class using the specified values. </summary> <param name="identity"> The identity to which the access rule applies. This parameter must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="cryptoKeyRights"> The cryptographic key operation to which this access rule controls access. </param> <param name="type"> The valid access control type. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeyAccessRule.#ctor(System.String,System.Security.AccessControl.CryptoKeyRights,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CryptoKeyAccessRule" /> class using the specified values. </summary> <param name="identity"> The identity to which the access rule applies. </param> <param name="cryptoKeyRights"> The cryptographic key operation to which this access rule controls access. </param> <param name="type"> The valid access control type. </param> </member> <member name="P:System.Security.AccessControl.CryptoKeyAccessRule.CryptoKeyRights"> <summary> Gets the cryptographic key operation to which this access rule controls access. </summary> <returns> The cryptographic key operation to which this access rule controls access. </returns> </member> <member name="T:System.Security.AccessControl.CryptoKeyAuditRule"> <summary> Represents an audit rule for a cryptographic key. An audit rule represents a combination of a user's identity and an access mask. An audit rule also contains information about the how the rule is inherited by child objects, how that inheritance is propagated, and for what conditions it is audited. </summary> </member> <member name="M:System.Security.AccessControl.CryptoKeyAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.CryptoKeyRights,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CryptoKeyAuditRule" /> class using the specified values. </summary> <param name="identity"> The identity to which the audit rule applies. This parameter must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="cryptoKeyRights"> The cryptographic key operation for which this audit rule generates audits. </param> <param name="flags"> The conditions that generate audits. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeyAuditRule.#ctor(System.String,System.Security.AccessControl.CryptoKeyRights,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CryptoKeyAuditRule" /> class using the specified values. </summary> <param name="identity"> The identity to which the audit rule applies. </param> <param name="cryptoKeyRights"> The cryptographic key operation for which this audit rule generates audits. </param> <param name="flags"> The conditions that generate audits. </param> </member> <member name="P:System.Security.AccessControl.CryptoKeyAuditRule.CryptoKeyRights"> <summary> Gets the cryptographic key operation for which this audit rule generates audits. </summary> <returns> The cryptographic key operation for which this audit rule generates audits. </returns> </member> <member name="T:System.Security.AccessControl.CryptoKeyRights"> <summary> Specifies the cryptographic key operation for which an authorization rule controls access or auditing. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.ReadData"> <summary> Read the key data. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.WriteData"> <summary> Write key data. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.ReadExtendedAttributes"> <summary> Read extended attributes of the key. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.WriteExtendedAttributes"> <summary> Write extended attributes of the key. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.ReadAttributes"> <summary> Read attributes of the key. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.WriteAttributes"> <summary> Write attributes of the key. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.Delete"> <summary> Delete the key. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.ReadPermissions"> <summary> Read permissions for the key. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.ChangePermissions"> <summary> Change permissions for the key. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.TakeOwnership"> <summary> Take ownership of the key. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.Synchronize"> <summary> Use the key for synchronization. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.FullControl"> <summary> Full control of the key. </summary> </member> <member name="F:System.Security.AccessControl.CryptoKeyRights.GenericAll"></member> <member name="F:System.Security.AccessControl.CryptoKeyRights.GenericExecute"></member> <member name="F:System.Security.AccessControl.CryptoKeyRights.GenericWrite"></member> <member name="F:System.Security.AccessControl.CryptoKeyRights.GenericRead"></member> <member name="T:System.Security.AccessControl.CryptoKeySecurity"> <summary> Provides the ability to control access to a cryptographic key object without direct manipulation of an Access Control List (ACL). </summary> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> class. </summary> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.#ctor(System.Security.AccessControl.CommonSecurityDescriptor)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> class by using the specified security descriptor. </summary> <param name="securityDescriptor"> The security descriptor from which to create the new <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </param> </member> <member name="P:System.Security.AccessControl.CryptoKeySecurity.AccessRightType"> <summary> Gets the <see cref="T:System.Type" /> of the securable object associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </summary> <returns> The type of the securable object associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </returns> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class with the specified values. </summary> <returns> The <see cref="T:System.Security.AccessControl.AccessRule" /> object that this method creates. </returns> <param name="identityReference"> The identity to which the access rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited"> true if this rule is inherited from a parent container. </param> <param name="inheritanceFlags"> Specifies the inheritance properties of the access rule. </param> <param name="propagationFlags"> Specifies whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="type"> Specifies the valid access control type. </param> </member> <member name="P:System.Security.AccessControl.CryptoKeySecurity.AccessRuleType"> <summary> Gets the <see cref="T:System.Type" /> of the object associated with the access rules of this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. The <see cref="T:System.Type" /> object must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <returns> The type of the object associated with the access rules of this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </returns> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.AddAccessRule(System.Security.AccessControl.CryptoKeyAccessRule)"> <summary> Adds the specified access rule to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </summary> <param name="rule"> The access rule to add. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.AddAuditRule(System.Security.AccessControl.CryptoKeyAuditRule)"> <summary> Adds the specified audit rule to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </summary> <param name="rule"> The audit rule to add. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule" /> class with the specified values. </summary> <returns> The <see cref="T:System.Security.AccessControl.AuditRule" /> object that this method creates. </returns> <param name="identityReference"> The identity to which the audit rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited">true if this rule is inherited from a parent container. </param> <param name="inheritanceFlags"> Specifies the inheritance properties of the audit rule. </param> <param name="propagationFlags"> Specifies whether inherited audit rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="flags"> Specifies the conditions for which the rule is audited. </param> </member> <member name="P:System.Security.AccessControl.CryptoKeySecurity.AuditRuleType"> <summary> Gets the <see cref="T:System.Type" /> object associated with the audit rules of this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. The <see cref="T:System.Type" /> object must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <returns> The type of the object associated with the audit rules of this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </returns> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.RemoveAccessRule(System.Security.AccessControl.CryptoKeyAccessRule)"> <summary> Removes access rules that contain the same security identifier and access mask as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </summary> <returns>true if the access rule was successfully removed; otherwise, false. </returns> <param name="rule"> The access rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.RemoveAccessRuleAll(System.Security.AccessControl.CryptoKeyAccessRule)"> <summary> Removes all access rules that have the same security identifier as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </summary> <param name="rule"> The access rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.CryptoKeyAccessRule)"> <summary> Removes all access rules that exactly match the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </summary> <param name="rule"> The access rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.RemoveAuditRule(System.Security.AccessControl.CryptoKeyAuditRule)"> <summary> Removes audit rules that contain the same security identifier and access mask as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </summary> <returns>true if the audit rule was successfully removed; otherwise, false. </returns> <param name="rule"> The audit rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.RemoveAuditRuleAll(System.Security.AccessControl.CryptoKeyAuditRule)"> <summary> Removes all audit rules that have the same security identifier as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </summary> <param name="rule"> The audit rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.CryptoKeyAuditRule)"> <summary> Removes all audit rules that exactly match the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object. </summary> <param name="rule"> The audit rule to remove. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.ResetAccessRule(System.Security.AccessControl.CryptoKeyAccessRule)"> <summary> Removes all access rules in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object and then adds the specified access rule. </summary> <param name="rule"> The access rule to reset. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.SetAccessRule(System.Security.AccessControl.CryptoKeyAccessRule)"> <summary> Removes all access rules that contain the same security identifier and qualifier as the specified access rule in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object and then adds the specified access rule. </summary> <param name="rule"> The access rule to set. </param> </member> <member name="M:System.Security.AccessControl.CryptoKeySecurity.SetAuditRule(System.Security.AccessControl.CryptoKeyAuditRule)"> <summary> Removes all audit rules that contain the same security identifier and qualifier as the specified audit rule in the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object and then adds the specified audit rule. </summary> <param name="rule"> The audit rule to set. </param> </member> <member name="T:System.Security.AccessControl.CustomAce"> <summary> Represents an Access Control Entry (ACE) that is not defined by one of the members of the <see cref="T:System.Security.AccessControl.AceType" /> enumeration. </summary> </member> <member name="M:System.Security.AccessControl.CustomAce.#ctor(System.Security.AccessControl.AceType,System.Security.AccessControl.AceFlags,System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.CustomAce" /> class. </summary> <param name="type"> Type of the new Access Control Entry (ACE). This value must be greater than <see cref="F:System.Security.AccessControl.AceType.MaxDefinedAceType" />. </param> <param name="flags"> Flags that specify information about the inheritance, inheritance propagation, and auditing conditions for the new ACE. </param> <param name="opaque"> An array of byte values that contains the data for the new ACE. This value can be null. The length of this array must not be greater than the value of the <see cref="F:System.Security.AccessControl.CustomAce.MaxOpaqueLength" /> field, and must be a multiple of four. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="type" /> parameter is not greater than <see cref="F:System.Security.AccessControl.AceType.MaxDefinedAceType" /> or the length of the <paramref name="opaque" /> array is either greater than the value of the <see cref="F:System.Security.AccessControl.CustomAce.MaxOpaqueLength" /> field or not a multiple of four. </exception> </member> <member name="P:System.Security.AccessControl.CustomAce.BinaryLength"> <summary> Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CustomAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.CustomAce.GetBinaryForm" /> method. </summary> <returns> The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CustomAce" /> object. </returns> </member> <member name="M:System.Security.AccessControl.CustomAce.GetBinaryForm(System.Byte[],System.Int32)"> <summary> Marshals the contents of the <see cref="T:System.Security.AccessControl.CustomAce" /> object into the specified byte array beginning at the specified offset. </summary> <param name="binaryForm"> The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CustomAce" /> is marshaled. </param> <param name="offset"> The offset at which to start marshaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.CustomAce" /> to be copied into <paramref name="array" />. </exception> </member> <member name="M:System.Security.AccessControl.CustomAce.GetOpaque"> <summary> Returns the opaque data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object. </summary> <returns> An array of byte values that represents the opaque data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object. </returns> </member> <member name="F:System.Security.AccessControl.CustomAce.MaxOpaqueLength"> <summary> Returns the maximum allowed length of an opaque data blob for this <see cref="T:System.Security.AccessControl.CustomAce" /> object. </summary> </member> <member name="P:System.Security.AccessControl.CustomAce.OpaqueLength"> <summary> Gets the length of the opaque data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object. </summary> <returns> The length of the opaque callback data. </returns> </member> <member name="M:System.Security.AccessControl.CustomAce.SetOpaque(System.Byte[])"> <summary> Sets the opaque callback data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object. </summary> <param name="opaque"> An array of byte values that represents the opaque callback data for this <see cref="T:System.Security.AccessControl.CustomAce" /> object. </param> </member> <member name="T:System.Security.AccessControl.DirectoryObjectSecurity"> <summary> Provides the ability to control access to directory objects without direct manipulation of Access Control Lists (ACLs). </summary> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> class. </summary> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.#ctor(System.Security.AccessControl.CommonSecurityDescriptor)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> class with the specified security descriptor. </summary> <param name="securityDescriptor"> The security descriptor to be associated with the new <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" />object. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType,System.Guid,System.Guid)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class with the specified values. </summary> <returns> The <see cref="T:System.Security.AccessControl.AccessRule" /> object that this method creates. </returns> <param name="identityReference"> The identity to which the access rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited"> true if this rule is inherited from a parent container. </param> <param name="inheritanceFlags"> Specifies the inheritance properties of the access rule. </param> <param name="propagationFlags"> Specifies whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="type"> Specifies the valid access control type. </param> <param name="objectType"> The identity of the class of objects to which the new access rule applies. </param> <param name="inheritedObjectType"> The identity of the class of child objects which can inherit the new access rule. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.AddAccessRule(System.Security.AccessControl.ObjectAccessRule)"> <summary> Adds the specified access rule to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object. </summary> <param name="rule"> The access rule to add. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.AddAuditRule(System.Security.AccessControl.ObjectAuditRule)"> <summary> Adds the specified audit rule to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object. </summary> <param name="rule"> The audit rule to add. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags,System.Guid,System.Guid)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule" /> class with the specified values. </summary> <returns> The <see cref="T:System.Security.AccessControl.AuditRule" /> object that this method creates. </returns> <param name="identityReference"> The identity to which the audit rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited">true if this rule is inherited from a parent container. </param> <param name="inheritanceFlags"> Specifies the inheritance properties of the audit rule. </param> <param name="propagationFlags"> Specifies whether inherited audit rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="flags"> Specifies the conditions for which the rule is audited. </param> <param name="objectType"> The identity of the class of objects to which the new audit rule applies. </param> <param name="inheritedObjectType"> The identity of the class of child objects which can inherit the new audit rule. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.GetAccessRules(System.Boolean,System.Boolean,System.Type)"> <summary> Gets a collection of the access rules associated with the specified security identifier. </summary> <returns> The collection of access rules associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </returns> <param name="includeExplicit">true to include access rules explicitly set for the object. </param> <param name="includeInherited">true to include inherited access rules. </param> <param name="targetType"> The security identifier for which to retrieve access rules. This must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.GetAuditRules(System.Boolean,System.Boolean,System.Type)"> <summary> Gets a collection of the audit rules associated with the specified security identifier. </summary> <returns> The collection of audit rules associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </returns> <param name="includeExplicit">true to include audit rules explicitly set for the object. </param> <param name="includeInherited">true to include inherited audit rules. </param> <param name="targetType"> The security identifier for which to retrieve audit rules. This must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.ModifyAccess(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)"> <summary> Applies the specified modification to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object. </summary> <returns>true if the DACL is successfully modified; otherwise, false. </returns> <param name="modification"> The modification to apply to the DACL. </param> <param name="rule"> The access rule to modify. </param> <param name="modified">true if the DACL is successfully modified; otherwise, false. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.ModifyAudit(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)"> <summary> Applies the specified modification to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object. </summary> <returns>true if the SACL is successfully modified; otherwise, false. </returns> <param name="modification"> The modification to apply to the SACL. </param> <param name="rule"> The audit rule to modify. </param> <param name="modified">true if the SACL is successfully modified; otherwise, false. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAccessRule(System.Security.AccessControl.ObjectAccessRule)"> <summary> Removes access rules that contain the same security identifier and access mask as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object. </summary> <returns>true if the access rule was successfully removed; otherwise, false. </returns> <param name="rule"> The access rule to remove. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAccessRuleAll(System.Security.AccessControl.ObjectAccessRule)"> <summary> Removes all access rules that have the same security identifier as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object. </summary> <param name="rule"> The access rule to remove. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.ObjectAccessRule)"> <summary> Removes all access rules that exactly match the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object. </summary> <param name="rule"> The access rule to remove. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAuditRule(System.Security.AccessControl.ObjectAuditRule)"> <summary> Removes audit rules that contain the same security identifier and access mask as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object. </summary> <returns>true if the audit rule was successfully removed; otherwise, false. </returns> <param name="rule"> The audit rule to remove. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAuditRuleAll(System.Security.AccessControl.ObjectAuditRule)"> <summary> Removes all audit rules that have the same security identifier as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object. </summary> <param name="rule"> The audit rule to remove. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.ObjectAuditRule)"> <summary> Removes all audit rules that exactly match the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object. </summary> <param name="rule"> The audit rule to remove. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.ResetAccessRule(System.Security.AccessControl.ObjectAccessRule)"> <summary> Removes all access rules in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object and then adds the specified access rule. </summary> <param name="rule"> The access rule to reset. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.SetAccessRule(System.Security.AccessControl.ObjectAccessRule)"> <summary> Removes all access rules that contain the same security identifier and qualifier as the specified access rule in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object and then adds the specified access rule. </summary> <param name="rule"> The access rule to set. </param> </member> <member name="M:System.Security.AccessControl.DirectoryObjectSecurity.SetAuditRule(System.Security.AccessControl.ObjectAuditRule)"> <summary> Removes all audit rules that contain the same security identifier and qualifier as the specified audit rule in the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object and then adds the specified audit rule. </summary> <param name="rule"> The audit rule to set. </param> </member> <member name="T:System.Security.AccessControl.DirectorySecurity"> <summary> Represents the access control and audit security for a directory. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.DirectorySecurity.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.DirectorySecurity" /> class. </summary> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> </member> <member name="M:System.Security.AccessControl.DirectorySecurity.#ctor(System.String,System.Security.AccessControl.AccessControlSections)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.DirectorySecurity" /> class from a specified directory using the specified values of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration. </summary> <param name="name"> The location of a directory to create a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object from. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> values that specifies the type of access control list (ACL) information to retrieve. </param> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in the <paramref name="name" /> parameter was not found. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the directory. </exception> <exception cref="T:System.NotSupportedException"> The <paramref name="name" /> parameter is in an invalid format. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.Security.AccessControl.PrivilegeNotHeldException"> The current system account does not have administrative privileges. </exception> <exception cref="T:System.SystemException"> The directory could not be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="name" /> parameter specified a directory that is read-only. -or- This operation is not supported on the current platform. -or- The caller does not have the required permission. </exception> </member> <member name="T:System.Security.AccessControl.DiscretionaryAcl"> <summary> Represents a Discretionary Access Control List (DACL). </summary> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.#ctor(System.Boolean,System.Boolean,System.Byte,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> class with the specified values. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a container. </param> <param name="isDS">true if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a directory object Access Control List (ACL). </param> <param name="revision"> The revision level of the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. </param> <param name="capacity"> The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object can contain. This number is to be used only as a hint. </param> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.#ctor(System.Boolean,System.Boolean,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> class with the specified values. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a container. </param> <param name="isDS">true if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a directory object Access Control List (ACL). </param> <param name="capacity"> The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object can contain. This number is to be used only as a hint. </param> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.RawAcl)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> class with the specified values from the specified <see cref="T:System.Security.AccessControl.RawAcl" /> object. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a container. </param> <param name="isDS">true if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a directory object Access Control List (ACL). </param> <param name="rawAcl"> The underlying <see cref="T:System.Security.AccessControl.RawAcl" /> object for the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Specify null to create an empty ACL. </param> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.AddAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)"> <summary> Adds an Access Control Entry (ACE) with the specified settings to the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. </summary> <param name="accessType"> The type of access control (allow or deny) to add. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an ACE. </param> <param name="accessMask"> The access rule for the new ACE. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the new ACE. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the new ACE. </param> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.AddAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)"> <summary> Adds an Access Control Entry (ACE) with the specified settings to the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type for the new ACE. </summary> <param name="accessType"> The type of access control (allow or deny) to add. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an ACE. </param> <param name="accessMask"> The access rule for the new ACE. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the new ACE. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the new ACE. </param> <param name="objectFlags"> Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-null values. </param> <param name="objectType"> The identity of the class of objects to which the new ACE applies. </param> <param name="inheritedObjectType"> The identity of the class of child objects which can inherit the new ACE. </param> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)"> <summary> Removes the specified access control rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. </summary> <returns>true if this method successfully removes the specified access; otherwise, false. </returns> <param name="accessType"> The type of access control (allow or deny) to remove. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an access control rule. </param> <param name="accessMask"> The access mask for the rule to be removed. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the rule to be removed. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the rule to be removed. </param> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)"> <summary> Removes the specified access control rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type. </summary> <returns>true if this method successfully removes the specified access; otherwise, false. </returns> <param name="accessType"> The type of access control (allow or deny) to remove. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an access control rule. </param> <param name="accessMask"> The access mask for the access control rule to be removed. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the access control rule to be removed. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the access control rule to be removed. </param> <param name="objectFlags"> Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-null values. </param> <param name="objectType"> The identity of the class of objects to which the removed access control rule applies. </param> <param name="inheritedObjectType"> The identity of the class of child objects which can inherit the removed access control rule. </param> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccessSpecific(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)"> <summary> Removes the specified Access Control Entry (ACE) from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. </summary> <param name="accessType"> The type of access control (allow or deny) to remove. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an ACE. </param> <param name="accessMask"> The access mask for the ACE to be removed. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the ACE to be removed. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the ACE to be removed. </param> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccessSpecific(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)"> <summary> Removes the specified Access Control Entry (ACE) from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type for the ACE to be removed. </summary> <param name="accessType"> The type of access control (allow or deny) to remove. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an ACE. </param> <param name="accessMask"> The access mask for the ACE to be removed. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the ACE to be removed. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the ACE to be removed. </param> <param name="objectFlags"> Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-null values. </param> <param name="objectType"> The identity of the class of objects to which the removed ACE applies. </param> <param name="inheritedObjectType"> The identity of the class of child objects which can inherit the removed ACE. </param> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.SetAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)"> <summary> Sets the specified access control for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <param name="accessType"> The type of access control (allow or deny) to set. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an ACE. </param> <param name="accessMask"> The access rule for the new ACE. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the new ACE. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the new ACE. </param> </member> <member name="M:System.Security.AccessControl.DiscretionaryAcl.SetAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)"> <summary> Sets the specified access control for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <param name="accessType"> The type of access control (allow or deny) to set. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an ACE. </param> <param name="accessMask"> The access rule for the new ACE. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the new ACE. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the new ACE. </param> <param name="objectFlags"> Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-null values. </param> <param name="objectType"> The identity of the class of objects to which the new ACE applies. </param> <param name="inheritedObjectType"> The identity of the class of child objects which can inherit the new ACE. </param> </member> <member name="T:System.Security.AccessControl.EventWaitHandleAccessRule"> <summary> Represents a set of access rights allowed or denied for a user or group. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.EventWaitHandleAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.EventWaitHandleRights,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.EventWaitHandleAccessRule" /> class, specifying the user or group the rule applies to, the access rights, and whether the specified access rights are allowed or denied. </summary> <param name="identity"> The user or group the rule applies to. Must be of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> or a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="eventRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.EventWaitHandleRights" /> values specifying the rights allowed or denied. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values specifying whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="eventRights" /> specifies an invalid value. -or- <paramref name="type" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identity" /> is null. -or- <paramref name="eventRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleAccessRule.#ctor(System.String,System.Security.AccessControl.EventWaitHandleRights,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.EventWaitHandleAccessRule" /> class, specifying the name of the user or group the rule applies to, the access rights, and whether the specified access rights are allowed or denied. </summary> <param name="identity"> The name of the user or group the rule applies to. </param> <param name="eventRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.EventWaitHandleRights" /> values specifying the rights allowed or denied. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values specifying whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="eventRights" /> specifies an invalid value. -or- <paramref name="type" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="eventRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is null. -or- <paramref name="identity" /> is a zero-length string. -or- <paramref name="identity" /> is longer than 512 characters. </exception> </member> <member name="P:System.Security.AccessControl.EventWaitHandleAccessRule.EventWaitHandleRights"> <summary> Gets the rights allowed or denied by the access rule. </summary> <returns> A bitwise combination of <see cref="T:System.Security.AccessControl.EventWaitHandleRights" /> values indicating the rights allowed or denied by the access rule. </returns> </member> <member name="T:System.Security.AccessControl.EventWaitHandleAuditRule"> <summary> Represents a set of access rights to be audited for a user or group. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.EventWaitHandleAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.EventWaitHandleRights,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.EventWaitHandleAuditRule" /> class, specifying the user or group to audit, the rights to audit, and whether to audit success, failure, or both. </summary> <param name="identity"> The user or group the rule applies to. Must be of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> or a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="eventRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.EventWaitHandleRights" /> values specifying the kinds of access to audit. </param> <param name="flags"> A bitwise combination of <see cref="T:System.Security.AccessControl.AuditFlags" /> values specifying whether to audit success, failure, or both. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="eventRights" /> specifies an invalid value. -or- <paramref name="flags" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identity" /> is null. -or- <paramref name="eventRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="flags" /> is <see cref="F:System.Security.AccessControl.AuditFlags.None" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="P:System.Security.AccessControl.EventWaitHandleAuditRule.EventWaitHandleRights"> <summary> Gets the access rights affected by the audit rule. </summary> <returns> A bitwise combination of <see cref="T:System.Security.AccessControl.EventWaitHandleRights" /> values that indicates the rights affected by the audit rule. </returns> </member> <member name="T:System.Security.AccessControl.EventWaitHandleRights"> <summary> Specifies the access control rights that can be applied to named system event objects. </summary> </member> <member name="F:System.Security.AccessControl.EventWaitHandleRights.Modify"> <summary> The right to set or reset the signaled state of a named event. </summary> </member> <member name="F:System.Security.AccessControl.EventWaitHandleRights.Delete"> <summary> The right to delete a named event. </summary> </member> <member name="F:System.Security.AccessControl.EventWaitHandleRights.ReadPermissions"> <summary> The right to open and copy the access rules and audit rules for a named event. </summary> </member> <member name="F:System.Security.AccessControl.EventWaitHandleRights.ChangePermissions"> <summary> The right to change the security and audit rules associated with a named event. </summary> </member> <member name="F:System.Security.AccessControl.EventWaitHandleRights.TakeOwnership"> <summary> The right to change the owner of a named event. </summary> </member> <member name="F:System.Security.AccessControl.EventWaitHandleRights.Synchronize"> <summary> The right to wait on a named event. </summary> </member> <member name="F:System.Security.AccessControl.EventWaitHandleRights.FullControl"> <summary> The right to exert full control over a named event, and to modify its access rules and audit rules. </summary> </member> <member name="T:System.Security.AccessControl.EventWaitHandleSecurity"> <summary> Represents the Windows access control security applied to a named system wait handle. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.EventWaitHandleSecurity" /> class with default values. </summary> <exception cref="T:System.NotSupportedException"> This class is not supported on Windows 98 or Windows Millennium Edition. </exception> </member> <member name="P:System.Security.AccessControl.EventWaitHandleSecurity.AccessRightType"> <summary> Gets the enumeration type that the <see cref="T:System.Security.AccessControl.EventWaitHandleSecurity" /> class uses to represent access rights. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.EventWaitHandleRights" /> enumeration. </returns> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Creates a new access control rule for the specified user, with the specified access rights, access control, and flags. </summary> <returns> An <see cref="T:System.Security.AccessControl.EventWaitHandleAccessRule" /> object representing the specified rights for the specified user. </returns> <param name="identityReference"> An <see cref="T:System.Security.Principal.IdentityReference" /> that identifies the user or group the rule applies to. </param> <param name="accessMask"> A bitwise combination of <see cref="T:System.Security.AccessControl.EventWaitHandleRights" /> values specifying the access rights to allow or deny, cast to an integer. </param> <param name="isInherited"> Meaningless for named wait handles, because they have no hierarchy. </param> <param name="inheritanceFlags"> Meaningless for named wait handles, because they have no hierarchy. </param> <param name="propagationFlags"> Meaningless for named wait handles, because they have no hierarchy. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values specifying whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="type" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identityReference" /> is null. -or- <paramref name="accessMask" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identityReference" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="P:System.Security.AccessControl.EventWaitHandleSecurity.AccessRuleType"> <summary> Gets the type that the <see cref="T:System.Security.AccessControl.EventWaitHandleSecurity" /> class uses to represent access rules. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.EventWaitHandleAccessRule" /> class. </returns> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.AddAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)"> <summary> Searches for a matching access control rule with which the new rule can be merged. If none are found, adds the new rule. </summary> <param name="rule"> The access control rule to add. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.AddAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule)"> <summary> Searches for an audit rule with which the new rule can be merged. If none are found, adds the new rule. </summary> <param name="rule"> The audit rule to add. The user specified by this rule determines the search. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Creates a new audit rule, specifying the user the rule applies to, the access rights to audit, and the outcome that triggers the audit rule. </summary> <returns> An <see cref="T:System.Security.AccessControl.EventWaitHandleAuditRule" /> object representing the specified audit rule for the specified user. The return type of the method is the base class, <see cref="T:System.Security.AccessControl.AuditRule" />, but the return value can be cast safely to the derived class. </returns> <param name="identityReference"> An <see cref="T:System.Security.Principal.IdentityReference" /> that identifies the user or group the rule applies to. </param> <param name="accessMask"> A bitwise combination of <see cref="T:System.Security.AccessControl.EventWaitHandleRights" /> values specifying the access rights to audit, cast to an integer. </param> <param name="isInherited"> Meaningless for named wait handles, because they have no hierarchy. </param> <param name="inheritanceFlags"> Meaningless for named wait handles, because they have no hierarchy. </param> <param name="propagationFlags"> Meaningless for named wait handles, because they have no hierarchy. </param> <param name="flags"> A bitwise combination of <see cref="T:System.Security.AccessControl.AuditFlags" /> values specifying whether to audit successful access, failed access, or both. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="flags" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identityReference" /> is null. -or- <paramref name="accessMask" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identityReference" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="P:System.Security.AccessControl.EventWaitHandleSecurity.AuditRuleType"> <summary> Gets the type that the <see cref="T:System.Security.AccessControl.EventWaitHandleSecurity" /> class uses to represent audit rules. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.EventWaitHandleAuditRule" /> class. </returns> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)"> <summary> Searches for an access control rule with the same user and <see cref="T:System.Security.AccessControl.AccessControlType" /> (allow or deny) as the specified access rule, and with compatible inheritance and propagation flags; if such a rule is found, the rights contained in the specified access rule are removed from it. </summary> <returns>true if a compatible rule is found; otherwise, false. </returns> <param name="rule"> An <see cref="T:System.Security.AccessControl.EventWaitHandleAccessRule" /> that specifies the user and <see cref="T:System.Security.AccessControl.AccessControlType" /> to search for, and a set of inheritance and propagation flags that a matching rule, if found, must be compatible with. Specifies the rights to remove from the compatible rule, if found. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAccessRuleAll(System.Security.AccessControl.EventWaitHandleAccessRule)"> <summary> Searches for all access control rules with the same user and <see cref="T:System.Security.AccessControl.AccessControlType" /> (allow or deny) as the specified rule and, if found, removes them. </summary> <param name="rule"> An <see cref="T:System.Security.AccessControl.EventWaitHandleAccessRule" /> that specifies the user and <see cref="T:System.Security.AccessControl.AccessControlType" /> to search for. Any rights specified by this rule are ignored. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.EventWaitHandleAccessRule)"> <summary> Searches for an access control rule that exactly matches the specified rule and, if found, removes it. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.EventWaitHandleAccessRule" /> to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule)"> <summary> Searches for an audit rule with the same user as the specified rule, and with compatible inheritance and propagation flags; if a compatible rule is found, the rights contained in the specified rule are removed from it. </summary> <returns>true if a compatible rule is found; otherwise, false. </returns> <param name="rule"> An <see cref="T:System.Security.AccessControl.EventWaitHandleAuditRule" /> that specifies the user to search for and a set of inheritance and propagation flags that a matching rule, if found, must be compatible with. Specifies the rights to remove from the compatible rule, if found. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAuditRuleAll(System.Security.AccessControl.EventWaitHandleAuditRule)"> <summary> Searches for all audit rules with the same user as the specified rule and, if found, removes them. </summary> <param name="rule"> An <see cref="T:System.Security.AccessControl.EventWaitHandleAuditRule" /> that specifies the user to search for. Any rights specified by this rule are ignored. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.EventWaitHandleAuditRule)"> <summary> Searches for an audit rule that exactly matches the specified rule and, if found, removes it. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.EventWaitHandleAuditRule" /> to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.ResetAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)"> <summary> Removes all access control rules with the same user as the specified rule, regardless of <see cref="T:System.Security.AccessControl.AccessControlType" />, and then adds the specified rule. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.EventWaitHandleAccessRule" /> to add. The user specified by this rule determines the rules to remove before this rule is added. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.SetAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule)"> <summary> Removes all access control rules with the same user and <see cref="T:System.Security.AccessControl.AccessControlType" /> (allow or deny) as the specified rule, and then adds the specified rule. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.EventWaitHandleAccessRule" /> to add. The user and <see cref="T:System.Security.AccessControl.AccessControlType" /> of this rule determine the rules to remove before this rule is added. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.EventWaitHandleSecurity.SetAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule)"> <summary> Removes all audit rules with the same user as the specified rule, regardless of the <see cref="T:System.Security.AccessControl.AuditFlags" /> value, and then adds the specified rule. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.EventWaitHandleAuditRule" /> to add. The user specified by this rule determines the rules to remove before this rule is added. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="T:System.Security.AccessControl.FileSecurity"> <summary> Represents the access control and audit security for a file. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.FileSecurity.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSecurity" /> class. </summary> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> </member> <member name="M:System.Security.AccessControl.FileSecurity.#ctor(System.String,System.Security.AccessControl.AccessControlSections)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSecurity" /> class from a specified file using the specified values of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration. </summary> <param name="fileName"> The location of a file to create a <see cref="T:System.Security.AccessControl.FileSecurity" /> object from. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> values that specifies the type of access control list (ACL) information to retrieve. </param> <exception cref="T:System.ArgumentException"> The <paramref name="fileName" /> parameter is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception> <exception cref="T:System.IO.DirectoryNotFoundException"> The specified path is invalid, (for example, it is on an unmapped drive). </exception> <exception cref="T:System.IO.FileNotFoundException"> The file specified in the <paramref name="fileName" /> parameter was not found. </exception> <exception cref="T:System.IO.IOException"> An I/O error occurred while opening the file. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="path" /> is in an invalid format. </exception> <exception cref="T:System.Runtime.InteropServices.SEHException"> The <paramref name="fileName" /> parameter is null. </exception> <exception cref="T:System.PlatformNotSupportedException"> The current operating system is not Microsoft Windows 2000 or later. </exception> <exception cref="T:System.IO.PathTooLongException"> The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception> <exception cref="T:System.Security.AccessControl.PrivilegeNotHeldException"> The current system account does not have administrative privileges. </exception> <exception cref="T:System.SystemException"> The file could not be found. </exception> <exception cref="T:System.UnauthorizedAccessException"> The <paramref name="fileName" /> parameter specified a file that is read-only. -or- This operation is not supported on the current platform. -or- The <paramref name="fileName" /> parameter specified a directory. -or- The caller does not have the required permission. </exception> </member> <member name="T:System.Security.AccessControl.FileSystemAccessRule"> <summary> Represents an abstraction of an access control entry (ACE) that defines an access rule for a file or directory. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.FileSystemAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class using a reference to a user account, a value that specifies the type of operation associated with the access rule, and a value that specifies whether to allow or deny the operation. </summary> <param name="identity"> An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account. </param> <param name="fileSystemRights"> One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the access rule. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation. </param> <exception cref="T:System.ArgumentException"> The <paramref name="identity" /> parameter is not an <see cref="T:System.Security.Principal.IdentityReference" /> object. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="identity" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> An incorrect enumeration was passed to the <paramref name="type " />parameter. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class using a reference to a user account, a value that specifies the type of operation associated with the access rule, a value that determines how rights are inherited, a value that determines how rights are propagated, and a value that specifies whether to allow or deny the operation. </summary> <param name="identity"> An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account. </param> <param name="fileSystemRights"> One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the access rule. </param> <param name="inheritanceFlags"> One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how access masks are propagated to child objects. </param> <param name="propagationFlags"> One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how Access Control Entries (ACEs) are propagated to child objects. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation. </param> <exception cref="T:System.ArgumentException"> The <paramref name="identity" /> parameter is not an <see cref="T:System.Security.Principal.IdentityReference" /> object. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="identity" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> An incorrect enumeration was passed to the <paramref name="type " />parameter. -or- An incorrect enumeration was passed to the <paramref name="inheritanceFlags " />parameter. -or- An incorrect enumeration was passed to the <paramref name="propagationFlags " />parameter. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemAccessRule.#ctor(System.String,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class using the name of a user account, a value that specifies the type of operation associated with the access rule, and a value that describes whether to allow or deny the operation. </summary> <param name="identity"> The name of a user account. </param> <param name="fileSystemRights"> One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the access rule. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="identity" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> An incorrect enumeration was passed to the <paramref name="type " />parameter. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemAccessRule.#ctor(System.String,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class using the name of a user account, a value that specifies the type of operation associated with the access rule, a value that determines how rights are inherited, a value that determines how rights are propagated, and a value that specifies whether to allow or deny the operation. </summary> <param name="identity"> The name of a user account. </param> <param name="fileSystemRights"> One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the access rule. </param> <param name="inheritanceFlags"> One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how access masks are propagated to child objects. </param> <param name="propagationFlags"> One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how Access Control Entries (ACEs) are propagated to child objects. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="identity" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> An incorrect enumeration was passed to the <paramref name="type " />parameter. -or- An incorrect enumeration was passed to the <paramref name="inheritanceFlags " />parameter. -or- An incorrect enumeration was passed to the <paramref name="propagationFlags " />parameter. </exception> </member> <member name="P:System.Security.AccessControl.FileSystemAccessRule.FileSystemRights"> <summary> Gets the <see cref="T:System.Security.AccessControl.FileSystemRights" /> flags associated with the current <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object. </summary> <returns> The <see cref="T:System.Security.AccessControl.FileSystemRights" /> flags associated with the current <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object. </returns> </member> <member name="T:System.Security.AccessControl.FileSystemAuditRule"> <summary> Represents an abstraction of an access control entry (ACE) that defines an audit rule for a file or directory. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.FileSystemAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class using a reference to a user account, a value that specifies the type of operation associated with the audit rule, and a value that specifies when to perform auditing. </summary> <param name="identity"> An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account. </param> <param name="fileSystemRights"> One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the audit rule. </param> <param name="flags"> One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies when to perform auditing. </param> <exception cref="T:System.ArgumentException"> The <paramref name="identity" /> parameter is not an <see cref="T:System.Security.Principal.IdentityReference" /> object. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="identity" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> An incorrect enumeration was passed to the <paramref name="flags" /> parameter. -or- The <see cref="F:System.Security.AccessControl.AuditFlags.None" /> value was passed to the <paramref name="flags" /> parameter. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class using the name of a reference to a user account, a value that specifies the type of operation associated with the audit rule, a value that determines how rights are inherited, a value that determines how rights are propagated, and a value that specifies when to perform auditing. </summary> <param name="identity"> An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account. </param> <param name="fileSystemRights"> One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the audit rule. </param> <param name="inheritanceFlags"> One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how access masks are propagated to child objects. </param> <param name="propagationFlags"> One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how Access Control Entries (ACEs) are propagated to child objects. </param> <param name="flags"> One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies when to perform auditing. </param> <exception cref="T:System.ArgumentException"> The <paramref name="identity" /> parameter is not an <see cref="T:System.Security.Principal.IdentityReference" /> object. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="identity" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> An incorrect enumeration was passed to the <paramref name="flags" /> parameter. -or- The <see cref="F:System.Security.AccessControl.AuditFlags.None" /> value was passed to the <paramref name="flags" /> parameter. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemAuditRule.#ctor(System.String,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class using a user account name, a value that specifies the type of operation associated with the audit rule, and a value that specifies when to perform auditing. </summary> <param name="identity"> The name of a user account. </param> <param name="fileSystemRights"> One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the audit rule. </param> <param name="flags"> One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies when to perform auditing. </param> <exception cref="T:System.ArgumentOutOfRangeException"> An incorrect enumeration was passed to the <paramref name="flags" /> parameter. -or- The <see cref="F:System.Security.AccessControl.AuditFlags.None" /> value was passed to the <paramref name="flags" /> parameter. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemAuditRule.#ctor(System.String,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class using the name of a user account, a value that specifies the type of operation associated with the audit rule, a value that determines how rights are inherited, a value that determines how rights are propagated, and a value that specifies when to perform auditing. </summary> <param name="identity"> The name of a user account. </param> <param name="fileSystemRights"> One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the audit rule. </param> <param name="inheritanceFlags"> One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how access masks are propagated to child objects. </param> <param name="propagationFlags"> One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how Access Control Entries (ACEs) are propagated to child objects. </param> <param name="flags"> One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies when to perform auditing. </param> </member> <member name="P:System.Security.AccessControl.FileSystemAuditRule.FileSystemRights"> <summary> Gets the <see cref="T:System.Security.AccessControl.FileSystemRights" /> flags associated with the current <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object. </summary> <returns> The <see cref="T:System.Security.AccessControl.FileSystemRights" /> flags associated with the current <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object. </returns> </member> <member name="T:System.Security.AccessControl.FileSystemRights"> <summary> Defines the access rights to use when creating access and audit rules. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.ReadData"> <summary> Specifies the right to open and copy a file or folder. This does not include the right to read file system attributes, extended file system attributes, or access and audit rules. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.ListDirectory"> <summary> Specifies the right to read the contents of a directory. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.WriteData"> <summary> Specifies the right to open and write to a file or folder. This does not include the right to open and write file system attributes, extended file system attributes, or access and audit rules. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.CreateFiles"> <summary> Specifies the right to create a file. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.AppendData"> <summary> Specifies the right to append data to the end of a file. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.CreateDirectories"> <summary> Specifies the right to create a folder. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.ReadExtendedAttributes"> <summary> Specifies the right to open and copy extended file system attributes from a folder or file. For example, this value specifies the right to view author and content information. This does not include the right to read data, file system attributes, or access and audit rules. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.WriteExtendedAttributes"> <summary> Specifies the right to open and write extended file system attributes to a folder or file. This does not include the ability to write data, attributes, or access and audit rules. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.ExecuteFile"> <summary> Specifies the right to run an application file. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.Traverse"> <summary> Specifies the right to list the contents of a folder and to run applications contained within that folder. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.DeleteSubdirectoriesAndFiles"> <summary> Specifies the right to delete a folder and any files contained within that folder. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.ReadAttributes"> <summary> Specifies the right to open and copy file system attributes from a folder or file. For example, this value specifies the right to view the file creation or modified date. This does not include the right to read data, extended file system attributes, or access and audit rules. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.WriteAttributes"> <summary> Specifies the right to open and write file system attributes to a folder or file. This does not include the ability to write data, extended attributes, or access and audit rules. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.Delete"> <summary> Specifies the right to delete a folder or file. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.ReadPermissions"> <summary> Specifies the right to open and copy access and audit rules from a folder or file. This does not include the right to read data, file system attributes, and extended file system attributes. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.ChangePermissions"> <summary> Specifies the right to change the security and audit rules associated with a file or folder. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.TakeOwnership"> <summary> Specifies the right to change the owner of a folder or file. Note that owners of a resource have full access to that resource. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.Synchronize"> <summary> Specifies whether the application can wait for a file handle to synchronize with the completion of an I/O operation. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.FullControl"> <summary> Specifies the right to exert full control over a folder or file, and to modify access control and audit rules. This value represents the right to do anything with a file and is the combination of all rights in this enumeration. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.Read"> <summary> Specifies the right to open and copy folders or files as read-only. This right includes the <see cref="F:System.Security.AccessControl.FileSystemRights.ReadData" /> right, <see cref="F:System.Security.AccessControl.FileSystemRights.ReadExtendedAttributes" /> right, <see cref="F:System.Security.AccessControl.FileSystemRights.ReadAttributes" /> right, and <see cref="F:System.Security.AccessControl.FileSystemRights.ReadPermissions" /> right. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.ReadAndExecute"> <summary> Specifies the right to open and copy folders or files as read-only, and to run application files. This right includes the <see cref="F:System.Security.AccessControl.FileSystemRights.Read" /> right and the <see cref="F:System.Security.AccessControl.FileSystemRights.ExecuteFile" /> right. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.Write"> <summary> Specifies the right to create folders and files, and to add or remove data from files. This right includes the <see cref="F:System.Security.AccessControl.FileSystemRights.WriteData" /> right, <see cref="F:System.Security.AccessControl.FileSystemRights.AppendData" /> right, <see cref="F:System.Security.AccessControl.FileSystemRights.WriteExtendedAttributes" /> right, and <see cref="F:System.Security.AccessControl.FileSystemRights.WriteAttributes" /> right. </summary> </member> <member name="F:System.Security.AccessControl.FileSystemRights.Modify"> <summary> Specifies the right to read, write, list folder contents, delete folders and files, and run application files. This right includes the <see cref="F:System.Security.AccessControl.FileSystemRights.ReadAndExecute" /> right, the <see cref="F:System.Security.AccessControl.FileSystemRights.Write" /> right, and the <see cref="F:System.Security.AccessControl.FileSystemRights.Delete" /> right. </summary> </member> <member name="T:System.Security.AccessControl.FileSystemSecurity"> <summary> Represents the access control and audit security for a file or directory. </summary> </member> <member name="P:System.Security.AccessControl.FileSystemSecurity.AccessRightType"> <summary> Gets the enumeration that the <see cref="T:System.Security.AccessControl.FileSystemSecurity" /> class uses to represent access rights. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.FileSystemRights" /> enumeration. </returns> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class that represents a new access control rule for the specified user, with the specified access rights, access control, and flags. </summary> <returns> A new <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that represents a new access control rule for the specified user, with the specified access rights, access control, and flags. </returns> <param name="identityReference"> An <see cref="T:System.Security.Principal.IdentityReference" /> object that represents a user account. </param> <param name="accessMask"> An integer that specifies an access type. </param> <param name="isInherited">true if the access rule is inherited; otherwise, false. </param> <param name="inheritanceFlags"> One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how to propagate access masks to child objects. </param> <param name="propagationFlags"> One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how to propagate Access Control Entries (ACEs) to child objects. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether access is allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="type" /> parameters specify an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="identityReference" /> parameter is null. -or- The <paramref name="accessMask" /> parameter is zero. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="identityReference" /> parameter is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="P:System.Security.AccessControl.FileSystemSecurity.AccessRuleType"> <summary> Gets the enumeration that the <see cref="T:System.Security.AccessControl.FileSystemSecurity" /> class uses to represent access rules. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class. </returns> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.AddAccessRule(System.Security.AccessControl.FileSystemAccessRule)"> <summary> Adds the specified access control list (ACL) permission to the current file or directory. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that represents an access control list (ACL) permission to add to a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.AddAuditRule(System.Security.AccessControl.FileSystemAuditRule)"> <summary> Adds the specified audit rule to the current file or directory. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object that represents an audit rule to add to a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class representing the specified audit rule for the specified user. </summary> <returns> A new <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object representing the specified audit rule for the specified user. </returns> <param name="identityReference"> An <see cref="T:System.Security.Principal.IdentityReference" /> object that represents a user account. </param> <param name="accessMask"> An integer that specifies an access type. </param> <param name="isInherited">true if the access rule is inherited; otherwise, false. </param> <param name="inheritanceFlags"> One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how to propagate access masks to child objects. </param> <param name="propagationFlags"> One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how to propagate Access Control Entries (ACEs) to child objects. </param> <param name="flags"> One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies the type of auditing to perform. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="flags" /> properties specify an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="identityReference" /> property is null. -or- The <paramref name="accessMask" /> property is zero. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="identityReference" /> property is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="P:System.Security.AccessControl.FileSystemSecurity.AuditRuleType"> <summary> Gets the type that the <see cref="T:System.Security.AccessControl.FileSystemSecurity" /> class uses to represent audit rules. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class. </returns> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAccessRule(System.Security.AccessControl.FileSystemAccessRule)"> <summary> Removes all matching allow or deny access control list (ACL) permissions from the current file or directory. </summary> <returns>true if the access rule was removed; otherwise, false. </returns> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that represents an access control list (ACL) permission to remove from a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAccessRuleAll(System.Security.AccessControl.FileSystemAccessRule)"> <summary> Removes all access control list (ACL) permissions for the specified user from the current file or directory. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that specifies a user whose access control list (ACL) permissions should be removed from a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.FileSystemAccessRule)"> <summary> Removes a single matching allow or deny access control list (ACL) permission from the current file or directory. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that specifies a user whose access control list (ACL) permissions should be removed from a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAuditRule(System.Security.AccessControl.FileSystemAuditRule)"> <summary> Removes all matching allow or deny audit rules from the current file or directory. </summary> <returns>true if the audit rule was removed; otherwise, false</returns> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object that represents an audit rule to remove from a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAuditRuleAll(System.Security.AccessControl.FileSystemAuditRule)"> <summary> Removes all audit rules for the specified user from the current file or directory. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object that specifies a user whose audit rules should be removed from a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.FileSystemAuditRule)"> <summary> Removes a single matching allow or deny audit rule from the current file or directory. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object that represents an audit rule to remove from a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.ResetAccessRule(System.Security.AccessControl.FileSystemAccessRule)"> <summary> Adds the specified access control list (ACL) permission to the current file or directory and removes all matching ACL permissions. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that represents an access control list (ACL) permission to add to a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.SetAccessRule(System.Security.AccessControl.FileSystemAccessRule)"> <summary> Sets the specified access control list (ACL) permission for the current file or directory. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that represents an access control list (ACL) permission to set for a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="M:System.Security.AccessControl.FileSystemSecurity.SetAuditRule(System.Security.AccessControl.FileSystemAuditRule)"> <summary> Sets the specified audit rule for the current file or directory. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object that represents an audit rule to set for a file or directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rule" /> parameter is null. </exception> </member> <member name="T:System.Security.AccessControl.GenericAce"> <summary> Represents an Access Control Entry (ACE), and is the base class for all other ACE classes. </summary> </member> <member name="P:System.Security.AccessControl.GenericAce.AceFlags"> <summary> Gets or sets the <see cref="T:System.Security.AccessControl.AceFlags" /> associated with this <see cref="T:System.Security.AccessControl.GenericAce" /> object. </summary> <returns> The <see cref="T:System.Security.AccessControl.AceFlags" /> associated with this <see cref="T:System.Security.AccessControl.GenericAce" /> object. </returns> </member> <member name="P:System.Security.AccessControl.GenericAce.AceType"> <summary> Gets the type of this Access Control Entry (ACE). </summary> <returns> The type of this ACE. </returns> </member> <member name="P:System.Security.AccessControl.GenericAce.AuditFlags"> <summary> Gets the audit information associated with this Access Control Entry (ACE). </summary> <returns> The audit information associated with this Access Control Entry (ACE). </returns> </member> <member name="P:System.Security.AccessControl.GenericAce.BinaryLength"> <summary> Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.GenericAce.GetBinaryForm" /> method. </summary> <returns> The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAce" /> object. </returns> </member> <member name="M:System.Security.AccessControl.GenericAce.Copy"> <summary> Creates a deep copy of this Access Control Entry (ACE). </summary> <returns> The <see cref="T:System.Security.AccessControl.GenericAce" /> object that this method creates. </returns> </member> <member name="M:System.Security.AccessControl.GenericAce.CreateFromBinaryForm(System.Byte[],System.Int32)"> <summary> Creates a <see cref="T:System.Security.AccessControl.GenericAce" /> object from the specified binary data. </summary> <returns> The <see cref="T:System.Security.AccessControl.GenericAce" /> object this method creates. </returns> <param name="binaryForm"> The binary data from which to create the new <see cref="T:System.Security.AccessControl.GenericAce" /> object. </param> <param name="offset"> The offset at which to begin unmarshaling. </param> </member> <member name="M:System.Security.AccessControl.GenericAce.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Security.AccessControl.GenericAce" /> object is equal to the current <see cref="T:System.Security.AccessControl.GenericAce" /> object. </summary> <returns>true if the specified <see cref="T:System.Security.AccessControl.GenericAce" /> object is equal to the current <see cref="T:System.Security.AccessControl.GenericAce" /> object; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Security.AccessControl.GenericAce" /> object to compare to the current <see cref="T:System.Security.AccessControl.GenericAce" /> object. </param> </member> <member name="M:System.Security.AccessControl.GenericAce.GetBinaryForm(System.Byte[],System.Int32)"> <summary> Marshals the contents of the <see cref="T:System.Security.AccessControl.GenericAce" /> object into the specified byte array beginning at the specified offset. </summary> <param name="binaryForm"> The byte array into which the contents of the <see cref="T:System.Security.AccessControl.GenericAce" /> is marshaled. </param> <param name="offset"> The offset at which to start marshaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.GenericAcl" /> to be copied into <paramref name="array" />. </exception> </member> <member name="M:System.Security.AccessControl.GenericAce.GetHashCode"> <summary> Serves as a hash function for the <see cref="T:System.Security.AccessControl.GenericAce" /> class. The <see cref="M:System.Security.AccessControl.GenericAce.GetHashCode" /> method is suitable for use in hashing algorithms and data structures like a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Security.AccessControl.GenericAce" /> object. </returns> </member> <member name="P:System.Security.AccessControl.GenericAce.InheritanceFlags"> <summary> Gets flags that specify the inheritance properties of this Access Control Entry (ACE). </summary> <returns> Flags that specify the inheritance properties of this ACE. </returns> </member> <member name="P:System.Security.AccessControl.GenericAce.IsInherited"> <summary> Gets a Boolean value that specifies whether this Access Control Entry (ACE) is inherited or is set explicitly. </summary> <returns>true if this ACE is inherited; otherwise, false. </returns> </member> <member name="M:System.Security.AccessControl.GenericAce.op_Equality(System.Security.AccessControl.GenericAce,System.Security.AccessControl.GenericAce)"> <summary> Determines whether the specified <see cref="T:System.Security.AccessControl.GenericAce" /> objects are considered equal. </summary> <returns>true if the two <see cref="T:System.Security.AccessControl.GenericAce" /> objects are equal; otherwise, false. </returns> <param name="left"> The first <see cref="T:System.Security.AccessControl.GenericAce" /> object to compare. </param> <param name="right"> The second <see cref="T:System.Security.AccessControl.GenericAce" /> to compare. </param> </member> <member name="M:System.Security.AccessControl.GenericAce.op_Inequality(System.Security.AccessControl.GenericAce,System.Security.AccessControl.GenericAce)"> <summary> Determines whether the specified <see cref="T:System.Security.AccessControl.GenericAce" /> objects are considered unequal. </summary> <returns>true if the two <see cref="T:System.Security.AccessControl.GenericAce" /> objects are unequal; otherwise, false. </returns> <param name="left"> The first <see cref="T:System.Security.AccessControl.GenericAce" /> object to compare. </param> <param name="right"> The second <see cref="T:System.Security.AccessControl.GenericAce" /> to compare. </param> </member> <member name="P:System.Security.AccessControl.GenericAce.PropagationFlags"> <summary> Gets flags that specify the inheritance propagation properties of this Access Control Entry (ACE). </summary> <returns> Flags that specify the inheritance propagation properties of this ACE. </returns> </member> <member name="T:System.Security.AccessControl.GenericAcl"> <summary> Represents an access control list (ACL) and is the base class for the <see cref="T:System.Security.AccessControl.CommonAcl" />, <see cref="T:System.Security.AccessControl.DiscretionaryAcl" />, <see cref="T:System.Security.AccessControl.RawAcl" />, and <see cref="T:System.Security.AccessControl.SystemAcl" /> classes. </summary> </member> <member name="M:System.Security.AccessControl.GenericAcl.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.GenericAcl" /> class. </summary> </member> <member name="F:System.Security.AccessControl.GenericAcl.AclRevision"> <summary> The revision level of the current <see cref="T:System.Security.AccessControl.GenericAcl" />. This value is returned by the <see cref="P:System.Security.AccessControl.GenericAcl.Revision" /> property for Access Control Lists (ACLs) that are not associated with Directory Services objects. </summary> </member> <member name="F:System.Security.AccessControl.GenericAcl.AclRevisionDS"> <summary> The revision level of the current <see cref="T:System.Security.AccessControl.GenericAcl" />. This value is returned by the <see cref="P:System.Security.AccessControl.GenericAcl.Revision" /> property for Access Control Lists (ACLs) that are associated with Directory Services objects. </summary> </member> <member name="P:System.Security.AccessControl.GenericAcl.BinaryLength"> <summary> Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.GenericAcl.GetBinaryForm" /> method. </summary> <returns> The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> object. </returns> </member> <member name="M:System.Security.AccessControl.GenericAcl.CopyTo(System.Security.AccessControl.GenericAce[],System.Int32)"> <summary> Copies each <see cref="T:System.Security.AccessControl.GenericAce" /> of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> into the specified array. </summary> <param name="array"> The array into which copies of the <see cref="T:System.Security.AccessControl.GenericAce" /> objects contained by the current <see cref="T:System.Security.AccessControl.GenericAcl" /> are placed. </param> <param name="index"> The zero-based index of <paramref name="array" /> where the copying begins. </param> </member> <member name="P:System.Security.AccessControl.GenericAcl.Count"> <summary> Gets the number of access control entries (ACEs) in the current <see cref="T:System.Security.AccessControl.GenericAcl" /> object. </summary> <returns> The number of ACEs in the current <see cref="T:System.Security.AccessControl.GenericAcl" /> object. </returns> </member> <member name="M:System.Security.AccessControl.GenericAcl.GetBinaryForm(System.Byte[],System.Int32)"> <summary> Marshals the contents of the <see cref="T:System.Security.AccessControl.GenericAcl" /> object into the specified byte array beginning at the specified offset. </summary> <param name="binaryForm"> The byte array into which the contents of the <see cref="T:System.Security.AccessControl.GenericAcl" /> is marshaled. </param> <param name="offset"> The offset at which to start marshaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.GenericAcl" /> to be copied into <paramref name="array" />. </exception> </member> <member name="M:System.Security.AccessControl.GenericAcl.GetEnumerator"> <summary> Returns a new instance of the <see cref="T:System.Security.AccessControl.AceEnumerator" /> class. </summary> <returns> The <see cref="T:Security.AccessControl.AceEnumerator" /> that this method returns. </returns> </member> <member name="P:System.Security.AccessControl.GenericAcl.IsSynchronized"> <summary> This property is always set to false. It is implemented only because it is required for the implementation of the <see cref="T:System.Collections.ICollection" /> interface. </summary> <returns> Always false. </returns> </member> <member name="P:System.Security.AccessControl.GenericAcl.Item(System.Int32)"> <summary> Gets or sets the <see cref="T:System.Security.AccessControl.GenericAce" /> at the specified index. </summary> <returns> The <see cref="T:System.Security.AccessControl.GenericAce" /> at the specified index. </returns> <param name="index"> The zero-based index of the <see cref="T:System.Security.AccessControl.GenericAce" /> to get or set. </param> </member> <member name="F:System.Security.AccessControl.GenericAcl.MaxBinaryLength"> <summary> The maximum allowed binary length of a <see cref="T:System.Security.AccessControl.GenericAcl" /> object. </summary> </member> <member name="P:System.Security.AccessControl.GenericAcl.Revision"> <summary> Gets the revision level of the <see cref="T:System.Security.AccessControl.GenericAcl" />. </summary> <returns> A byte value that specifies the revision level of the <see cref="T:System.Security.AccessControl.GenericAcl" />. </returns> </member> <member name="P:System.Security.AccessControl.GenericAcl.SyncRoot"> <summary> This property always returns null. It is implemented only because it is required for the implementation of the <see cref="T:System.Collections.ICollection" /> interface. </summary> <returns> Always returns null. </returns> </member> <member name="M:System.Security.AccessControl.GenericAcl.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies each <see cref="T:System.Security.AccessControl.GenericAce" /> of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> into the specified array. </summary> <param name="array"> The array into which copies of the <see cref="T:System.Security.AccessControl.GenericAce" /> objects contained by the current <see cref="T:System.Security.AccessControl.GenericAcl" /> are placed. </param> <param name="index"> The zero-based index of <paramref name="array" /> where the copying begins. </param> </member> <member name="M:System.Security.AccessControl.GenericAcl.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns a new instance of the <see cref="T:System.Security.AccessControl.AceEnumerator" /> class cast as an instance of the <see cref="T:System.Collections.IEnumerator" /> interface. </summary> <returns> A new <see cref="T:System.Security.AccessControl.AceEnumerator" /> object, cast as an instance of the <see cref="T:System.Collections.IEnumerator" /> interface. </returns> </member> <member name="T:System.Security.AccessControl.GenericSecurityDescriptor"> <summary> Represents a security descriptor. A security descriptor includes an owner, a primary group, a Discretionary Access Control List (DACL), and a System Access Control List (SACL). </summary> </member> <member name="M:System.Security.AccessControl.GenericSecurityDescriptor.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.GenericSecurity" /> class. </summary> </member> <member name="P:System.Security.AccessControl.GenericSecurityDescriptor.BinaryLength"> <summary> Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.GenericSecurityDescriptor.GetBinaryForm" /> method. </summary> <returns> The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. </returns> </member> <member name="P:System.Security.AccessControl.GenericSecurityDescriptor.ControlFlags"> <summary> Gets values that specify behavior of the <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. </summary> <returns> One or more values of the <see cref="T:System.Security.AccessControl.ControlFlags" /> enumeration combined with a logical OR operation. </returns> </member> <member name="M:System.Security.AccessControl.GenericSecurityDescriptor.GetBinaryForm(System.Byte[],System.Int32)"> <summary> Returns an array of byte values that represents the information contained in this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. </summary> <param name="binaryForm"> The byte array into which the contents of the <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> is marshaled. </param> <param name="offset"> The offset at which to start marshaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> to be copied into <paramref name="array" />. </exception> </member> <member name="M:System.Security.AccessControl.GenericSecurityDescriptor.GetSddlForm(System.Security.AccessControl.AccessControlSections)"> <summary> Returns the Security Descriptor Definition Language (SDDL) representation of the specified sections of the security descriptor that this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object represents. </summary> <returns> The SDDL representation of the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. </returns> <param name="includeSections"> Specifies which sections (access rules, audit rules, primary group, owner) of the security descriptor to get. </param> </member> <member name="P:System.Security.AccessControl.GenericSecurityDescriptor.Group"> <summary> Gets or sets the primary group for this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. </summary> <returns> The primary group for this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. </returns> </member> <member name="M:System.Security.AccessControl.GenericSecurityDescriptor.IsSddlConversionSupported"> <summary> Returns a boolean value that specifies whether the security descriptor associated with this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object can be converted to the Security Descriptor Definition Language (SDDL) format. </summary> <returns>true if the security descriptor associated with this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object can be converted to the Security Descriptor Definition Language (SDDL) format; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.GenericSecurityDescriptor.Owner"> <summary> Gets or sets the owner of the object associated with this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. </summary> <returns> The owner of the object associated with this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. </returns> </member> <member name="P:System.Security.AccessControl.GenericSecurityDescriptor.Revision"> <summary> Gets the revision level of the <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. </summary> <returns> A byte value that specifies the revision level of the <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" />. </returns> </member> <member name="T:System.Security.AccessControl.InheritanceFlags"> <summary> Inheritance flags specify the semantics of inheritance for access control entries (ACEs). </summary> </member> <member name="F:System.Security.AccessControl.InheritanceFlags.None"> <summary> The ACE is not inherited by child objects. </summary> </member> <member name="F:System.Security.AccessControl.InheritanceFlags.ContainerInherit"> <summary> The ACE is inherited by child container objects. </summary> </member> <member name="F:System.Security.AccessControl.InheritanceFlags.ObjectInherit"> <summary> The ACE is inherited by child leaf objects. </summary> </member> <member name="T:System.Security.AccessControl.KnownAce"> <summary> Encapsulates all Access Control Entry (ACE) types currently defined by Microsoft Corporation. All <see cref="T:System.Security.AccessControl.KnownAce" /> objects contain a 32-bit access mask and a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> </member> <member name="P:System.Security.AccessControl.KnownAce.AccessMask"> <summary> Gets or sets the access mask for this <see cref="T:System.Security.AccessControl.KnownAce" /> object. </summary> <returns> The access mask for this <see cref="T:System.Security.AccessControl.KnownAce" /> object. </returns> </member> <member name="P:System.Security.AccessControl.KnownAce.SecurityIdentifier"> <summary> Gets or sets the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object associated with this <see cref="T:System.Security.AccessControl.KnownAce" /> object. </summary> <returns> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> object associated with this <see cref="T:System.Security.AccessControl.KnownAce" /> object. </returns> </member> <member name="T:System.Security.AccessControl.MutexAccessRule"> <summary> Represents a set of access rights allowed or denied for a user or group. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.MutexAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.MutexRights,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.MutexAccessRule" /> class, specifying the user or group the rule applies to, the access rights, and whether the specified access rights are allowed or denied. </summary> <param name="identity"> The user or group the rule applies to. Must be of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> or a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="eventRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.MutexRights" /> values specifying the rights allowed or denied. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values specifying whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="eventRights" /> specifies an invalid value. -or- <paramref name="type" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identity" /> is null. -or- <paramref name="eventRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="M:System.Security.AccessControl.MutexAccessRule.#ctor(System.String,System.Security.AccessControl.MutexRights,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.MutexAccessRule" /> class, specifying the name of the user or group the rule applies to, the access rights, and whether the specified access rights are allowed or denied. </summary> <param name="identity"> The name of the user or group the rule applies to. </param> <param name="eventRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.MutexRights" /> values specifying the rights allowed or denied. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values specifying whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="eventRights" /> specifies an invalid value. -or- <paramref name="type" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="eventRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is null. -or- <paramref name="identity" /> is a zero-length string. -or- <paramref name="identity" /> is longer than 512 characters. </exception> </member> <member name="P:System.Security.AccessControl.MutexAccessRule.MutexRights"> <summary> Gets the rights allowed or denied by the access rule. </summary> <returns> A bitwise combination of <see cref="T:System.Security.AccessControl.MutexRights" /> values indicating the rights allowed or denied by the access rule. </returns> </member> <member name="T:System.Security.AccessControl.MutexAuditRule"> <summary> Represents a set of access rights to be audited for a user or group. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.MutexAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.MutexRights,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.MutexAuditRule" /> class, specifying the user or group to audit, the rights to audit, and whether to audit success, failure, or both. </summary> <param name="identity"> The user or group the rule applies to. Must be of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> or a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="eventRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.MutexRights" /> values specifying the kinds of access to audit. </param> <param name="flags"> A bitwise combination of <see cref="T:System.Security.AccessControl.AuditFlags" /> values specifying whether to audit success, failure, or both. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="eventRights" /> specifies an invalid value. -or- <paramref name="flags" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identity" /> is null. -or- <paramref name="eventRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be translated to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="P:System.Security.AccessControl.MutexAuditRule.MutexRights"> <summary> Gets the access rights affected by the audit rule. </summary> <returns> A bitwise combination of <see cref="T:System.Security.AccessControl.MutexRights" /> values that indicates the rights affected by the audit rule. </returns> </member> <member name="T:System.Security.AccessControl.MutexRights"> <summary> Specifies the access control rights that can be applied to named system mutex objects. </summary> </member> <member name="F:System.Security.AccessControl.MutexRights.Modify"> <summary> The right to release a named mutex. </summary> </member> <member name="F:System.Security.AccessControl.MutexRights.Delete"> <summary> The right to delete a named mutex. </summary> </member> <member name="F:System.Security.AccessControl.MutexRights.ReadPermissions"> <summary> The right to open and copy the access rules and audit rules for a named mutex. </summary> </member> <member name="F:System.Security.AccessControl.MutexRights.ChangePermissions"> <summary> The right to change the security and audit rules associated with a named mutex. </summary> </member> <member name="F:System.Security.AccessControl.MutexRights.TakeOwnership"> <summary> The right to change the owner of a named mutex. </summary> </member> <member name="F:System.Security.AccessControl.MutexRights.Synchronize"> <summary> The right to wait on a named mutex. </summary> </member> <member name="F:System.Security.AccessControl.MutexRights.FullControl"> <summary> The right to exert full control over a named mutex, and to modify its access rules and audit rules. </summary> </member> <member name="T:System.Security.AccessControl.MutexSecurity"> <summary> Represents the Windows access control security for a named mutex. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.MutexSecurity.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.MutexSecurity" /> class with default values. </summary> <exception cref="T:System.NotSupportedException"> This class is not supported on Windows 98 or Windows Millennium Edition. </exception> </member> <member name="M:System.Security.AccessControl.MutexSecurity.#ctor(System.String,System.Security.AccessControl.AccessControlSections)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.MutexSecurity" /> class with the specified sections of the access control security rules from the system mutex with the specified name. </summary> <param name="name"> The name of the system mutex whose access control security rules are to be retrieved. </param> <param name="includeSections"> A combination of <see cref="T:System.Security.AccessControl.AccessControlSections" /> flags specifying the sections to retrieve. </param> <exception cref="T:System.IO.FileNotFoundException"> There is no system object with the specified name. </exception> <exception cref="T:System.NotSupportedException"> This class is not supported on Windows 98 or Windows Millennium Edition. </exception> </member> <member name="P:System.Security.AccessControl.MutexSecurity.AccessRightType"> <summary> Gets the enumeration that the <see cref="T:System.Security.AccessControl.MutexSecurity" /> class uses to represent access rights. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.MutexRights" /> enumeration. </returns> </member> <member name="M:System.Security.AccessControl.MutexSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Creates a new access control rule for the specified user, with the specified access rights, access control, and flags. </summary> <returns> A <see cref="T:System.Security.AccessControl.MutexAccessRule" /> object representing the specified rights for the specified user. </returns> <param name="identityReference"> An <see cref="T:System.Security.Principal.IdentityReference" /> that identifies the user or group the rule applies to. </param> <param name="accessMask"> A bitwise combination of <see cref="T:System.Security.AccessControl.MutexRights" /> values specifying the access rights to allow or deny, cast to an integer. </param> <param name="isInherited"> Meaningless for named mutexes, because they have no hierarchy. </param> <param name="inheritanceFlags"> Meaningless for named mutexes, because they have no hierarchy. </param> <param name="propagationFlags"> Meaningless for named mutexes, because they have no hierarchy. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values specifying whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="type" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identityReference" /> is null. -or- <paramref name="accessMask" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identityReference" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="P:System.Security.AccessControl.MutexSecurity.AccessRuleType"> <summary> Gets the type that the <see cref="T:System.Security.AccessControl.MutexSecurity" /> class uses to represent access rules. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.MutexAccessRule" /> class. </returns> </member> <member name="M:System.Security.AccessControl.MutexSecurity.AddAccessRule(System.Security.AccessControl.MutexAccessRule)"> <summary> Searches for a matching access control rule with which the new rule can be merged. If none are found, adds the new rule. </summary> <param name="rule"> The access control rule to add. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.MutexSecurity.AddAuditRule(System.Security.AccessControl.MutexAuditRule)"> <summary> Searches for an audit rule with which the new rule can be merged. If none are found, adds the new rule. </summary> <param name="rule"> The audit rule to add. The user specified by this rule determines the search. </param> </member> <member name="M:System.Security.AccessControl.MutexSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Creates a new audit rule, specifying the user the rule applies to, the access rights to audit, and the outcome that triggers the audit rule. </summary> <returns> A <see cref="T:System.Security.AccessControl.MutexAuditRule" /> object representing the specified audit rule for the specified user. The return type of the method is the base class, <see cref="T:System.Security.AccessControl.AuditRule" />, but the return value can be cast safely to the derived class. </returns> <param name="identityReference"> An <see cref="T:System.Security.Principal.IdentityReference" /> that identifies the user or group the rule applies to. </param> <param name="accessMask"> A bitwise combination of <see cref="T:System.Security.AccessControl.MutexRights" /> values specifying the access rights to audit, cast to an integer. </param> <param name="isInherited"> Meaningless for named wait handles, because they have no hierarchy. </param> <param name="inheritanceFlags"> Meaningless for named wait handles, because they have no hierarchy. </param> <param name="propagationFlags"> Meaningless for named wait handles, because they have no hierarchy. </param> <param name="flags"> A bitwise combination of <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specify whether to audit successful access, failed access, or both. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="flags" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identityReference" /> is null. -or- <paramref name="accessMask" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identityReference" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="P:System.Security.AccessControl.MutexSecurity.AuditRuleType"> <summary> Gets the type that the <see cref="T:System.Security.AccessControl.MutexSecurity" /> class uses to represent audit rules. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.MutexAuditRule" /> class. </returns> </member> <member name="M:System.Security.AccessControl.MutexSecurity.RemoveAccessRule(System.Security.AccessControl.MutexAccessRule)"> <summary> Searches for an access control rule with the same user and <see cref="T:System.Security.AccessControl.AccessControlType" /> (allow or deny) as the specified rule, and with compatible inheritance and propagation flags; if such a rule is found, the rights contained in the specified access rule are removed from it. </summary> <returns>true if a compatible rule is found; otherwise false. </returns> <param name="rule"> A <see cref="T:System.Security.AccessControl.MutexAccessRule" /> that specifies the user and <see cref="T:System.Security.AccessControl.AccessControlType" /> to search for, and a set of inheritance and propagation flags that a matching rule, if found, must be compatible with. Specifies the rights to remove from the compatible rule, if found. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.MutexSecurity.RemoveAccessRuleAll(System.Security.AccessControl.MutexAccessRule)"> <summary> Searches for all access control rules with the same user and <see cref="T:System.Security.AccessControl.AccessControlType" /> (allow or deny) as the specified rule and, if found, removes them. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.MutexAccessRule" /> that specifies the user and <see cref="T:System.Security.AccessControl.AccessControlType" /> to search for. Any rights specified by this rule are ignored. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.MutexSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.MutexAccessRule)"> <summary> Searches for an access control rule that exactly matches the specified rule and, if found, removes it. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.MutexAccessRule" /> to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.MutexSecurity.RemoveAuditRule(System.Security.AccessControl.MutexAuditRule)"> <summary> Searches for an audit control rule with the same user as the specified rule, and with compatible inheritance and propagation flags; if a compatible rule is found, the rights contained in the specified rule are removed from it. </summary> <returns>true if a compatible rule is found; otherwise, false. </returns> <param name="rule"> A <see cref="T:System.Security.AccessControl.MutexAuditRule" /> that specifies the user to search for, and a set of inheritance and propagation flags that a matching rule, if found, must be compatible with. Specifies the rights to remove from the compatible rule, if found. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.MutexSecurity.RemoveAuditRuleAll(System.Security.AccessControl.MutexAuditRule)"> <summary> Searches for all audit rules with the same user as the specified rule and, if found, removes them. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.MutexAuditRule" /> that specifies the user to search for. Any rights specified by this rule are ignored. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.MutexSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.MutexAuditRule)"> <summary> Searches for an audit rule that exactly matches the specified rule and, if found, removes it. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.MutexAuditRule" /> to be removed. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.MutexSecurity.ResetAccessRule(System.Security.AccessControl.MutexAccessRule)"> <summary> Removes all access control rules with the same user as the specified rule, regardless of <see cref="T:System.Security.AccessControl.AccessControlType" />, and then adds the specified rule. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.MutexAccessRule" /> to add. The user specified by this rule determines the rules to remove before this rule is added. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.MutexSecurity.SetAccessRule(System.Security.AccessControl.MutexAccessRule)"> <summary> Removes all access control rules with the same user and <see cref="T:System.Security.AccessControl.AccessControlType" /> (allow or deny) as the specified rule, and then adds the specified rule. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.MutexAccessRule" /> to add. The user and <see cref="T:System.Security.AccessControl.AccessControlType" /> of this rule determine the rules to remove before this rule is added. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.MutexSecurity.SetAuditRule(System.Security.AccessControl.MutexAuditRule)"> <summary> Removes all audit rules with the same user as the specified rule, regardless of the <see cref="T:System.Security.AccessControl.AuditFlags" /> value, and then adds the specified rule. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.MutexAuditRule" /> to add. The user specified by this rule determines the rules to remove before this rule is added. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="T:System.Security.AccessControl.NativeObjectSecurity"> <summary> Provides the ability to control access to native objects without direct manipulation of Access Control Lists (ACLs). Native object types are defined by the <see cref="T:System.Security.AccessControl.ResourceType" /> enumeration. </summary> </member> <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class with the specified values. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object. </param> <param name="resourceType"> The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> </member> <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class with the specified values. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object. </param> <param name="resourceType"> The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="handle"> The handle of the securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to include in this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object. </param> </member> <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections,System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode,System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class with the specified values. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object. </param> <param name="resourceType"> The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="handle"> The handle of the securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to include in this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object. </param> <param name="exceptionFromErrorCode"> A delegate implemented by integrators that provides custom exceptions. </param> <param name="exceptionContext"> An object that contains contextual information about the source or destination of the exception. </param> </member> <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode,System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class by using the specified values. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object. </param> <param name="resourceType"> The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="exceptionFromErrorCode"> A delegate implemented by integrators that provides custom exceptions. </param> <param name="exceptionContext"> An object that contains contextual information about the source or destination of the exception. </param> </member> <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.String,System.Security.AccessControl.AccessControlSections)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class with the specified values. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.NativObjectSecurity" /> object is a container object. </param> <param name="resourceType"> The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="name"> The name of the securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to include in this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object. </param> </member> <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.String,System.Security.AccessControl.AccessControlSections,System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode,System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class with the specified values. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object. </param> <param name="resourceType"> The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="name"> The name of the securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to include in this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object. </param> <param name="exceptionFromErrorCode"> A delegate implemented by integrators that provides custom exceptions. </param> <param name="exceptionContext"> An object that contains contextual information about the source or destination of the exception. </param> </member> <member name="M:System.Security.AccessControl.NativeObjectSecurity.Persist(System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections)"> <summary> Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="handle"> The handle of the securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save. </param> <exception cref="T:System.IO.FileNotFoundException"> The securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated is either a directory or a file, and that directory or file could not be found. </exception> </member> <member name="M:System.Security.AccessControl.NativeObjectSecurity.Persist(System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections,System.Object)"> <summary> Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="handle"> The handle of the securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save. </param> <param name="exceptionContext"> An object that contains contextual information about the source or destination of the exception. </param> <exception cref="T:System.IO.FileNotFoundException"> The securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated is either a directory or a file, and that directory or file could not be found. </exception> </member> <member name="M:System.Security.AccessControl.NativeObjectSecurity.Persist(System.String,System.Security.AccessControl.AccessControlSections)"> <summary> Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="name"> The name of the securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save. </param> <exception cref="T:System.IO.FileNotFoundException"> The securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated is either a directory or a file, and that directory or file could not be found. </exception> </member> <member name="M:System.Security.AccessControl.NativeObjectSecurity.Persist(System.String,System.Security.AccessControl.AccessControlSections,System.Object)"> <summary> Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="name"> The name of the securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save. </param> <param name="exceptionContext"> An object that contains contextual information about the source or destination of the exception. </param> <exception cref="T:System.IO.FileNotFoundException"> The securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated is either a directory or a file, and that directory or file could not be found. </exception> </member> <member name="T:System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode"> <summary> Provides a way for integrators to map numeric error codes to specific exceptions that they create. </summary> <returns> The <see cref="T:System.Exception" /> this delegate creates. </returns> <param name="errorCode"> The numeric error code. </param> <param name="name"> The name of the securable object with which the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="handle"> The handle of the securable object with which the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated. </param> <param name="context"> An object that contains contextual information about the source or destination of the exception. </param> </member> <member name="T:System.Security.AccessControl.ObjectAccessRule"> <summary> Represents a combination of a user's identity, an access mask, and an access control type (allow or deny). An <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> object also contains information about the type of object to which the rule applies, the type of child object that can inherit the rule, how the rule is inherited by child objects, and how that inheritance is propagated. </summary> </member> <member name="M:System.Security.AccessControl.ObjectAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Guid,System.Guid,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> class with the specified values. </summary> <param name="identity"> The identity to which the access rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited">true if this rule is inherited from a parent container. </param> <param name="inheritanceFlags"> Specifies the inheritance properties of the access rule. </param> <param name="propagationFlags"> Specifies whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="objectType"> The type of object to which the rule applies. </param> <param name="inheritedObjectType"> The type of child object that can inherit the rule. </param> <param name="type"> Specifies whether this rule allows or denies access. </param> <exception cref="T:System.ArgumentException"> The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />, or the <paramref name="type" /> parameter contains an invalid value. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="accessMask" /> parameter is 0, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values. </exception> </member> <member name="P:System.Security.AccessControl.ObjectAccessRule.InheritedObjectType"> <summary> Gets the type of child object that can inherit the <see cref="System.Security.AccessControl.ObjectAccessRule" /> object. </summary> <returns> The type of child object that can inherit the <see cref="System.Security.AccessControl.ObjectAccessRule" /> object. </returns> </member> <member name="P:System.Security.AccessControl.ObjectAccessRule.ObjectFlags"> <summary> Gets flags that specify if the <see cref="P:System.Security.AccessControl.ObjectAccessRule.ObjectType" /> and <see cref="P:System.Security.AccessControl.ObjectAccessRule.InheritedObjectType" /> properties of the <see cref="System.Security.AccessControl.ObjectAccessRule" /> object contain valid values. </summary> <returns> <see cref="F:System.Security.AccessControl.ObjectAceFlags.ObjectAceTypePresent" /> specifies that the <see cref="P:System.Security.AccessControl.ObjectAccessRule.ObjectType" /> property contains a valid value. <see cref="F:System.Security.AccessControl.ObjectAceFlags.InheritedObjectAceTypePresent" /> specifies that the <see cref="P:System.Security.AccessControl.ObjectAccessRule.InheritedObjectType" /> property contains a valid value. These values can be combined with a logical OR. </returns> </member> <member name="P:System.Security.AccessControl.ObjectAccessRule.ObjectType"> <summary> Gets the type of object to which the <see cref="System.Security.AccessControl.ObjectAccessRule" /> applies. </summary> <returns> The type of object to which the <see cref="System.Security.AccessControl.ObjectAccessRule" /> applies. </returns> </member> <member name="T:System.Security.AccessControl.ObjectAce"> <summary> Controls access to Directory Services objects. This class represents an Access Control Entry (ACE) associated with a directory object. </summary> </member> <member name="M:System.Security.AccessControl.ObjectAce.#ctor(System.Security.AccessControl.AceFlags,System.Security.AccessControl.AceQualifier,System.Int32,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid,System.Boolean,System.Byte[])"> <summary> Initiates a new instance of the <see cref="T:System.Security.AccessControl.ObjectAce" /> class. </summary> <param name="aceFlags"> The inheritance, inheritance propagation, and auditing conditions for the new Access Control Entry (ACE). </param> <param name="qualifier"> The use of the new ACE. </param> <param name="accessMask"> The access mask for the ACE. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> associated with the new ACE. </param> <param name="flags"> Whether the <paramref name="type" /> and <paramref name="inheritedType" /> parameters contain valid object GUIDs. </param> <param name="type"> A GUID that identifies the object type to which the new ACE applies. </param> <param name="inheritedType"> A GUID that identifies the object type that can inherit the new ACE. </param> <param name="isCallback">true if the new ACE is a callback type ACE. </param> <param name="opaque"> Opaque data associated with the new ACE. This is allowed only for callback ACE types. The length of this array must not be greater than the return value of the <see cref="M:System.Security.AccessControl.ObjectAceMaxOpaqueLength" /> method. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The qualifier parameter contains an invalid value or the length of the value of the opaque parameter is greater than the return value of the <see cref="M:System.Security.AccessControl.ObjectAceMaxOpaqueLength" /> method. </exception> </member> <member name="P:System.Security.AccessControl.ObjectAce.BinaryLength"> <summary> Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.ObjectAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.ObjectAce.GetBinaryForm" /> method. </summary> <returns> The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.ObjectAce" /> object. </returns> </member> <member name="M:System.Security.AccessControl.ObjectAce.GetBinaryForm(System.Byte[],System.Int32)"> <summary> Marshals the contents of the <see cref="T:System.Security.AccessControl.ObjectAce" /> object into the specified byte array beginning at the specified offset. </summary> <param name="binaryForm"> The byte array into which the contents of the <see cref="T:System.Security.AccessControl. ObjectAce" /> is marshaled. </param> <param name="offset"> The offset at which to start marshaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.ObjectAce" /> to be copied into <paramref name="array" />. </exception> </member> <member name="P:System.Security.AccessControl.ObjectAce.InheritedObjectAceType"> <summary> Gets or sets the GUID of the object type that can inherit the Access Control Entry (ACE) that this <see cref="T:System.Security.AccessControl.ObjectAce" /> object represents. </summary> <returns> The GUID of the object type that can inherit the Access Control Entry (ACE) that this <see cref="T:System.Security.AccessControl.ObjectAce" /> object represents. </returns> </member> <member name="M:System.Security.AccessControl.ObjectAce.MaxOpaqueLength(System.Boolean)"> <summary> Returns the maximum allowed length, in bytes, of an opaque data BLOB for callback Access Control Entries (ACEs). </summary> <returns> The maximum allowed length, in bytes, of an opaque data BLOB for callback Access Control Entries (ACEs). </returns> <param name="isCallback"> True if the <see cref="T:System.Security.AccessControl.ObjectAce" /> is a callback ACE type. </param> </member> <member name="P:System.Security.AccessControl.ObjectAce.ObjectAceFlags"> <summary> Gets or sets flags that specify whether the <see cref="P:System.Security.AccessControl.ObjectAce.ObjectAceType" /> and <see cref="P:System.Security.AccessControl.ObjectAce.InheritedObjectAceType" /> properties contain values that identify valid object types. </summary> <returns> On or more members of the <see cref="T:System.Security.AccessControl.ObjectAceFlags" /> enumeration combined with a logical OR operation. </returns> </member> <member name="P:System.Security.AccessControl.ObjectAce.ObjectAceType"> <summary> Gets or sets the GUID of the object type associated with this <see cref="T:System.Security.AccessControl.ObjectAce" /> object. </summary> <returns> The GUID of the object type associated with this <see cref="T:System.Security.AccessControl.ObjectAce" /> object. </returns> </member> <member name="T:System.Security.AccessControl.ObjectAceFlags"> <summary> Specifies the presence of object types for Access Control Entries (ACEs). </summary> </member> <member name="F:System.Security.AccessControl.ObjectAceFlags.None"> <summary> No object types are present. </summary> </member> <member name="F:System.Security.AccessControl.ObjectAceFlags.ObjectAceTypePresent"> <summary> The type of object that is associated with the ACE is present. </summary> </member> <member name="F:System.Security.AccessControl.ObjectAceFlags.InheritedObjectAceTypePresent"> <summary> The type of object that can inherit the ACE. </summary> </member> <member name="T:System.Security.AccessControl.ObjectAuditRule"> <summary> Represents a combination of a user's identity, an access mask, and audit conditions. An <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> object also contains information about the type of object to which the rule applies, the type of child object that can inherit the rule, how the rule is inherited by child objects, and how that inheritance is propagated. </summary> </member> <member name="M:System.Security.AccessControl.ObjectAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Guid,System.Guid,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> class. </summary> <param name="identity"> The identity to which the access rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited">true if this rule is inherited from a parent container. </param> <param name="inheritanceFlags"> Specifies the inheritance properties of the access rule. </param> <param name="propagationFlags"> Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="objectType"> The type of object to which the rule applies. </param> <param name="inheritedObjectType"> The type of child object that can inherit the rule. </param> <param name="auditFlags"> The audit conditions. </param> <exception cref="T:System.ArgumentException"> The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />, or the <paramref name="type" /> parameter contains an invalid value. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="accessMask" /> parameter is 0, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values. </exception> </member> <member name="P:System.Security.AccessControl.ObjectAuditRule.InheritedObjectType"> <summary> Gets the type of child object that can inherit the <see cref="System.Security.AccessControl.ObjectAuditRule" /> object. </summary> <returns> The type of child object that can inherit the <see cref="System.Security.AccessControl.ObjectAuditRule" /> object. </returns> </member> <member name="P:System.Security.AccessControl.ObjectAuditRule.ObjectFlags"> <summary> <see cref="P:System.Security.AccessControl.ObjectAuditRule.ObjectType" /> and <see cref="P:System.Security.AccessControl.ObjectAuditRule.InheritedObjectType" /> properties of the <see cref="System.Security.AccessControl.ObjectAuditRule" /> object contain valid values. </summary> <returns> <see cref="F:System.Security.AccessControl.ObjectAceFlags.ObjectAceTypePresent" /> specifies that the <see cref="P:System.Security.AccessControl.ObjectAuditRule.ObjectType" /> property contains a valid value. <see cref="F:System.Security.AccessControl.ObjectAceFlags.InheritedObjectAceTypePresent" /> specifies that the <see cref="P:System.Security.AccessControl.ObjectAuditRule.InheritedObjectType" /> property contains a valid value. These values can be combined with a logical OR. </returns> </member> <member name="P:System.Security.AccessControl.ObjectAuditRule.ObjectType"> <summary> Gets the type of object to which the <see cref="System.Security.AccessControl.ObjectAuditRule" /> applies. </summary> <returns> The type of object to which the <see cref="System.Security.AccessControl.ObjectAuditRule" /> applies. </returns> </member> <member name="T:System.Security.AccessControl.ObjectSecurity"> <summary> Provides the ability to control access to objects without direct manipulation of Access Control Lists (ACLs). This class is the abstract base class for the <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> and <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> classes. </summary> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.#ctor(System.Boolean,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> class. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a container object. </param> <param name="isDS"> True if the new <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a directory object. </param> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.AccessRightType"> <summary> Gets the <see cref="T:System.Type" /> of the securable object associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </summary> <returns> The type of the securable object associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </returns> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class with the specified values. </summary> <returns> The <see cref="T:System.Security.AccessControl.AccessRule" /> object that this method creates. </returns> <param name="identityReference"> The identity to which the access rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited"> true if this rule is inherited from a parent container. </param> <param name="inheritanceFlags"> Specifies the inheritance properties of the access rule. </param> <param name="propagationFlags"> Specifies whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="type"> Specifies the valid access control type. </param> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.AccessRulesModified"> <summary> Gets or sets a Boolean value that specifies whether the access rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object have been modified. </summary> <returns>true if the access rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object have been modified; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.AccessRuleType"> <summary> Gets the <see cref="T:System.Type" /> of the object associated with the access rules of this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. The <see cref="T:System.Type" /> object must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <returns> The type of the object associated with the access rules of this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </returns> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.AreAccessRulesCanonical"> <summary> Gets a Boolean value that specifies whether the access rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object are in canonical order. </summary> <returns>true if the access rules are in canonical order; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.AreAccessRulesProtected"> <summary> Gets a Boolean value that specifies whether the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is protected. </summary> <returns>true if the DACL is protected; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.AreAuditRulesCanonical"> <summary> Gets a Boolean value that specifies whether the audit rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object are in canonical order. </summary> <returns>true if the audit rules are in canonical order; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.AreAuditRulesProtected"> <summary> Gets a Boolean value that specifies whether the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is protected. </summary> <returns>true if the SACL is protected; otherwise, false. </returns> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule" /> class with the specified values. </summary> <returns> The <see cref="T:System.Security.AccessControl.AuditRule" /> object that this method creates. </returns> <param name="identityReference"> The identity to which the audit rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="accessMask"> The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators. </param> <param name="isInherited">true if this rule is inherited from a parent container. </param> <param name="inheritanceFlags"> Specifies the inheritance properties of the audit rule. </param> <param name="propagationFlags"> Specifies whether inherited audit rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="flags"> Specifies the conditions for which the rule is audited. </param> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.AuditRulesModified"> <summary> Gets or sets a Boolean value that specifies whether the audit rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object have been modified. </summary> <returns>true if the audit rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object have been modified; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.AuditRuleType"> <summary> Gets the <see cref="T:System.Type" /> object associated with the audit rules of this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. The <see cref="T:System.Type" /> object must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <returns> The type of the object associated with the audit rules of this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </returns> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.GetGroup(System.Type)"> <summary> Gets the primary group associated with the specified owner. </summary> <returns> The primary group associated with the specified owner. </returns> <param name="targetType"> The owner for which to get the primary group. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.GetOwner(System.Type)"> <summary> Gets the owner associated with the specified primary group. </summary> <returns> The owner associated with the specified group. </returns> <param name="targetType"> The primary group for which to get the owner. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.GetSecurityDescriptorBinaryForm"> <summary> Returns an array of byte values that represents the security descriptor information for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </summary> <returns> An array of byte values that represents the security descriptor for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. This method returns null if there is no security information in this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </returns> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.GetSecurityDescriptorSddlForm(System.Security.AccessControl.AccessControlSections)"> <summary> Returns the Security Descriptor Definition Language (SDDL) representation of the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </summary> <returns> The SDDL representation of the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </returns> <param name="includeSections"> Specifies which sections (access rules, audit rules, primary group, owner) of the security descriptor to get. </param> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.GroupModified"> <summary> Gets or sets a Boolean value that specifies whether the group associated with the securable object has been modified. </summary> <returns>true if the group associated with the securable object has been modified; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.IsContainer"> <summary> Gets a Boolean value that specifies whether this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a container object. </summary> <returns>true if the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a container object; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.IsDS"> <summary> Gets a Boolean value that specifies whether this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a directory object. </summary> <returns>true if the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a directory object; otherwise, false. </returns> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.IsSddlConversionSupported"> <summary> Returns a Boolean value that specifies whether the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object can be converted to the Security Descriptor Definition Language (SDDL) format. </summary> <returns>true if the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object can be converted to the Security Descriptor Definition Language (SDDL) format; otherwise, false. </returns> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.ModifyAccess(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)"> <summary> Applies the specified modification to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </summary> <returns>true if the DACL is successfully modified; otherwise, false. </returns> <param name="modification"> The modification to apply to the DACL. </param> <param name="rule"> The access rule to modify. </param> <param name="modified">true if the DACL is successfully modified; otherwise, false. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.ModifyAccessRule(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)"> <summary> Applies the specified modification to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </summary> <returns>true if the DACL is successfully modified; otherwise, false. </returns> <param name="modification"> The modification to apply to the DACL. </param> <param name="rule"> The access rule to modify. </param> <param name="modified">true if the DACL is successfully modified; otherwise, false. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.ModifyAudit(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)"> <summary> Applies the specified modification to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </summary> <returns>true if the SACL is successfully modified; otherwise, false. </returns> <param name="modification"> The modification to apply to the SACL. </param> <param name="rule"> The audit rule to modify. </param> <param name="modified">true if the SACL is successfully modified; otherwise, false. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.ModifyAuditRule(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)"> <summary> Applies the specified modification to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </summary> <returns>true if the SACL is successfully modified; otherwise, false. </returns> <param name="modification"> The modification to apply to the SACL. </param> <param name="rule"> The audit rule to modify. </param> <param name="modified">true if the SACL is successfully modified; otherwise, false. </param> </member> <member name="P:System.Security.AccessControl.ObjectSecurity.OwnerModified"> <summary> Gets or sets a Boolean value that specifies whether the owner of the securable object has been modified. </summary> <returns>true if the owner of the securable object has been modified; otherwise, false. </returns> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.Persist(System.Boolean,System.String,System.Security.AccessControl.AccessControlSections)"> <summary> Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="enableOwnershipPrivilege">true to enable the privilege that allows the caller to take ownership of the object. </param> <param name="name"> The name used to retrieve the persisted information. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.Persist(System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections)"> <summary> Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="handle"> The handle used to retrieve the persisted information. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.Persist(System.String,System.Security.AccessControl.AccessControlSections)"> <summary> Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical. For more information, see Remarks. </summary> <param name="name"> The name used to retrieve the persisted information. </param> <param name="includeSections"> One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.PurgeAccessRules(System.Security.Principal.IdentityReference)"> <summary> Removes all access rules associated with the specified <see cref="T:System.Security.Principal.IdentityReference" />. </summary> <param name="identity"> The <see cref="T:System.Security.Principal.IdentityReference" /> for which to remove all access rules. </param> <exception cref="T:System.InvalidOperationException"> All access rules are not in canonical order. </exception> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.PurgeAuditRules(System.Security.Principal.IdentityReference)"> <summary> Removes all audit rules associated with the specified <see cref="T:System.Security.Principal.IdentityReference" />. </summary> <param name="identity"> The <see cref="T:System.Security.Principal.IdentityReference" /> for which to remove all audit rules. </param> <exception cref="T:System.InvalidOperationException"> All audit rules are not in canonical order. </exception> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.ReadLock"> <summary> Locks this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object for read access. </summary> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.ReadUnlock"> <summary> Unlocks this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object for read access. </summary> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.SetAccessRuleProtection(System.Boolean,System.Boolean)"> <summary> Sets or removes protection of the access rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. Protected access rules cannot be modified by parent objects through inheritance. </summary> <param name="isProtected">true to protect the access rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from inheritance; false to allow inheritance. </param> <param name="preserveInheritance">true to preserve inherited access rules; false to remove inherited access rules. This parameter is ignored if <paramref name="isProtected" /> is false. </param> <exception cref="T:System.InvalidOperationException"> This method attempts to remove inherited rules from a non-canonical Discretionary Access Control List (DACL). </exception> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.SetAuditRuleProtection(System.Boolean,System.Boolean)"> <summary> Sets or removes protection of the audit rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. Protected audit rules cannot be modified by parent objects through inheritance. </summary> <param name="isProtected">true to protect the audit rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from inheritance; false to allow inheritance. </param> <param name="preserveInheritance">true to preserve inherited audit rules; false to remove inherited audit rules. This parameter is ignored if <paramref name="isProtected" /> is false. </param> <exception cref="T:System.InvalidOperationException"> This method attempts to remove inherited rules from a non-canonical System Access Control List (SACL). </exception> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.SetGroup(System.Security.Principal.IdentityReference)"> <summary> Sets the primary group for the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </summary> <param name="identity"> The primary group to set. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.SetOwner(System.Security.Principal.IdentityReference)"> <summary> Sets the owner for the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. </summary> <param name="identity"> The owner to set. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.SetSecurityDescriptorBinaryForm(System.Byte[])"> <summary> Sets the security descriptor for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from the specified array of byte values. </summary> <param name="binaryForm"> The array of bytes from which to set the security descriptor. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.SetSecurityDescriptorBinaryForm(System.Byte[],System.Security.AccessControl.AccessControlSections)"> <summary> Sets the specified sections of the security descriptor for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from the specified array of byte values. </summary> <param name="binaryForm"> The array of bytes from which to set the security descriptor. </param> <param name="includeSections"> The sections (access rules, audit rules, owner, primary group) of the security descriptor to set. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.SetSecurityDescriptorSddlForm(System.String)"> <summary> Sets the security descriptor for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from the specified Security Descriptor Definition Language (SDDL) string. </summary> <param name="sddlForm"> The SDDL string from which to set the security descriptor. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.SetSecurityDescriptorSddlForm(System.String,System.Security.AccessControl.AccessControlSections)"> <summary> Sets the specified sections of the security descriptor for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from the specified Security Descriptor Definition Language (SDDL) string. </summary> <param name="sddlForm"> The SDDL string from which to set the security descriptor. </param> <param name="includeSections"> The sections (access rules, audit rules, owner, primary group) of the security descriptor to set. </param> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.WriteLock"> <summary> Locks this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object for write access. </summary> </member> <member name="M:System.Security.AccessControl.ObjectSecurity.WriteUnlock"> <summary> Unlocks this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object for write access. </summary> </member> <member name="T:System.Security.AccessControl.PrivilegeNotHeldException"> <summary> The exception that is thrown when a method in the <see cref="N:System.Security.AccessControl" /> namespace attempts to enable a privilege that it does not have. </summary> </member> <member name="M:System.Security.AccessControl.PrivilegeNotHeldException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.PrivilegeNotHeldException" /> class. </summary> </member> <member name="M:System.Security.AccessControl.PrivilegeNotHeldException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.PrivilegeNotHeldException" /> class by using the specified privilege. </summary> <param name="privilege"> The privilege that is not enabled. </param> </member> <member name="M:System.Security.AccessControl.PrivilegeNotHeldException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.PrivilegeNotHeldException" /> class by using the specified exception. </summary> <param name="privilege"> The privilege that is not enabled. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Security.AccessControl.PrivilegeNotHeldException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <paramref name="info" /> parameter with information about the exception. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="P:System.Security.AccessControl.PrivilegeNotHeldException.PrivilegeName"> <summary> Gets the name of the privilege that is not enabled. </summary> <returns> The name of the privilege that the method failed to enable. </returns> </member> <member name="T:System.Security.AccessControl.PropagationFlags"> <summary> Specifies how Access Control Entries (ACEs) are propagated to child objects. These flags are significant only if inheritance flags are present. </summary> </member> <member name="F:System.Security.AccessControl.PropagationFlags.None"></member> <member name="F:System.Security.AccessControl.PropagationFlags.NoPropagateInherit"> <summary> Specifies that the ACE is not propagated to child objects. </summary> </member> <member name="F:System.Security.AccessControl.PropagationFlags.InheritOnly"> <summary> Specifies that the ACE is propagated only to child objects. This includes both container and leaf child objects. </summary> </member> <member name="T:System.Security.AccessControl.QualifiedAce"> <summary> Represents an Access Control Entry (ACE) that contains a qualifier. The qualifier, represented by an <see cref="T:System.Security.AccessControl.AceQualifier" /> object, specifies whether the ACE allows access, denies access, causes system audits, or causes system alarms. The <see cref="T:System.Security.AccessControl.QualifiedAce" /> class is the abstract base class for the <see cref="T:System.Security.AccessControl.CommonAce" /> and <see cref="T:System.Security.AccessControl.ObjectAce" /> classes. </summary> </member> <member name="P:System.Security.AccessControl.QualifiedAce.AceQualifier"> <summary> Gets a value that specifies whether the ACE allows access, denies access, causes system audits, or causes system alarms. </summary> <returns> A value that specifies whether the ACE allows access, denies access, causes system audits, or causes system alarms. </returns> </member> <member name="M:System.Security.AccessControl.QualifiedAce.GetOpaque"> <summary> Returns the opaque callback data associated with this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object. </summary> <returns> An array of byte values that represents the opaque callback data associated with this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object. </returns> </member> <member name="P:System.Security.AccessControl.QualifiedAce.IsCallback"> <summary> Specifies whether this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object contains callback data. </summary> <returns>true if this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object contains callback data; otherwise, false. </returns> </member> <member name="P:System.Security.AccessControl.QualifiedAce.OpaqueLength"> <summary> Gets the length of the opaque callback data associated with this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object. This property is valid only for callback Access Control Entries (ACEs). </summary> <returns> The length of the opaque callback data. </returns> </member> <member name="M:System.Security.AccessControl.QualifiedAce.SetOpaque(System.Byte[])"> <summary> Sets the opaque callback data associated with this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object. </summary> <param name="opaque"> An array of byte values that represents the opaque callback data for this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object. </param> </member> <member name="T:System.Security.AccessControl.RawAcl"> <summary> Represents an Access Control List (ACL). </summary> </member> <member name="M:System.Security.AccessControl.RawAcl.#ctor(System.Byte,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RawAcl" /> class with the specified revision level. </summary> <param name="revision"> The revision level of the new Access Control List (ACL). </param> <param name="capacity"> The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.RawAcl" /> object can contain. This number is to be used only as a hint. </param> </member> <member name="M:System.Security.AccessControl.RawAcl.#ctor(System.Byte[],System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RawAcl" /> class from the specified binary form. </summary> <param name="binaryForm"> An array of byte values that represent an Access Control List (ACL). </param> <param name="offset"> The offset in the <paramref name="binaryForm" /> parameter at which to begin unmarshaling data. </param> </member> <member name="P:System.Security.AccessControl.RawAcl.BinaryLength"> <summary> Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.RawAcl" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.RawAcl.GetBinaryForm" /> method. </summary> <returns> The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.RawAcl" /> object. </returns> </member> <member name="P:System.Security.AccessControl.RawAcl.Count"> <summary> Gets the number of access control entries (ACEs) in the current <see cref="T:System.Security.AccessControl.RawAcl" /> object. </summary> <returns> The number of ACEs in the current <see cref="T:System.Security.AccessControl.RawAcl" /> object. </returns> </member> <member name="M:System.Security.AccessControl.RawAcl.GetBinaryForm(System.Byte[],System.Int32)"> <summary> Marshals the contents of the <see cref="T:System.Security.AccessControl.RawAcl" /> object into the specified byte array beginning at the specified offset. </summary> <param name="binaryForm"> The byte array into which the contents of the <see cref="T:System.Security.AccessControl.RawAcl" /> is marshaled. </param> <param name="offset"> The offset at which to start marshaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.RawAcl" /> to be copied into <paramref name="array" />. </exception> </member> <member name="M:System.Security.AccessControl.RawAcl.InsertAce(System.Int32,System.Security.AccessControl.GenericAce)"> <summary> Inserts the specified Access Control Entry (ACE) at the specified index. </summary> <param name="index"> The position at which to add the new ACE. Specify the value of the <see cref="P:System.Security.AccessControl.RawAcl.Count" /> property to insert an ACE at the end of the <see cref="T:System.Security.AccessControl.RawAcl" /> object. </param> <param name="ace"> The ACE to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.GenericAcl" /> to be copied into <paramref name="array" />. </exception> </member> <member name="P:System.Security.AccessControl.RawAcl.Item(System.Int32)"> <summary> Gets or sets the Access Control Entry (ACE) at the specified index. </summary> <returns> The ACE at the specified index. </returns> <param name="index"> The zero-based index of the ACE to get or set. </param> </member> <member name="M:System.Security.AccessControl.RawAcl.RemoveAce(System.Int32)"> <summary> Removes the Access Control Entry (ACE) at the specified location. </summary> <param name="index"> The zero-based index of the ACE to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="index" /> parameter is higher than the value of the <see cref="P:System.Security.AccessControl.RawAcl.Count" /> property minus one or is negative. </exception> </member> <member name="P:System.Security.AccessControl.RawAcl.Revision"> <summary> Gets the revision level of the <see cref="T:System.Security.AccessControl.RawAcl" />. </summary> <returns> A byte value that specifies the revision level of the <see cref="T:System.Security.AccessControl.RawAcl" />. </returns> </member> <member name="T:System.Security.AccessControl.RawSecurityDescriptor"> <summary> Represents a security descriptor. A security descriptor includes an owner, a primary group, a Discretionary Access Control List (DACL), and a System Access Control List (SACL). </summary> </member> <member name="M:System.Security.AccessControl.RawSecurityDescriptor.#ctor(System.Byte[],System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> class from the specified array of byte values. </summary> <param name="binaryForm"> The array of byte values from which to create the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </param> <param name="offset"> The offset in the <paramref name="binaryForm" /> array at which to begin copying. </param> </member> <member name="M:System.Security.AccessControl.RawSecurityDescriptor.#ctor(System.Security.AccessControl.ControlFlags,System.Security.Principal.SecurityIdentifier,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.RawAcl,System.Security.AccessControl.RawAcl)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> class with the specified values. </summary> <param name="flags"> Flags that specify behavior of the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </param> <param name="owner"> The owner for the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </param> <param name="group"> The primary group for the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </param> <param name="systemAcl"> The System Access Control List (SACL) for the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </param> <param name="discretionaryAcl"> The Discretionary Access Control List (DACL) for the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </param> </member> <member name="M:System.Security.AccessControl.RawSecurityDescriptor.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> class from the specified Security Descriptor Definition Language (SDDL) string. </summary> <param name="sddlForm"> The SDDL string from which to create the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </param> </member> <member name="P:System.Security.AccessControl.RawSecurityDescriptor.ControlFlags"> <summary> Gets values that specify behavior of the <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </summary> <returns> One or more values of the <see cref="T:System.Security.AccessControl.ControlFlags" /> enumeration combined with a logical OR operation. </returns> </member> <member name="P:System.Security.AccessControl.RawSecurityDescriptor.DiscretionaryAcl"> <summary> Gets or sets the Discretionary Access Control List (DACL) for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. The DACL contains access rules. </summary> <returns> The DACL for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </returns> </member> <member name="P:System.Security.AccessControl.RawSecurityDescriptor.Group"> <summary> Gets or sets the primary group for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </summary> <returns> The primary group for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </returns> </member> <member name="P:System.Security.AccessControl.RawSecurityDescriptor.Owner"> <summary> Gets or sets the owner of the object associated with this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </summary> <returns> The owner of the object associated with this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </returns> </member> <member name="P:System.Security.AccessControl.RawSecurityDescriptor.ResourceManagerControl"> <summary> Gets or sets a byte value that represents the resource manager control bits associated with this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </summary> <returns> A byte value that represents the resource manager control bits associated with this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </returns> </member> <member name="M:System.Security.AccessControl.RawSecurityDescriptor.SetFlags(System.Security.AccessControl.ControlFlags)"> <summary> Sets the <see cref="P:System.Security.AccessControl.RawSecurityDescriptor.ControlFlags" /> property of this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object to the specified value. </summary> <param name="flags"> One or more values of the <see cref="T:System.Security.AccessControl.ControlFlags" /> enumeration combined with a logical OR operation. </param> </member> <member name="P:System.Security.AccessControl.RawSecurityDescriptor.SystemAcl"> <summary> Gets or sets the System Access Control List (SACL) for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. The SACL contains audit rules. </summary> <returns> The SACL for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. </returns> </member> <member name="T:System.Security.AccessControl.RegistryAccessRule"> <summary> Represents a set of access rights allowed or denied for a user or group. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.RegistryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.RegistryRights,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> class, specifying the user or group the rule applies to, the access rights, and whether the specified access rights are allowed or denied. </summary> <param name="identity"> The user or group the rule applies to. Must be of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> or a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="registryRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values indicating the rights allowed or denied. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values indicating whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="registryRights" /> specifies an invalid value. -or- <paramref name="type" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identity" /> is null. -or- <paramref name="eventRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="M:System.Security.AccessControl.RegistryAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.RegistryRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> class, specifying the user or group the rule applies to, the access rights, the inheritance flags, the propagation flags, and whether the specified access rights are allowed or denied. </summary> <param name="identity"> The user or group the rule applies to. Must be of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> or a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="registryRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values specifying the rights allowed or denied. </param> <param name="inheritanceFlags"> A bitwise combination of <see cref="T:System.Security.AccessControl.InheritanceFlags" /> flags specifying how access rights are inherited from other objects. </param> <param name="propagationFlags"> A bitwise combination of <see cref="T:System.Security.AccessControl.PropagationFlags" /> flags specifying how access rights are propagated to other objects. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values specifying whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="registryRights" /> specifies an invalid value. -or- <paramref name="type" /> specifies an invalid value. -or- <paramref name="inheritanceFlags" /> specifies an invalid value. -or- <paramref name="propagationFlags" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identity" /> is null. -or- <paramref name="registryRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="M:System.Security.AccessControl.RegistryAccessRule.#ctor(System.String,System.Security.AccessControl.RegistryRights,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> class, specifying the name of the user or group the rule applies to, the access rights, and whether the specified access rights are allowed or denied. </summary> <param name="identity"> The name of the user or group the rule applies to. </param> <param name="registryRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values indicating the rights allowed or denied. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values indicating whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="registryRights" /> specifies an invalid value. -or- <paramref name="type" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="registryRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is null. -or- <paramref name="identity" /> is a zero-length string. -or- <paramref name="identity" /> is longer than 512 characters. </exception> </member> <member name="M:System.Security.AccessControl.RegistryAccessRule.#ctor(System.String,System.Security.AccessControl.RegistryRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> class, specifying the name of the user or group the rule applies to, the access rights, the inheritance flags, the propagation flags, and whether the specified access rights are allowed or denied. </summary> <param name="identity"> The name of the user or group the rule applies to. </param> <param name="registryRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values indicating the rights allowed or denied. </param> <param name="inheritanceFlags"> A bitwise combination of <see cref="T:System.Security.AccessControl.InheritanceFlags" /> flags specifying how access rights are inherited from other objects. </param> <param name="propagationFlags"> A bitwise combination of <see cref="T:System.Security.AccessControl.PropagationFlags" /> flags specifying how access rights are propagated to other objects. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values specifying whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="registryRights" /> specifies an invalid value. -or- <paramref name="type" /> specifies an invalid value. -or- <paramref name="inheritanceFlags" /> specifies an invalid value. -or- <paramref name="propagationFlags" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="eventRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is null. -or- <paramref name="identity" /> is a zero-length string. -or- <paramref name="identity" /> is longer than 512 characters. </exception> </member> <member name="P:System.Security.AccessControl.RegistryAccessRule.RegistryRights"> <summary> Gets the rights allowed or denied by the access rule. </summary> <returns> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values indicating the rights allowed or denied by the access rule. </returns> </member> <member name="T:System.Security.AccessControl.RegistryAuditRule"> <summary> Represents a set of access rights to be audited for a user or group. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.RegistryAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.RegistryRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RegistryAuditRule" /> class, specifying the user or group to audit, the rights to audit, whether to take inheritance into account, and whether to audit success, failure, or both. </summary> <param name="identity"> The user or group the rule applies to. Must be of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> or a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </param> <param name="registryRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values specifying the kinds of access to audit. </param> <param name="inheritanceFlags"> A bitwise combination of <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values specifying whether the audit rule applies to subkeys of the current key. </param> <param name="propagationFlags"> A bitwise combination of <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that affect the way an inherited audit rule is propagated to subkeys of the current key. </param> <param name="flags"> A bitwise combination of <see cref="T:System.Security.AccessControl.AuditFlags" /> values specifying whether to audit success, failure, or both. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="eventRights" /> specifies an invalid value. -or- <paramref name="flags" /> specifies an invalid value. -or- <paramref name="inheritanceFlags" /> specifies an invalid value. -or- <paramref name="propagationFlags" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identity" /> is null. -or- <paramref name="registryRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="M:System.Security.AccessControl.RegistryAuditRule.#ctor(System.String,System.Security.AccessControl.RegistryRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RegistryAuditRule" /> class, specifying the name of the user or group to audit, the rights to audit, whether to take inheritance into account, and whether to audit success, failure, or both. </summary> <param name="identity"> The name of the user or group the rule applies to. </param> <param name="registryRights"> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values specifying the kinds of access to audit. </param> <param name="inheritanceFlags"> A combination of <see cref="T:System.Security.AccessControl.InheritanceFlags" /> flags that specifies whether the audit rule applies to subkeys of the current key. </param> <param name="propagationFlags"> A combination of <see cref="T:System.Security.AccessControl.PropagationFlags" /> flags that affect the way an inherited audit rule is propagated to subkeys of the current key. </param> <param name="flags"> A bitwise combination of <see cref="T:System.Security.AccessControl.AuditFlags" /> values specifying whether to audit success, failure, or both. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="eventRights" /> specifies an invalid value. -or- <paramref name="flags" /> specifies an invalid value. -or- <paramref name="inheritanceFlags" /> specifies an invalid value. -or- <paramref name="propagationFlags" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="registryRights" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identity" /> is null. -or- <paramref name="identity" /> is a zero-length string. -or- <paramref name="identity" /> is longer than 512 characters. </exception> </member> <member name="P:System.Security.AccessControl.RegistryAuditRule.RegistryRights"> <summary> Gets the access rights affected by the audit rule. </summary> <returns> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values that indicates the rights affected by the audit rule. </returns> </member> <member name="T:System.Security.AccessControl.RegistryRights"> <summary> Specifies the access control rights that can be applied to registry objects. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.QueryValues"> <summary> The right to query the name/value pairs in a registry key. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.SetValue"> <summary> The right to create, delete, or set name/value pairs in a registry key. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.CreateSubKey"> <summary> The right to create subkeys of a registry key. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.EnumerateSubKeys"> <summary> The right to list the subkeys of a registry key. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.Notify"> <summary> The right to request notification of changes on a registry key. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.CreateLink"> <summary> Reserved for system use. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.ExecuteKey"> <summary> Same as <see cref="F:System.Security.AccessControl.RegistryRights.ReadKey" />. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.ReadKey"> <summary> The right to query the name/value pairs in a registry key, to request notification of changes, to enumerate its subkeys, and to read its access rules and audit rules. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.WriteKey"> <summary> The right to create, delete, and set the name/value pairs in a registry key, to create or delete subkeys, to request notification of changes, to enumerate its subkeys, and to read its access rules and audit rules. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.Delete"> <summary> The right to delete a registry key. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.ReadPermissions"> <summary> The right to open and copy the access rules and audit rules for a registry key. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.ChangePermissions"> <summary> The right to change the access rules and audit rules associated with a registry key. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.TakeOwnership"> <summary> The right to change the owner of a registry key. </summary> </member> <member name="F:System.Security.AccessControl.RegistryRights.FullControl"> <summary> The right to exert full control over a registry key, and to modify its access rules and audit rules. </summary> </member> <member name="T:System.Security.AccessControl.RegistrySecurity"> <summary> Represents the Windows access control security for a registry key. This class cannot be inherited. </summary> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.RegistrySecurity" /> class with default values. </summary> </member> <member name="P:System.Security.AccessControl.RegistrySecurity.AccessRightType"> <summary> Gets the enumeration type that the <see cref="T:System.Security.AccessControl.RegistrySecurity" /> class uses to represent access rights. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.RegistryRights" /> enumeration. </returns> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)"> <summary> Creates a new access control rule for the specified user, with the specified access rights, access control, and flags. </summary> <returns> A <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> object representing the specified rights for the specified user. </returns> <param name="identityReference"> An <see cref="T:System.Security.Principal.IdentityReference" /> that identifies the user or group the rule applies to. </param> <param name="accessMask"> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values specifying the access rights to allow or deny, cast to an integer. </param> <param name="isInherited"> A Boolean value specifying whether the rule is inherited. </param> <param name="inheritanceFlags"> A bitwise combination of <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values specifying how the rule is inherited by subkeys. </param> <param name="propagationFlags"> A bitwise combination of <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that modify the way the rule is inherited by subkeys. Meaningless if the value of <paramref name="inheritanceFlags" /> is <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="type"> One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values specifying whether the rights are allowed or denied. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="type" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identityReference" /> is null. -or- <paramref name="accessMask" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identityReference" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="P:System.Security.AccessControl.RegistrySecurity.AccessRuleType"> <summary> Gets the type that the <see cref="T:System.Security.AccessControl.RegistrySecurity" /> class uses to represent access rules. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> class. </returns> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.AddAccessRule(System.Security.AccessControl.RegistryAccessRule)"> <summary> Searches for a matching access control with which the new rule can be merged. If none are found, adds the new rule. </summary> <param name="rule"> The access control rule to add. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.AddAuditRule(System.Security.AccessControl.RegistryAuditRule)"> <summary> Searches for an audit rule with which the new rule can be merged. If none are found, adds the new rule. </summary> <param name="rule"> The audit rule to add. The user specified by this rule determines the search. </param> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)"> <summary> Creates a new audit rule, specifying the user the rule applies to, the access rights to audit, the inheritance and propagation of the rule, and the outcome that triggers the rule. </summary> <returns> A <see cref="T:System.Security.AccessControl.RegistryAuditRule" /> object representing the specified audit rule for the specified user, with the specified flags. The return type of the method is the base class, <see cref="T:System.Security.AccessControl.AuditRule" />, but the return value can be cast safely to the derived class. </returns> <param name="identityReference"> An <see cref="T:System.Security.Principal.IdentityReference" /> that identifies the user or group the rule applies to. </param> <param name="accessMask"> A bitwise combination of <see cref="T:System.Security.AccessControl.RegistryRights" /> values specifying the access rights to audit, cast to an integer. </param> <param name="isInherited"> A Boolean value specifying whether the rule is inherited. </param> <param name="inheritanceFlags"> A bitwise combination of <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values specifying how the rule is inherited by subkeys. </param> <param name="propagationFlags"> A bitwise combination of <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that modify the way the rule is inherited by subkeys. Meaningless if the value of <paramref name="inheritanceFlags" /> is <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />. </param> <param name="flags"> A bitwise combination of <see cref="T:System.Security.AccessControl.AuditFlags" /> values specifying whether to audit successful access, failed access, or both. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="flags" /> specifies an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="identityReference" /> is null. -or- <paramref name="accessMask" /> is zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="identityReference" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />. </exception> </member> <member name="P:System.Security.AccessControl.RegistrySecurity.AuditRuleType"> <summary> Gets the type that the <see cref="T:System.Security.AccessControl.RegistrySecurity" /> class uses to represent audit rules. </summary> <returns> A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.RegistryAuditRule" /> class. </returns> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.RemoveAccessRule(System.Security.AccessControl.RegistryAccessRule)"> <summary> Searches for an access control rule with the same user and <see cref="T:System.Security.AccessControl.AccessControlType" /> (allow or deny) as the specified access rule, and with compatible inheritance and propagation flags; if such a rule is found, the rights contained in the specified access rule are removed from it. </summary> <returns>true if a compatible rule is found; otherwise false. </returns> <param name="rule"> A <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> that specifies the user and <see cref="T:System.Security.AccessControl.AccessControlType" /> to search for, and a set of inheritance and propagation flags that a matching rule, if found, must be compatible with. Specifies the rights to remove from the compatible rule, if found. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.RemoveAccessRuleAll(System.Security.AccessControl.RegistryAccessRule)"> <summary> Searches for all access control rules with the same user and <see cref="T:System.Security.AccessControl.AccessControlType" /> (allow or deny) as the specified rule and, if found, removes them. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> that specifies the user and <see cref="T:System.Security.AccessControl.AccessControlType" /> to search for. Any rights, inheritance flags, or propagation flags specified by this rule are ignored. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.RegistryAccessRule)"> <summary> Searches for an access control rule that exactly matches the specified rule and, if found, removes it. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.RemoveAuditRule(System.Security.AccessControl.RegistryAuditRule)"> <summary> Searches for an audit control rule with the same user as the specified rule, and with compatible inheritance and propagation flags; if a compatible rule is found, the rights contained in the specified rule are removed from it. </summary> <returns>true if a compatible rule is found; otherwise, false. </returns> <param name="rule"> A <see cref="T:System.Security.AccessControl.RegistryAuditRule" /> that specifies the user to search for, and a set of inheritance and propagation flags that a matching rule, if found, must be compatible with. Specifies the rights to remove from the compatible rule, if found. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.RemoveAuditRuleAll(System.Security.AccessControl.RegistryAuditRule)"> <summary> Searches for all audit rules with the same user as the specified rule and, if found, removes them. </summary> <param name="rule"> A <see cref="T:System.Security.AccessControl.RegistryAuditRule" /> that specifies the user to search for. Any rights, inheritance flags, or propagation flags specified by this rule are ignored. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.RegistryAuditRule)"> <summary> Searches for an audit rule that exactly matches the specified rule and, if found, removes it. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.RegistryAuditRule" /> to be removed. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.ResetAccessRule(System.Security.AccessControl.RegistryAccessRule)"> <summary> Removes all access control rules with the same user as the specified rule, regardless of <see cref="T:System.Security.AccessControl.AccessControlType" />, and then adds the specified rule. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> to add. The user specified by this rule determines the rules to remove before this rule is added. </param> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.SetAccessRule(System.Security.AccessControl.RegistryAccessRule)"> <summary> Removes all access control rules with the same user and <see cref="T:System.Security.AccessControl.AccessControlType" /> (allow or deny) as the specified rule, and then adds the specified rule. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.RegistryAccessRule" /> to add. The user and <see cref="T:System.Security.AccessControl.AccessControlType" /> of this rule determine the rules to remove before this rule is added. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="M:System.Security.AccessControl.RegistrySecurity.SetAuditRule(System.Security.AccessControl.RegistryAuditRule)"> <summary> Removes all audit rules with the same user as the specified rule, regardless of the <see cref="T:System.Security.AccessControl.AuditFlags" /> value, and then adds the specified rule. </summary> <param name="rule"> The <see cref="T:System.Security.AccessControl.RegistryAuditRule" /> to add. The user specified by this rule determines the rules to remove before this rule is added. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rule" /> is null. </exception> </member> <member name="T:System.Security.AccessControl.ResourceType"> <summary> Specifies the defined native object types. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.Unknown"> <summary> An unknown object type. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.FileObject"> <summary> A file or directory. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.Service"> <summary> A Windows service. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.Printer"> <summary> A printer. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.RegistryKey"> <summary> A registry key. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.LMShare"> <summary> A network share. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.KernelObject"> <summary> A local kernel object. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.WindowObject"> <summary> A window station or desktop object on the local computer. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.DSObject"> <summary> A directory service (DS) object or a property set or property of a directory service object. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.DSObjectAll"> <summary> A directory service object and all of its property sets and properties. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.ProviderDefined"> <summary> An object defined by a provider. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.WmiGuidObject"> <summary> A Windows Management Instrumentation (WMI) object. </summary> </member> <member name="F:System.Security.AccessControl.ResourceType.RegistryWow6432Key"> <summary> An object for a registry entry under WOW64. </summary> </member> <member name="T:System.Security.AccessControl.SecurityInfos"> <summary> Specifies the section of a security descriptor to be queried or set. </summary> </member> <member name="F:System.Security.AccessControl.SecurityInfos.Owner"> <summary> Specifies the owner identifier. </summary> </member> <member name="F:System.Security.AccessControl.SecurityInfos.Group"> <summary> Specifies the primary group identifier. </summary> </member> <member name="F:System.Security.AccessControl.SecurityInfos.DiscretionaryAcl"> <summary> Specifies the discretionary access control list (DACL). </summary> </member> <member name="F:System.Security.AccessControl.SecurityInfos.SystemAcl"> <summary> Specifies the system access control list (SACL). </summary> </member> <member name="T:System.Security.AccessControl.SystemAcl"> <summary> Represents a System Access Control List (SACL). </summary> </member> <member name="M:System.Security.AccessControl.SystemAcl.#ctor(System.Boolean,System.Boolean,System.Byte,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.SystemAcl" /> class with the specified values. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a container. </param> <param name="isDS">true if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a directory object Access Control List (ACL). </param> <param name="revision"> The revision level of the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object. </param> <param name="capacity"> The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.SystemAcl" /> object can contain. This number is to be used only as a hint. </param> </member> <member name="M:System.Security.AccessControl.SystemAcl.#ctor(System.Boolean,System.Boolean,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.SystemAcl" /> class with the specified values. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a container. </param> <param name="isDS">true if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a directory object Access Control List (ACL). </param> <param name="capacity"> The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.SystemAcl" /> object can contain. This number is to be used only as a hint. </param> </member> <member name="M:System.Security.AccessControl.SystemAcl.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.RawAcl)"> <summary> Initializes a new instance of the <see cref="T:System.Security.AccessControl.SystemAcl" /> class with the specified values from the specified <see cref="T:System.Security.AccessControl.RawAcl" /> object. </summary> <param name="isContainer">true if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a container. </param> <param name="isDS">true if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a directory object Access Control List (ACL). </param> <param name="rawAcl"> The underlying <see cref="T:System.Security.AccessControl.RawAcl" /> object for the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object. Specify null to create an empty ACL. </param> </member> <member name="M:System.Security.AccessControl.SystemAcl.AddAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)"> <summary> Adds an audit rule to the current <see cref="T:System.Security.AccessControl.SystemAcl" /> object. </summary> <param name="auditFlags"> The type of audit rule to add. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an audit rule. </param> <param name="accessMask"> The access mask for the new audit rule. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the new audit rule. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the new audit rule. </param> </member> <member name="M:System.Security.AccessControl.SystemAcl.AddAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)"> <summary> Adds an audit rule with the specified settings to the current <see cref="T:System.Security.AccessControl.SystemAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type for the new audit rule. </summary> <param name="auditFlags"> The type of audit rule to add. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an audit rule. </param> <param name="accessMask"> The access mask for the new audit rule. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the new audit rule. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the new audit rule. </param> <param name="objectFlags"> Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-null values. </param> <param name="objectType"> The identity of the class of objects to which the new audit rule applies. </param> <param name="inheritedObjectType"> The identity of the class of child objects which can inherit the new audit rule. </param> </member> <member name="M:System.Security.AccessControl.SystemAcl.RemoveAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)"> <summary> Removes the specified audit rule from the current <see cref="T:System.Security.AccessControl.SystemAcl" /> object. </summary> <returns>true if this method successfully removes the specified audit rule; otherwise, false. </returns> <param name="auditFlags"> The type of audit rule to remove. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an audit rule. </param> <param name="accessMask"> The access mask for the rule to be removed. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the rule to be removed. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the rule to be removed. </param> </member> <member name="M:System.Security.AccessControl.SystemAcl.RemoveAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)"> <summary> Removes the specified audit rule from the current <see cref="T:System.Security.AccessControl.SystemAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type. </summary> <returns>true if this method successfully removes the specified audit rule; otherwise, false. </returns> <param name="auditFlags"> The type of audit rule to remove. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an audit rule. </param> <param name="accessMask"> The access mask for the rule to be removed. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the rule to be removed. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the rule to be removed. </param> <param name="objectFlags"> Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-null values. </param> <param name="objectType"> The identity of the class of objects to which the removed audit control rule applies. </param> <param name="inheritedObjectType"> The identity of the class of child objects which can inherit the removed audit rule. </param> </member> <member name="M:System.Security.AccessControl.SystemAcl.RemoveAuditSpecific(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)"> <summary> Removes the specified audit rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. </summary> <param name="auditFlags"> The type of audit rule to remove. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an audit rule. </param> <param name="accessMask"> The access mask for the rule to be removed. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the rule to be removed. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the rule to be removed. </param> </member> <member name="M:System.Security.AccessControl.SystemAcl.RemoveAuditSpecific(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)"> <summary> Removes the specified audit rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type. </summary> <param name="auditFlags"> The type of audit rule to remove. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an audit rule. </param> <param name="accessMask"> The access mask for the rule to be removed. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the rule to be removed. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the rule to be removed. </param> <param name="objectFlags"> Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-null values. </param> <param name="objectType"> The identity of the class of objects to which the removed audit control rule applies. </param> <param name="inheritedObjectType"> The identity of the class of child objects which can inherit the removed audit rule. </param> </member> <member name="M:System.Security.AccessControl.SystemAcl.SetAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)"> <summary> Sets the specified audit rule for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <param name="auditFlags"> The audit condition to set. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an audit rule. </param> <param name="accessMask"> The access mask for the new audit rule. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the new audit rule. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the new audit rule. </param> </member> <member name="M:System.Security.AccessControl.SystemAcl.SetAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)"> <summary> Sets the specified audit rule for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type. </summary> <param name="auditFlags"> The audit condition to set. </param> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an audit rule. </param> <param name="accessMask"> The access mask for the new audit rule. </param> <param name="inheritanceFlags"> Flags that specify the inheritance properties of the new audit rule. </param> <param name="propagationFlags"> Flags that specify the inheritance propagation properties for the new audit rule. </param> <param name="objectFlags"> Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-null values. </param> <param name="objectType"> The identity of the class of objects to which the new audit rule applies. </param> <param name="inheritedObjectType"> The identity of the class of child objects which can inherit the new audit rule. </param> </member> <member name="T:System.Security.Cryptography.AsymmetricAlgorithm"> <summary> Represents the abstract base class from which all implementations of asymmetric algorithms must inherit. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> class. </summary> <exception cref="T:System.Security.Cryptography.CryptographicException"> The implementation of the derived class is not valid. </exception> </member> <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.Clear"> <summary> Releases all resources used by the <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> class. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.Create"> <summary> Creates a default cryptographic object used to perform the asymmetric algorithm. </summary> <returns> The cryptographic object used to perform the asymmetric algorithm. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.Create(System.String)"> <summary> Creates the specified cryptographic object used to perform the asymmetric algorithm. </summary> <returns> A cryptographic object used to perform the asymmetric algorithm. </returns> <param name="algName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> to use. </param> </member> <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.Dispose(System.Boolean)"> <summary> When overridden in a derived class, releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.FromXmlString(System.String)"> <summary> When overridden in a derived class, reconstructs an <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> object from an XML string. </summary> <param name="xmlString"> The XML string to use to reconstruct the <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> object. </param> </member> <member name="P:System.Security.Cryptography.AsymmetricAlgorithm.KeyExchangeAlgorithm"> <summary> When overridden in a derived class, gets the name of the key exchange algorithm. </summary> <returns> The name of the key exchange algorithm. </returns> </member> <member name="P:System.Security.Cryptography.AsymmetricAlgorithm.KeySize"> <summary> Gets or sets the size, in bits, of the key modulus used by the asymmetric algorithm. </summary> <returns> The size, in bits, of the key modulus used by the asymmetric algorithm. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The key modulus size is invalid. </exception> </member> <member name="F:System.Security.Cryptography.AsymmetricAlgorithm.KeySizeValue"> <summary> Represents the size, in bits, of the key modulus used by the asymmetric algorithm. </summary> </member> <member name="P:System.Security.Cryptography.AsymmetricAlgorithm.LegalKeySizes"> <summary> Gets the key sizes that are supported by the asymmetric algorithm. </summary> <returns> An array that contains the key sizes supported by the asymmetric algorithm. </returns> </member> <member name="F:System.Security.Cryptography.AsymmetricAlgorithm.LegalKeySizesValue"> <summary> Specifies the key sizes that are supported by the asymmetric algorithm. </summary> </member> <member name="P:System.Security.Cryptography.AsymmetricAlgorithm.SignatureAlgorithm"> <summary> Gets the name of the signature algorithm. </summary> <returns> The name of the signature algorithm. </returns> </member> <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.System#IDisposable#Dispose"> <summary> For a description of this member, see <see cref="M:System.IDisposable.Dispose" />. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.ToXmlString(System.Boolean)"> <summary> When overridden in a derived class, creates and returns an XML string representation of the current <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> object. </summary> <returns> An XML string encoding of the current <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> object. </returns> <param name="includePrivateParameters">true to include private parameters; otherwise, false. </param> </member> <member name="T:System.Security.Cryptography.AsymmetricKeyExchangeDeformatter"> <summary> Represents the base class from which all asymmetric key exchange deformatters derive. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricKeyExchangeDeformatter.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.AsymmetricKeyExchangeDeformatter" />. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricKeyExchangeDeformatter.DecryptKeyExchange(System.Byte[])"> <summary> When overridden in a derived class, extracts secret information from the encrypted key exchange data. </summary> <returns> The secret information derived from the key exchange data. </returns> <param name="rgb"> The key exchange data within which the secret information is hidden. </param> </member> <member name="P:System.Security.Cryptography.AsymmetricKeyExchangeDeformatter.Parameters"> <summary> When overridden in a derived class, gets or sets the parameters for the asymmetric key exchange. </summary> <returns> A string in XML format containing the parameters of the asymmetric key exchange operation. </returns> </member> <member name="M:System.Security.Cryptography.AsymmetricKeyExchangeDeformatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> When overridden in a derived class, sets the private key to use for decrypting the secret information. </summary> <param name="key"> The instance of the implementation of <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> that holds the private key. </param> </member> <member name="T:System.Security.Cryptography.AsymmetricKeyExchangeFormatter"> <summary> Represents the base class from which all asymmetric key exchange formatters derive. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricKeyExchangeFormatter.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.AsymmetricKeyExchangeFormatter" />. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricKeyExchangeFormatter.CreateKeyExchange(System.Byte[])"> <summary> When overridden in a derived class, creates the encrypted key exchange data from the specified input data. </summary> <returns> The encrypted key exchange data to be sent to the intended recipient. </returns> <param name="data"> The secret information to be passed in the key exchange. </param> </member> <member name="M:System.Security.Cryptography.AsymmetricKeyExchangeFormatter.CreateKeyExchange(System.Byte[],System.Type)"> <summary> When overridden in a derived class, creates the encrypted key exchange data from the specified input data. </summary> <returns> The encrypted key exchange data to be sent to the intended recipient. </returns> <param name="data"> The secret information to be passed in the key exchange. </param> <param name="symAlgType"> This parameter is not used in the current version. </param> </member> <member name="P:System.Security.Cryptography.AsymmetricKeyExchangeFormatter.Parameters"> <summary> When overridden in a derived class, gets the parameters for the asymmetric key exchange. </summary> <returns> A string in XML format containing the parameters of the asymmetric key exchange operation. </returns> </member> <member name="M:System.Security.Cryptography.AsymmetricKeyExchangeFormatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> When overridden in a derived class, sets the public key to use for encrypting the secret information. </summary> <param name="key"> The instance of the implementation of <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> that holds the public key. </param> </member> <member name="T:System.Security.Cryptography.AsymmetricSignatureDeformatter"> <summary> Represents the abstract base class from which all implementations of asymmetric signature deformatters derive. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricSignatureDeformatter.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.AsymmetricSignatureDeformatter" />. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricSignatureDeformatter.SetHashAlgorithm(System.String)"> <summary> When overridden in a derived class, sets the hash algorithm to use for verifying the signature. </summary> <param name="strName"> The name of the hash algorithm to use for verifying the signature. </param> </member> <member name="M:System.Security.Cryptography.AsymmetricSignatureDeformatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> When overridden in a derived class, sets the public key to use for verifying the signature. </summary> <param name="key"> The instance of an implementation of <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> that holds the public key. </param> </member> <member name="M:System.Security.Cryptography.AsymmetricSignatureDeformatter.VerifySignature(System.Byte[],System.Byte[])"> <summary> When overridden in a derived class, verifies the signature for the specified data. </summary> <returns>true if <paramref name="rgbSignature" /> matches the signature computed using the specified hash algorithm and key on <paramref name="rgbHash" />; otherwise, false. </returns> <param name="rgbHash"> The data signed with <paramref name="rgbSignature" />. </param> <param name="rgbSignature"> The signature to be verified for <paramref name="rgbHash" />. </param> </member> <member name="M:System.Security.Cryptography.AsymmetricSignatureDeformatter.VerifySignature(System.Security.Cryptography.HashAlgorithm,System.Byte[])"> <summary> Verifies the signature from the specified hash value. </summary> <returns>true if the signature is valid for the hash; otherwise, false. </returns> <param name="hash"> The hash algorithm to use to verify the signature. </param> <param name="rgbSignature"> The signature to be verified. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="hash" /> parameter is null. </exception> </member> <member name="T:System.Security.Cryptography.AsymmetricSignatureFormatter"> <summary> Represents the base class from which all implementations of asymmetric signature formatters derive. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricSignatureFormatter.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.AsymmetricSignatureFormatter" />. </summary> </member> <member name="M:System.Security.Cryptography.AsymmetricSignatureFormatter.CreateSignature(System.Byte[])"> <summary> When overridden in a derived class, creates the signature for the specified data. </summary> <returns> The digital signature for the <paramref name="rgbHash" /> parameter. </returns> <param name="rgbHash"> The data to be signed. </param> </member> <member name="M:System.Security.Cryptography.AsymmetricSignatureFormatter.CreateSignature(System.Security.Cryptography.HashAlgorithm)"> <summary> Creates the signature from the specified hash value. </summary> <returns> The signature for the specified hash value. </returns> <param name="hash"> The hash algorithm to use to create the signature. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="hash" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.AsymmetricSignatureFormatter.SetHashAlgorithm(System.String)"> <summary> When overridden in a derived class, sets the hash algorithm to use for creating the signature. </summary> <param name="strName"> The name of the hash algorithm to use for creating the signature. </param> </member> <member name="M:System.Security.Cryptography.AsymmetricSignatureFormatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> When overridden in a derived class, sets the asymmetric algorithm to use to create the signature. </summary> <param name="key"> The instance of the implementation of <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> to use to create the signature. </param> </member> <member name="T:System.Security.Cryptography.CipherMode"> <summary> Specifies the block cipher mode to use for encryption. </summary> </member> <member name="F:System.Security.Cryptography.CipherMode.CBC"> <summary> The Cipher Block Chaining (CBC) mode introduces feedback. Before each plain text block is encrypted, it is combined with the cipher text of the previous block by a bitwise exclusive OR operation. This ensures that even if the plain text contains many identical blocks, they will each encrypt to a different cipher text block. The initialization vector is combined with the first plain text block by a bitwise exclusive OR operation before the block is encrypted. If a single bit of the cipher text block is mangled, the corresponding plain text block will also be mangled. In addition, a bit in the subsequent block, in the same position as the original mangled bit, will be mangled. </summary> </member> <member name="F:System.Security.Cryptography.CipherMode.ECB"> <summary> The Electronic Codebook (ECB) mode encrypts each block individually. This means that any blocks of plain text that are identical and are in the same message, or in a different message encrypted with the same key, will be transformed into identical cipher text blocks. If the plain text to be encrypted contains substantial repetition, it is feasible for the cipher text to be broken one block at a time. Also, it is possible for an active adversary to substitute and exchange individual blocks without detection. If a single bit of the cipher text block is mangled, the entire corresponding plain text block will also be mangled. </summary> </member> <member name="F:System.Security.Cryptography.CipherMode.OFB"> <summary> The Output Feedback (OFB) mode processes small increments of plain text into cipher text instead of processing an entire block at a time. This mode is similar to CFB; the only difference between the two modes is the way that the shift register is filled. If a bit in the cipher text is mangled, the corresponding bit of plain text will be mangled. However, if there are extra or missing bits from the cipher text, the plain text will be mangled from that point on. </summary> </member> <member name="F:System.Security.Cryptography.CipherMode.CFB"> <summary> The Cipher Feedback (CFB) mode processes small increments of plain text into cipher text, instead of processing an entire block at a time. This mode uses a shift register that is one block in length and is divided into sections. For example, if the block size is eight bytes, with one byte processed at a time, the shift register is divided into eight sections. If a bit in the cipher text is mangled, one plain text bit is mangled and the shift register is corrupted. This results in the next several plain text increments being mangled until the bad bit is shifted out of the shift register. </summary> </member> <member name="F:System.Security.Cryptography.CipherMode.CTS"> <summary> The Cipher Text Stealing (CTS) mode handles any length of plain text and produces cipher text whose length matches the plain text length. This mode behaves like the CBC mode for all but the last two blocks of the plain text. </summary> </member> <member name="T:System.Security.Cryptography.CryptoAPITransform"> <summary> Performs a cryptographic transformation of data. This class cannot be inherited. </summary> </member> <member name="P:System.Security.Cryptography.CryptoAPITransform.CanReuseTransform"> <summary> Gets a value indicating whether the current transform can be reused. </summary> <returns> Always true. </returns> </member> <member name="P:System.Security.Cryptography.CryptoAPITransform.CanTransformMultipleBlocks"> <summary> Gets a value indicating whether multiple blocks can be transformed. </summary> <returns>true if multiple blocks can be transformed; otherwise, false. </returns> </member> <member name="M:System.Security.Cryptography.CryptoAPITransform.Clear"> <summary> Releases all resources used by the <see cref="T:System.Security.Cryptography.CryptoAPITransform" /> method. </summary> </member> <member name="P:System.Security.Cryptography.CryptoAPITransform.InputBlockSize"> <summary> Gets the input block size. </summary> <returns> The input block size in bytes. </returns> </member> <member name="P:System.Security.Cryptography.CryptoAPITransform.KeyHandle"> <summary> Gets the key handle. </summary> <returns> The key handle. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.CryptoAPITransform.OutputBlockSize"> <summary> Gets the output block size. </summary> <returns> The output block size in bytes. </returns> </member> <member name="M:System.Security.Cryptography.CryptoAPITransform.Reset"> <summary> Resets the internal state of <see cref="T:System.Security.Cryptography.CryptoAPITransform" /> so that it can be used again to do a different encryption or decryption. </summary> </member> <member name="M:System.Security.Cryptography.CryptoAPITransform.System#IDisposable#Dispose"> <summary> Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. </summary> </member> <member name="M:System.Security.Cryptography.CryptoAPITransform.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Computes the transformation for the specified region of the input byte array and copies the resulting transformation to the specified region of the output byte array. </summary> <returns> The number of bytes written. </returns> <param name="inputBuffer"> The input on which to perform the operation on. </param> <param name="inputOffset"> The offset into the input byte array from which to begin using data from. </param> <param name="inputCount"> The number of bytes in the input byte array to use as data. </param> <param name="outputBuffer"> The output to which to write the data to. </param> <param name="outputOffset"> The offset into the output byte array from which to begin writing data from. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="inputBuffer" /> parameter is null. -or- The <paramref name="outputBuffer" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The length of the input buffer is less than the sum of the input offset and the input count. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="inputOffset" /> is out of range. This parameter requires a non-negative number. </exception> </member> <member name="M:System.Security.Cryptography.CryptoAPITransform.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)"> <summary> Computes the transformation for the specified region of the specified byte array. </summary> <returns> The computed transformation. </returns> <param name="inputBuffer"> The input on which to perform the operation on. </param> <param name="inputOffset"> The offset into the byte array from which to begin using data from. </param> <param name="inputCount"> The number of bytes in the byte array to use as data. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="inputBuffer" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="inputOffset" /> parameter is less than zero. -or- The <paramref name="inputCount" /> parameter is less than zero. -or- The length of the input buffer is less than the sum of the input offset and the input count. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The <see cref="F:System.Security.Cryptography.PaddingMode.PKCS7" /> padding is invalid. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="inputOffset" /> parameter is out of range. This parameter requires a non-negative number. </exception> </member> <member name="T:System.Security.Cryptography.CryptoConfig"> <summary> Accesses the cryptography configuration information. </summary> </member> <member name="M:System.Security.Cryptography.CryptoConfig.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptoConfig" /> class. </summary> </member> <member name="M:System.Security.Cryptography.CryptoConfig.CreateFromName(System.String)"> <summary> Creates a new instance of the specified cryptographic object. </summary> <returns> A new instance of the specified cryptographic object. </returns> <param name="name"> The simple name of the cryptographic object of which to create an instance. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm described by the <paramref name="name" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> </member> <member name="M:System.Security.Cryptography.CryptoConfig.CreateFromName(System.String,System.Object[])"> <summary> Creates a new instance of the specified cryptographic object with the specified arguments. </summary> <returns> A new instance of the specified cryptographic object. </returns> <param name="name"> The simple name of the cryptographic object of which to create an instance. </param> <param name="args"> The arguments used to create the specified cryptographic object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm described by the <paramref name="name" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> </member> <member name="M:System.Security.Cryptography.CryptoConfig.EncodeOID(System.String)"> <summary> Encodes the specified object identifier (OID). </summary> <returns> A byte array containing the encoded OID. </returns> <param name="str"> The OID to encode. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="str" /> parameter is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> An error occurred while encoding the OID. </exception> </member> <member name="M:System.Security.Cryptography.CryptoConfig.MapNameToOID(System.String)"> <summary> Gets the object identifier (OID) of the algorithm corresponding to the specified simple name. </summary> <returns> The OID of the specified algorithm. </returns> <param name="name"> The simple name of the algorithm for which to get the OID. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="T:System.Security.Cryptography.CryptographicException"> <summary> The exception that is thrown when an error occurs during a cryptographic operation. </summary> </member> <member name="M:System.Security.Cryptography.CryptographicException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> class with default properties. </summary> </member> <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> class with the specified HRESULT error code. </summary> <param name="hr"> The HRESULT error code. </param> </member> <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> class with a specified error message in the specified format. </summary> <param name="format"> The format used to output the error message. </param> <param name="insert"> The error message that explains the reason for the exception. </param> </member> <member name="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> <summary> The exception that is thrown when an unexpected operation occurs during a cryptographic operation. </summary> </member> <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with default properties. </summary> </member> <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with a specified error message in the specified format. </summary> <param name="format"> The format used to output the error message. </param> <param name="insert"> The error message that explains the reason for the exception. </param> </member> <member name="T:System.Security.Cryptography.CryptoStream"> <summary> Defines a stream that links data streams to cryptographic transformations. </summary> </member> <member name="M:System.Security.Cryptography.CryptoStream.#ctor(System.IO.Stream,System.Security.Cryptography.ICryptoTransform,System.Security.Cryptography.CryptoStreamMode)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptoStream" /> class with a target data stream, the transformation to use, and the mode of the stream. </summary> <param name="stream"> The stream on which to perform the cryptographic transformation. </param> <param name="transform"> The cryptographic transformation that is to be performed on the stream. </param> <param name="mode"> One of the <see cref="T:System.Security.Cryptography.CryptoStreamMode" /> values. </param> <exception cref="T:System.ArgumentException"> <paramref name="stream" /> is not readable. </exception> <exception cref="T:System.ArgumentException"> <paramref name="stream" /> is not writable. </exception> <exception cref="T:System.ArgumentException"> <paramref name="stream" /> is invalid. </exception> </member> <member name="P:System.Security.Cryptography.CryptoStream.CanRead"> <summary> Gets a value indicating whether the current <see cref="T:System.Security.Cryptography.CryptoStream" /> is readable. </summary> <returns>true if the current stream is readable; otherwise, false. </returns> </member> <member name="P:System.Security.Cryptography.CryptoStream.CanSeek"> <summary> Gets a value indicating whether you can seek within the current <see cref="T:System.Security.Cryptography.CryptoStream" />. </summary> <returns> Always false. </returns> </member> <member name="P:System.Security.Cryptography.CryptoStream.CanWrite"> <summary> Gets a value indicating whether the current <see cref="T:System.Security.Cryptography.CryptoStream" /> is writable. </summary> <returns>true if the current stream is writable; otherwise, false. </returns> </member> <member name="M:System.Security.Cryptography.CryptoStream.Clear"> <summary> Releases all resources used by the <see cref="T:System.Security.Cryptography.CryptoStream" />. </summary> </member> <member name="M:System.Security.Cryptography.CryptoStream.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.CryptoStream" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.Security.Cryptography.CryptoStream.Flush"> <summary> Clears all buffers for this stream and causes any buffered data to be written to the underlying device. </summary> </member> <member name="M:System.Security.Cryptography.CryptoStream.FlushFinalBlock"> <summary> Updates the underlying data source or repository with the current state of the buffer, then clears the buffer. </summary> <exception cref="T:System.Security.Cryptography.CryptographicException"> The key is corrupt which can cause invalid padding to the stream. </exception> <exception cref="T:System.NotSupportedException"> The current stream is not writable. -or- The final block has already been transformed. </exception> </member> <member name="P:System.Security.Cryptography.CryptoStream.Length"> <summary> Gets the length in bytes of the stream. </summary> <returns> This property is not supported. </returns> <exception cref="T:System.NotSupportedException"> This property is not supported. </exception> </member> <member name="P:System.Security.Cryptography.CryptoStream.Position"> <summary> Gets or sets the position within the current stream. </summary> <returns> This property is not supported. </returns> <exception cref="T:System.NotSupportedException"> This property is not supported. </exception> </member> <member name="M:System.Security.Cryptography.CryptoStream.Read(System.Byte[],System.Int32,System.Int32)"> <summary> Reads a sequence of bytes from the current <see cref="T:System.Security.Cryptography.CryptoStream" /> and advances the position within the stream by the number of bytes read. </summary> <returns> The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero if the end of the stream has been reached. </returns> <param name="buffer"> An array of bytes. A maximum of <paramref name="count" /> bytes are read from the current stream and stored in <paramref name="buffer" />. </param> <param name="offset"> The byte offset in <paramref name="buffer" /> at which to begin storing the data read from the current stream. </param> <param name="count"> The maximum number of bytes to be read from the current stream. </param> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Security.Cryptography.CryptoStreamMode" /> associated with current <see cref="T:System.Security.Cryptography.CryptoStream" /> object does not match the underlying stream. For example, this exception is thrown when using <see cref="F:System.Security.Cryptography.CryptoStreamMode.Read" /> with an underlying stream that is write only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="offset" /> parameter is less than zero. -or- The <paramref name="count" /> parameter is less than zero. </exception> <exception cref="T:System.ArgumentException"> Thesum of the <paramref name="count" /> and <paramref name="offset" /> parameters is longer than the length of the buffer. </exception> </member> <member name="M:System.Security.Cryptography.CryptoStream.Seek(System.Int64,System.IO.SeekOrigin)"> <summary> Sets the position within the current stream. </summary> <returns> This method is not supported. </returns> <param name="offset"> A byte offset relative to the <paramref name="origin" /> parameter. </param> <param name="origin"> A <see cref="T:System.IO.SeekOrigin" /> object indicating the reference point used to obtain the new position. </param> <exception cref="T:System.NotSupportedException"> This method is not supported. </exception> </member> <member name="M:System.Security.Cryptography.CryptoStream.SetLength(System.Int64)"> <summary> Sets the length of the current stream. </summary> <param name="value"> The desired length of the current stream in bytes. </param> <exception cref="T:System.NotSupportedException"> This property exists only to support inheritance from <see cref="T:System.IO.Stream" />, and cannot be used. </exception> </member> <member name="M:System.Security.Cryptography.CryptoStream.Write(System.Byte[],System.Int32,System.Int32)"> <summary> Writes a sequence of bytes to the current <see cref="T:System.Security.Cryptography.CryptoStream" /> and advances the current position within this stream by the number of bytes written. </summary> <param name="buffer"> An array of bytes. This method copies <paramref name="count" /> bytes from <paramref name="buffer" /> to the current stream. </param> <param name="offset"> The byte offset in <paramref name="buffer" /> at which to begin copying bytes to the current stream. </param> <param name="count"> The number of bytes to be written to the current stream. </param> <exception cref="T:System.NotSupportedException"> The <see cref="T:System.Security.Cryptography.CryptoStreamMode" /> associated with current <see cref="T:System.Security.Cryptography.CryptoStream" /> object does not match the underlying stream. For example, this exception is thrown when using <see cref="F:System.Security.Cryptography.CryptoStreamMode.Write" /> with an underlying stream that is read only. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="offset" /> parameter is less than zero. -or- The <paramref name="count" /> parameter is less than zero. </exception> <exception cref="T:System.ArgumentException"> The sum of the <paramref name="count" /> and <paramref name="offset" /> parameters is longer than the length of the buffer. </exception> </member> <member name="T:System.Security.Cryptography.CryptoStreamMode"> <summary> Specifies the mode of a cryptographic stream. </summary> </member> <member name="F:System.Security.Cryptography.CryptoStreamMode.Read"> <summary> Read access to a cryptographic stream. </summary> </member> <member name="F:System.Security.Cryptography.CryptoStreamMode.Write"> <summary> Write access to a cryptographic stream. </summary> </member> <member name="T:System.Security.Cryptography.CspKeyContainerInfo"> <summary> Provides additional information about a cryptographic key pair. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.CspKeyContainerInfo.#ctor(System.Security.Cryptography.CspParameters)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CspKeyContainerInfo" /> class using the specified parameters. </summary> <param name="parameters"> A <see cref="T:System.Security.Cryptography.CspParameters" /> object that provides information about the key. </param> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.Accessible"> <summary> Gets a value indicating whether a key in a key container is accessible. </summary> <returns>true if the key is accessible; otherwise, false. </returns> <exception cref="T:System.NotSupportedException"> The key type is not supported. </exception> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.CryptoKeySecurity"> <summary> Gets a <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object that represents access rights and audit rules for a container. </summary> <returns> A <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object that represents access rights and audit rules for a container. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The key type is not supported. </exception> <exception cref="T:System.NotSupportedException"> The cryptographic service provider cannot be found. -or- The key container was not found. </exception> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.Exportable"> <summary> Gets a value indicating whether a key can be exported from a key container. </summary> <returns>true if the key can be exported; otherwise, false. </returns> <exception cref="T:System.NotSupportedException"> The key type is not supported. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider cannot be found. -or- The key container was not found. </exception> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.HardwareDevice"> <summary> Gets a value indicating whether a key is a hardware key. </summary> <returns>true if the key is a hardware key; otherwise, false. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider cannot be found. </exception> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.KeyContainerName"> <summary> Gets a key container name. </summary> <returns> The key container name. </returns> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.KeyNumber"> <summary> Gets a value that describes whether an asymmetric key was created as a signature key or an exchange key. </summary> <returns> One of the <see cref="T:System.Security.Cryptography.KeyNumber" /> values that describes whether an asymmetric key was created as a signature key or an exchange key. </returns> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.MachineKeyStore"> <summary> Gets a value indicating whether a key is from a machine key set. </summary> <returns>true if the key is from the machine key set; otherwise, false. </returns> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.Protected"> <summary> Gets a value indicating whether a key pair is protected. </summary> <returns>true if the key pair is protected; otherwise, false. </returns> <exception cref="T:System.NotSupportedException"> The key type is not supported. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider cannot be found. -or- The key container was not found. </exception> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.ProviderName"> <summary> Gets the provider name of a key. </summary> <returns> The provider name. </returns> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.ProviderType"> <summary> Gets the provider type of a key. </summary> <returns> The provider type. The default is 1. </returns> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.RandomlyGenerated"> <summary> Gets a value indicating whether a key container was randomly generated by a managed cryptography class. </summary> <returns>true if the key container was randomly generated; otherwise, false. </returns> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.Removable"> <summary> Gets a value indicating whether a key can be removed from a key container. </summary> <returns>true if the key is removable; otherwise, false. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) was not found. </exception> </member> <member name="P:System.Security.Cryptography.CspKeyContainerInfo.UniqueKeyContainerName"> <summary> Gets a unique key container name. </summary> <returns> The unique key container name. </returns> <exception cref="T:System.NotSupportedException"> The key type is not supported. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider cannot be found. -or- The key container was not found. </exception> </member> <member name="T:System.Security.Cryptography.CspParameters"> <summary> Contains parameters that are passed to the cryptographic service provider (CSP) that performs cryptographic computations. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.CspParameters.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CspParameters" /> class. </summary> </member> <member name="M:System.Security.Cryptography.CspParameters.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CspParameters" /> class with the specified provider type code. </summary> <param name="dwTypeIn"> A provider type code that specifies the kind of provider to create. </param> </member> <member name="M:System.Security.Cryptography.CspParameters.#ctor(System.Int32,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CspParameters" /> class with the specified provider type code and name. </summary> <param name="dwTypeIn"> A provider type code that specifies the kind of provider to create. </param> <param name="strProviderNameIn"> A provider name. </param> </member> <member name="M:System.Security.Cryptography.CspParameters.#ctor(System.Int32,System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CspParameters" /> class with the specified provider type code and name, and the specified container name. </summary> <param name="dwTypeIn"> The provider type code that specifies the kind of provider to create. </param> <param name="strProviderNameIn"> A provider name. </param> <param name="strContainerNameIn"> A container name. </param> </member> <member name="M:System.Security.Cryptography.CspParameters.#ctor(System.Int32,System.String,System.String,System.Security.AccessControl.CryptoKeySecurity,System.IntPtr)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CspParameters" /> class using a provider type, a provider name, a container name, access information, and a handle to an unmanaged smart card password dialog. </summary> <param name="providerType"> The provider type code that specifies the kind of provider to create. </param> <param name="providerName"> A provider name. </param> <param name="keyContainerName"> A container name. </param> <param name="cryptoKeySecurity"> A <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object that represents access rights and audit rules for the container. </param> <param name="parentWindowHandle"> A handle to the parent window for a smart card password dialog. </param> </member> <member name="M:System.Security.Cryptography.CspParameters.#ctor(System.Int32,System.String,System.String,System.Security.AccessControl.CryptoKeySecurity,System.Security.SecureString)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.CspParameters" /> class using a provider type, a provider name, a container name, access information, and a password associated with a smart card key. </summary> <param name="providerType"> The provider type code that specifies the kind of provider to create. </param> <param name="providerName"> A provider name. </param> <param name="keyContainerName"> A container name. </param> <param name="cryptoKeySecurity"> A <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object that represents access rights and audit rules for a container. </param> <param name="keyPassword"> A password associated with a smart card key. </param> </member> <member name="P:System.Security.Cryptography.CspParameters.CryptoKeySecurity"> <summary> Gets or sets a <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object that represents access rights and audit rules for a container. </summary> <returns> A <see cref="T:System.Security.AccessControl.CryptoKeySecurity" /> object that represents access rights and audit rules for a container. </returns> </member> <member name="P:System.Security.Cryptography.CspParameters.Flags"> <summary> Represents the flags for <see cref="T:System.Security.Cryptography.CspParameters" /> that modify the behavior of the cryptographic service provider (CSP). </summary> <returns> An enumeration value, or a bitwise combination of enumeration values. </returns> </member> <member name="F:System.Security.Cryptography.CspParameters.KeyContainerName"> <summary> Represents the key container name for <see cref="T:System.Security.Cryptography.CspParameters" />. </summary> </member> <member name="F:System.Security.Cryptography.CspParameters.KeyNumber"> <summary> Specifies whether an asymmetric key is created as a signature key or an exchange key. </summary> </member> <member name="P:System.Security.Cryptography.CspParameters.KeyPassword"> <summary> Gets or sets a password associated with a smart card key. </summary> <returns> A password associated with a smart card key. </returns> </member> <member name="P:System.Security.Cryptography.CspParameters.ParentWindowHandle"> <summary> Gets or sets a handle to the unmanaged parent window for a smart card password dialog. </summary> <returns> A handle to the parent window for a smart card password dialog. </returns> </member> <member name="F:System.Security.Cryptography.CspParameters.ProviderName"> <summary> Represents the provider name for <see cref="T:System.Security.Cryptography.CspParameters" />. </summary> </member> <member name="F:System.Security.Cryptography.CspParameters.ProviderType"> <summary> Represents the provider type code for <see cref="T:System.Security.Cryptography.CspParameters" />. </summary> </member> <member name="T:System.Security.Cryptography.CspProviderFlags"> <summary> Specifies flags that modify the behavior of the cryptographic service providers (CSP). </summary> </member> <member name="F:System.Security.Cryptography.CspProviderFlags.NoFlags"> <summary> Don't specify any settings. </summary> </member> <member name="F:System.Security.Cryptography.CspProviderFlags.UseMachineKeyStore"> <summary> Use key information from the computer's key store. </summary> </member> <member name="F:System.Security.Cryptography.CspProviderFlags.UseDefaultKeyContainer"> <summary> Use key information from the default key container. </summary> </member> <member name="F:System.Security.Cryptography.CspProviderFlags.UseNonExportableKey"> <summary> Use key information that can not be exported. </summary> </member> <member name="F:System.Security.Cryptography.CspProviderFlags.UseExistingKey"> <summary> Use key information from the current key. </summary> </member> <member name="F:System.Security.Cryptography.CspProviderFlags.UseArchivableKey"> <summary> Allow a key to be exported for archival or recovery. </summary> </member> <member name="F:System.Security.Cryptography.CspProviderFlags.UseUserProtectedKey"> <summary> Notify the user through a dialog box or another method when certain actions are attempting to use a key. This flag is not compatible with the <see cref="F:System.Security.Cryptography.CspProviderFlags.NoPrompt" /> flag. </summary> </member> <member name="F:System.Security.Cryptography.CspProviderFlags.NoPrompt"> <summary> Prevent the CSP from displaying any user interface (UI) for this context. </summary> </member> <member name="T:System.Security.Cryptography.DeriveBytes"> <summary> Represents the abstract base class from which all classes that derive byte sequences of a specified length inherit. </summary> </member> <member name="M:System.Security.Cryptography.DeriveBytes.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DeriveBytes" /> class. </summary> </member> <member name="M:System.Security.Cryptography.DeriveBytes.GetBytes(System.Int32)"> <summary> When overridden in a derived class, returns pseudo-random key bytes. </summary> <returns> A byte array filled with pseudo-random key bytes. </returns> <param name="cb"> The number of pseudo-random key bytes to generate. </param> </member> <member name="M:System.Security.Cryptography.DeriveBytes.Reset"> <summary> When overridden in a derived class, resets the state of the operation. </summary> </member> <member name="T:System.Security.Cryptography.DES"> <summary> Represents the base class for the Data Encryption Standard (DES) algorithm from which all <see cref="T:System.Security.Cryptography.DES" /> implementations must derive. </summary> </member> <member name="M:System.Security.Cryptography.DES.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DES" /> class. </summary> </member> <member name="M:System.Security.Cryptography.DES.Create"> <summary> Creates an instance of a cryptographic object to perform the Data Encryption Standard (<see cref="T:System.Security.Cryptography.DES" />) algorithm. </summary> <returns> A cryptographic object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DES.Create(System.String)"> <summary> Creates an instance of a cryptographic object to perform the specified implementation of the Data Encryption Standard (<see cref="T:System.Security.Cryptography.DES" />) algorithm. </summary> <returns> A cryptographic object. </returns> <param name="algName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.DES" /> to use. </param> </member> <member name="M:System.Security.Cryptography.DES.IsSemiWeakKey(System.Byte[])"> <summary> Determines whether the specified key is semi-weak. </summary> <returns>true if the key is semi-weak; otherwise, false. </returns> <param name="rgbKey"> The secret key to test for semi-weakness. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The size of the <paramref name="rgbKey" /> parameter is not valid. </exception> </member> <member name="M:System.Security.Cryptography.DES.IsWeakKey(System.Byte[])"> <summary> Determines whether the specified key is weak. </summary> <returns>true if the key is weak; otherwise, false. </returns> <param name="rgbKey"> The secret key to test for weakness. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The size of the <paramref name="rgbKey" /> parameter is not valid. </exception> </member> <member name="P:System.Security.Cryptography.DES.Key"> <summary> Gets or sets the secret key for the Data Encryption Standard (<see cref="T:System.Security.Cryptography.DES" />) algorithm. </summary> <returns> The secret key for the <see cref="T:System.Security.Cryptography.DES" /> algorithm. </returns> <exception cref="T:System.ArgumentNullException"> An attempt was made to set the key to null. </exception> <exception cref="T:System.ArgumentException"> An attempt was made to set a key whose length is not equal to <see cref="F:System.Security.Cryptography.SymmetricAlgorithm.BlockSizeValue" />. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> An attempt was made to set a weak key (see <see cref="M:System.Security.Cryptography.DES.IsWeakKey(System.Byte[])" />) or a semi-weak key (see <see cref="M:System.Security.Cryptography.DES.IsSemiWeakKey(System.Byte[])" />). </exception> </member> <member name="T:System.Security.Cryptography.DESCryptoServiceProvider"> <summary> Defines a wrapper object to access the cryptographic service provider (CSP) version of the Data Encryption Standard (<see cref="T:System.Security.Cryptography.DES" />) algorithm. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.DESCryptoServiceProvider.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DESCryptoServiceProvider" /> class. </summary> <exception cref="T:System.Security.Cryptography.CryptographicException"> The Data Encryption Standard (<see cref="T:System.Security.Cryptography.DES" />) cryptographic service provider is not available. </exception> </member> <member name="M:System.Security.Cryptography.DESCryptoServiceProvider.CreateDecryptor(System.Byte[],System.Byte[])"> <summary> Creates a symmetric Data Encryption Standard (<see cref="T:System.Security.Cryptography.DES" />) decryptor object with the specified key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" />) and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric <see cref="T:System.Security.Cryptography.DES" /> decryptor object. </returns> <param name="rgbKey"> The secret key to use for the symmetric algorithm. </param> <param name="rgbIV"> The initialization vector to use for the symmetric algorithm. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Mode" /> property is <see cref="F:System.Security.Cryptography.CipherMode.OFB" />. -or- The value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Mode" /> property is <see cref="F:System.Security.Cryptography.CipherMode.CFB" /> and the value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSize" /> property is not 8. -or- An invalid key size was used. -or- The algorithm key size was not available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DESCryptoServiceProvider.CreateEncryptor(System.Byte[],System.Byte[])"> <summary> Creates a symmetric Data Encryption Standard (<see cref="T:System.Security.Cryptography.DES" />) encryptor object with the specified key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" />) and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric <see cref="T:System.Security.Cryptography.DES" /> encryptor object. </returns> <param name="rgbKey"> The secret key to use for the symmetric algorithm. </param> <param name="rgbIV"> The initialization vector to use for the symmetric algorithm. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Mode" /> property is <see cref="F:System.Security.Cryptography.CipherMode.OFB" />. -or- The value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Mode" /> property is <see cref="F:System.Security.Cryptography.CipherMode.CFB" /> and the value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSize" /> property is not 8. -or- An invalid key size was used. -or- The algorithm key size was not available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DESCryptoServiceProvider.GenerateIV"> <summary> Generates a random initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />) to use for the algorithm. </summary> </member> <member name="M:System.Security.Cryptography.DESCryptoServiceProvider.GenerateKey"> <summary> Generates a random key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" />) to be used for the algorithm. </summary> </member> <member name="T:System.Security.Cryptography.DSA"> <summary> Represents the abstract base class from which all implementations of the Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) must inherit. </summary> </member> <member name="M:System.Security.Cryptography.DSA.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSA" /> class. </summary> </member> <member name="M:System.Security.Cryptography.DSA.Create"> <summary> Creates the default cryptographic object used to perform the asymmetric algorithm. </summary> <returns> A cryptographic object used to perform the asymmetric algorithm. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DSA.Create(System.String)"> <summary> Creates the specified cryptographic object used to perform the asymmetric algorithm. </summary> <returns> A cryptographic object used to perform the asymmetric algorithm. </returns> <param name="algName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.DSA" /> to use. </param> </member> <member name="M:System.Security.Cryptography.DSA.CreateSignature(System.Byte[])"> <summary> When overridden in a derived class, creates the <see cref="T:System.Security.Cryptography.DSA" /> signature for the specified data. </summary> <returns> The digital signature for the specified data. </returns> <param name="rgbHash"> The data to be signed. </param> </member> <member name="M:System.Security.Cryptography.DSA.ExportParameters(System.Boolean)"> <summary> When overridden in a derived class, exports the <see cref="T:System.Security.Cryptography.DSAParameters" />. </summary> <returns> The parameters for <see cref="T:System.Security.Cryptography.DSA" />. </returns> <param name="includePrivateParameters">true to include private parameters; otherwise, false. </param> </member> <member name="M:System.Security.Cryptography.DSA.FromXmlString(System.String)"> <summary> Reconstructs a <see cref="T:System.Security.Cryptography.DSA" /> object from an XML string. </summary> <param name="xmlString"> The XML string to use to reconstruct the <see cref="T:System.Security.Cryptography.DSA" /> object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="xmlString" /> parameter is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The format of the <paramref name="xmlString" /> parameter is not valid. </exception> </member> <member name="M:System.Security.Cryptography.DSA.ImportParameters(System.Security.Cryptography.DSAParameters)"> <summary> When overridden in a derived class, imports the specified <see cref="T:System.Security.Cryptography.DSAParameters" />. </summary> <param name="parameters"> The parameters for <see cref="T:System.Security.Cryptography.DSA" />. </param> </member> <member name="M:System.Security.Cryptography.DSA.ToXmlString(System.Boolean)"> <summary> Creates and returns an XML string representation of the current <see cref="T:System.Security.Cryptography.DSA" /> object. </summary> <returns> An XML string encoding of the current <see cref="T:System.Security.Cryptography.DSA" /> object. </returns> <param name="includePrivateParameters">true to include private parameters; otherwise, false. </param> </member> <member name="M:System.Security.Cryptography.DSA.VerifySignature(System.Byte[],System.Byte[])"> <summary> When overridden in a derived class, verifies the <see cref="T:System.Security.Cryptography.DSA" /> signature for the specified data. </summary> <returns>true if <paramref name="rgbSignature" /> matches the signature computed using the specified hash algorithm and key on <paramref name="rgbHash" />; otherwise, false. </returns> <param name="rgbHash"> The hash of the data signed with <paramref name="rgbSignature" />. </param> <param name="rgbSignature"> The signature to be verified for <paramref name="rgbData" />. </param> </member> <member name="T:System.Security.Cryptography.DSACryptoServiceProvider"> <summary> Defines a wrapper object to access the cryptographic service provider (CSP) implementation of the <see cref="T:System.Security.Cryptography.DSA" /> algorithm. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSACryptoServiceProvider" /> class. </summary> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSACryptoServiceProvider" /> class with the specified key size. </summary> <param name="dwKeySize"> The size of the key for the asymmetric algorithm in bits. </param> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.#ctor(System.Int32,System.Security.Cryptography.CspParameters)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSACryptoServiceProvider" /> class with the specified key size and parameters for the cryptographic service provider (CSP). </summary> <param name="dwKeySize"> The size of the key for the cryptographic algorithm in bits. </param> <param name="parameters"> The parameters for the CSP. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The CSP cannot be acquired. -or- The key cannot be created. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="dwKeySize" /> is out of range. </exception> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.#ctor(System.Security.Cryptography.CspParameters)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSACryptoServiceProvider" /> class with the specified parameters for the cryptographic service provider (CSP). </summary> <param name="parameters"> The parameters for the CSP. </param> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.CreateSignature(System.Byte[])"> <summary> Creates the <see cref="T:System.Security.Cryptography.DSA" /> signature for the specified data. </summary> <returns> The digital signature for the specified data. </returns> <param name="rgbHash"> The data to be signed. </param> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.DSACryptoServiceProvider.CspKeyContainerInfo"> <summary> Gets a <see cref="T:System.Security.Cryptography.CspKeyContainerInfo" /> object that describes additional information about a cryptographic key pair. </summary> <returns> A <see cref="T:System.Security.Cryptography.CspKeyContainerInfo" /> object that describes additional information about a cryptographic key pair. </returns> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.ExportCspBlob(System.Boolean)"> <summary> Exports a blob containing the key information associated with a <see cref="T:System.Security.Cryptography.DSACryptoServiceProvider" /> object. </summary> <returns> A byte array containing the key information associated with a <see cref="T:System.Security.Cryptography.DSACryptoServiceProvider" /> object. </returns> <param name="includePrivateParameters">true to include the private key; otherwise, false. </param> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.ExportParameters(System.Boolean)"> <summary> Exports the <see cref="T:System.Security.Cryptography.DSAParameters" />. </summary> <returns> The parameters for <see cref="T:System.Security.Cryptography.DSA" />. </returns> <param name="includePrivateParameters">true to include private parameters; otherwise, false. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The key cannot be exported. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.ImportCspBlob(System.Byte[])"> <summary> Imports a blob that represents DSA key information. </summary> <param name="keyBlob"> A byte array that represents a DSA key blob. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.ImportParameters(System.Security.Cryptography.DSAParameters)"> <summary> Imports the specified <see cref="T:System.Security.Cryptography.DSAParameters" />. </summary> <param name="parameters"> The parameters for <see cref="T:System.Security.Cryptography.DSA" />. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. -or- The <paramref name="parameters" /> parameter has missing fields. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.DSACryptoServiceProvider.KeyExchangeAlgorithm"> <summary> Gets the name of the key exchange algorithm. </summary> <returns> The name of the key exchange algorithm. </returns> </member> <member name="P:System.Security.Cryptography.DSACryptoServiceProvider.KeySize"> <summary> Gets the size of the key used by the asymmetric algorithm in bits. </summary> <returns> The size of the key used by the asymmetric algorithm. </returns> </member> <member name="P:System.Security.Cryptography.DSACryptoServiceProvider.PersistKeyInCsp"> <summary> Gets or sets a value indicating whether the key should be persisted in the cryptographic service provider (CSP). </summary> <returns>true if the key should be persisted in the CSP; otherwise, false. </returns> </member> <member name="P:System.Security.Cryptography.DSACryptoServiceProvider.PublicOnly"> <summary> Gets a value that indicates whether the <see cref="T:System.Security.Cryptography.DSACryptoServiceProvider" /> object contains only a public key. </summary> <returns>true if the <see cref="T:System.Security.Cryptography.DSACryptoServiceProvider" /> object contains only a public key; otherwise, false. </returns> </member> <member name="P:System.Security.Cryptography.DSACryptoServiceProvider.SignatureAlgorithm"> <summary> Gets the name of the signature algorithm. </summary> <returns> The name of the signature algorithm. </returns> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.SignData(System.Byte[])"> <summary> Computes the hash value of the specified byte array and signs the resulting hash value. </summary> <returns> The <see cref="T:System.Security.Cryptography.DSA" /> signature for the specified data. </returns> <param name="buffer"> The input data for which to compute the hash. </param> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.SignData(System.Byte[],System.Int32,System.Int32)"> <summary> Signs a byte array from the specified start point to the specified end point. </summary> <returns> The <see cref="T:System.Security.Cryptography.DSA" /> signature for the specified data. </returns> <param name="buffer"> The input data to sign. </param> <param name="offset"> The offset into the array from which to begin using data. </param> <param name="count"> The number of bytes in the array to use as data. </param> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.SignData(System.IO.Stream)"> <summary> Computes the hash value of the specified input stream and signs the resulting hash value. </summary> <returns> The <see cref="T:System.Security.Cryptography.DSA" /> signature for the specified data. </returns> <param name="inputStream"> The input data for which to compute the hash. </param> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.SignHash(System.Byte[],System.String)"> <summary> Computes the signature for the specified hash value by encrypting it with the private key. </summary> <returns> The <see cref="T:System.Security.Cryptography.DSA" /> signature for the specified hash value. </returns> <param name="rgbHash"> The hash value of the data to be signed. </param> <param name="str"> The name of the hash algorithm used to create the hash value of the data. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rgbHash" /> parameter is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. -or- There is no private key. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.DSACryptoServiceProvider.UseMachineKeyStore"> <summary> Gets or sets a value indicating whether the key should be persisted in the computer's key store instead of the user profile store. </summary> <returns>true if the key should be persisted in the computer key store; otherwise, false. </returns> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.VerifyData(System.Byte[],System.Byte[])"> <summary> Verifies the specified signature data by comparing it to the signature computed for the specified data. </summary> <returns>true if the signature verifies as valid; otherwise, false. </returns> <param name="rgbData"> The data that was signed. </param> <param name="rgbSignature"> The signature data to be verified. </param> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.VerifyHash(System.Byte[],System.String,System.Byte[])"> <summary> Verifies the specified signature data by comparing it to the signature computed for the specified hash value. </summary> <returns>true if the signature verifies as valid; otherwise, false. </returns> <param name="rgbHash"> The hash value of the data to be signed. </param> <param name="str"> The name of the hash algorithm used to create the hash value of the data. </param> <param name="rgbSignature"> The signature data to be verified. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rgbHash" /> parameter is null. -or- The <paramref name="rgbSignature" /> parameter is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. -or- The signature cannot be verified. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.VerifySignature(System.Byte[],System.Byte[])"> <summary> Verifies the <see cref="T:System.Security.Cryptography.DSA" /> signature for the specified data. </summary> <returns>true if <paramref name="rgbSignature" /> matches the signature computed using the specified hash algorithm and key on <paramref name="rgbHash" />; otherwise, false. </returns> <param name="rgbHash"> The data signed with <paramref name="rgbSignature" />. </param> <param name="rgbSignature"> The signature to be verified for <paramref name="rgbData" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Security.Cryptography.DSAParameters"> <summary> Contains the typical parameters for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.DSAParameters.Counter"> <summary> Specifies the counter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.DSAParameters.G"> <summary> Specifies the G parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.DSAParameters.J"> <summary> Specifies the J parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.DSAParameters.P"> <summary> Specifies the P parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.DSAParameters.Q"> <summary> Specifies the Q parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.DSAParameters.Seed"> <summary> Specifies the seed for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.DSAParameters.X"> <summary> Specifies the X parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.DSAParameters.Y"> <summary> Specifies the Y parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm. </summary> </member> <member name="T:System.Security.Cryptography.DSASignatureDeformatter"> <summary> Verifies a Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) PKCS#1 v1.5 signature. </summary> </member> <member name="M:System.Security.Cryptography.DSASignatureDeformatter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSASignatureDeformatter" /> class. </summary> </member> <member name="M:System.Security.Cryptography.DSASignatureDeformatter.#ctor(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSASignatureDeformatter" /> class with the specified key. </summary> <param name="key"> The instance of Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) that holds the key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="M:System.Security.Cryptography.DSASignatureDeformatter.SetHashAlgorithm(System.String)"> <summary> Specifies the hash algorithm for the Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) signature deformatter. </summary> <param name="strName"> The name of the hash algorithm to use for the signature deformatter. </param> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The <paramref name="strName" /> parameter does not map to the <see cref="T:System.Security.Cryptography.SHA1" /> hash algorithm. </exception> </member> <member name="M:System.Security.Cryptography.DSASignatureDeformatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Specifies the key to be used for the Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) signature deformatter. </summary> <param name="key"> The instance of <see cref="T:System.Security.Cryptography.DSA" /> that holds the key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="M:System.Security.Cryptography.DSASignatureDeformatter.VerifySignature(System.Byte[],System.Byte[])"> <summary> Verifies the Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) signature on the data. </summary> <returns>true if the signature is valid for the data; otherwise, false. </returns> <param name="rgbHash"> The data signed with <paramref name="rgbSignature" />. </param> <param name="rgbSignature"> The signature to be verified for <paramref name="rgbHash" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rgbHash" /> is null. -or- <paramref name="rgbSignature" /> is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The DSA key is missing. </exception> </member> <member name="T:System.Security.Cryptography.DSASignatureFormatter"> <summary> Creates a Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) signature. </summary> </member> <member name="M:System.Security.Cryptography.DSASignatureFormatter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSASignatureFormatter" /> class. </summary> </member> <member name="M:System.Security.Cryptography.DSASignatureFormatter.#ctor(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSASignatureFormatter" /> class with the specified key. </summary> <param name="key"> The instance of the Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) that holds the key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="M:System.Security.Cryptography.DSASignatureFormatter.CreateSignature(System.Byte[])"> <summary> Creates the Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) PKCS #1 signature for the specified data. </summary> <returns> The digital signature for the specified data. </returns> <param name="rgbHash"> The data to be signed. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="rgbHash" /> is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The OID is null. -or- The DSA key is null. </exception> </member> <member name="M:System.Security.Cryptography.DSASignatureFormatter.SetHashAlgorithm(System.String)"> <summary> Specifies the hash algorithm for the Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) signature formatter. </summary> <param name="strName"> The name of the hash algorithm to use for the signature formatter. </param> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The <paramref name="strName" /> parameter does not map to the <see cref="T:System.Security.Cryptography.SHA1" /> hash algorithm. </exception> </member> <member name="M:System.Security.Cryptography.DSASignatureFormatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Specifies the key to be used for the Digital Signature Algorithm (<see cref="T:System.Security.Cryptography.DSA" />) signature formatter. </summary> <param name="key"> The instance of <see cref="T:System.Security.Cryptography.DSA" /> that holds the key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="T:System.Security.Cryptography.FromBase64Transform"> <summary> Converts a <see cref="T:System.Security.Cryptography.CryptoStream" /> from base 64. </summary> </member> <member name="M:System.Security.Cryptography.FromBase64Transform.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.FromBase64Transform" /> class. </summary> </member> <member name="M:System.Security.Cryptography.FromBase64Transform.#ctor(System.Security.Cryptography.FromBase64TransformMode)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.FromBase64Transform" /> class with the specified transformation mode. </summary> <param name="whitespaces"> One of the <see cref="T:System.Security.Cryptography.FromBase64Transform" /> values. </param> </member> <member name="P:System.Security.Cryptography.FromBase64Transform.CanReuseTransform"> <summary> Gets a value indicating whether the current transform can be reused. </summary> <returns> Always true. </returns> </member> <member name="P:System.Security.Cryptography.FromBase64Transform.CanTransformMultipleBlocks"> <summary> Gets a value that indicates whether multiple blocks can be transformed. </summary> <returns> Always false. </returns> </member> <member name="M:System.Security.Cryptography.FromBase64Transform.Clear"> <summary> Releases all resources used by the <see cref="T:System.Security.Cryptography.FromBase64Transform" />. </summary> </member> <member name="M:System.Security.Cryptography.FromBase64Transform.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.FromBase64Transform" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.Security.Cryptography.FromBase64Transform.Finalize"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.FromBase64Transform" />. </summary> </member> <member name="P:System.Security.Cryptography.FromBase64Transform.InputBlockSize"> <summary> Gets the input block size. </summary> <returns> The size of the input data blocks in bytes. </returns> </member> <member name="P:System.Security.Cryptography.FromBase64Transform.OutputBlockSize"> <summary> Gets the output block size. </summary> <returns> The size of the output data blocks in bytes. </returns> </member> <member name="M:System.Security.Cryptography.FromBase64Transform.System#IDisposable#Dispose"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.FromBase64Transform" /> and optionally releases the managed resources. </summary> </member> <member name="M:System.Security.Cryptography.FromBase64Transform.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Converts the specified region of the input byte array from base 64 and copies the result to the specified region of the output byte array. </summary> <returns> The number of bytes written. </returns> <param name="inputBuffer"> The input to compute from base 64. </param> <param name="inputOffset"> The offset into the input byte array from which to begin using data. </param> <param name="inputCount"> The number of bytes in the input byte array to use as data. </param> <param name="outputBuffer"> The output to which to write the result. </param> <param name="outputOffset"> The offset into the output byte array from which to begin writing data. </param> <exception cref="T:System.ObjectDisposedException"> The current <see cref="T:System.Security.Cryptography.FromBase64Transform" /> object has already been disposed. </exception> <exception cref="T:System.ArgumentException"> <paramref name="inputCount" /> uses an invalid value. -or- <paramref name="inputBuffer" /> has an invalid offset length. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="inputOffset" /> is out of range. This parameter requires a non-negative number. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="inputBuffer" /> is null. </exception> </member> <member name="M:System.Security.Cryptography.FromBase64Transform.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)"> <summary> Converts the specified region of the specified byte array from base 64. </summary> <returns> The computed conversion. </returns> <param name="inputBuffer"> The input to convert from base 64. </param> <param name="inputOffset"> The offset into the byte array from which to begin using data. </param> <param name="inputCount"> The number of bytes in the byte array to use as data. </param> <exception cref="T:System.ObjectDisposedException"> The current <see cref="T:System.Security.Cryptography.FromBase64Transform" /> object has already been disposed. </exception> <exception cref="T:System.ArgumentException"> <paramref name="inputBuffer" /> has an invalid offset length. -or- <paramref name="inputCount" /> has an invalid value. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="inputOffset" /> is out of range. This parameter requires a non-negative number. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="inputBuffer" /> is null. </exception> </member> <member name="T:System.Security.Cryptography.FromBase64TransformMode"> <summary> Specifies whether white space should be ignored in the base 64 transformation. </summary> </member> <member name="F:System.Security.Cryptography.FromBase64TransformMode.IgnoreWhiteSpaces"> <summary> White space should be ignored. </summary> </member> <member name="F:System.Security.Cryptography.FromBase64TransformMode.DoNotIgnoreWhiteSpaces"> <summary> White space should not be ignored. </summary> </member> <member name="T:System.Security.Cryptography.HashAlgorithm"> <summary> Represents the base class from which all implementations of cryptographic hash algorithms must derive. </summary> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HashAlgorithm" /> class. </summary> </member> <member name="P:System.Security.Cryptography.HashAlgorithm.CanReuseTransform"> <summary> Gets a value indicating whether the current transform can be reused. </summary> <returns> Always true. </returns> </member> <member name="P:System.Security.Cryptography.HashAlgorithm.CanTransformMultipleBlocks"> <summary> When overridden in a derived class, gets a value indicating whether multiple blocks can be transformed. </summary> <returns>true if multiple blocks can be transformed; otherwise, false. </returns> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.Clear"> <summary> Releases all resources used by the <see cref="T:System.Security.Cryptography.HashAlgorithm" /> class. </summary> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[])"> <summary> Computes the hash value for the specified byte array. </summary> <returns> The computed hash code. </returns> <param name="buffer"> The input to compute the hash code for. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The object has already been disposed. </exception> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[],System.Int32,System.Int32)"> <summary> Computes the hash value for the specified region of the specified byte array. </summary> <returns> The computed hash code. </returns> <param name="buffer"> The input to compute the hash code for. </param> <param name="offset"> The offset into the byte array from which to begin using data. </param> <param name="count"> The number of bytes in the array to use as data. </param> <exception cref="T:System.ArgumentException"> <paramref name="count" /> is an invalid value. -or- <paramref name="buffer" /> length is invalid. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="buffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="offset" /> is out of range. This parameter requires a non-negative number. </exception> <exception cref="T:System.ObjectDisposedException"> The object has already been disposed. </exception> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.ComputeHash(System.IO.Stream)"> <summary> Computes the hash value for the specified <see cref="T:System.IO.Stream" /> object. </summary> <returns> The computed hash code. </returns> <param name="inputStream"> The input to compute the hash code for. </param> <exception cref="T:System.ObjectDisposedException"> The object has already been disposed. </exception> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.Create"> <summary> Creates an instance of the default implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm" /> class. </summary> <returns> A cryptographic object to perform the hash algorithm. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.Create(System.String)"> <summary> Creates an instance of the specified implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm" /> class. </summary> <returns> A cryptographic object to perform the hash algorithm. </returns> <param name="hashName"> The implementation of <see cref="T:System.Security.Cryptography.HashAlgorithm" /> to create. </param> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.HashAlgorithm" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="P:System.Security.Cryptography.HashAlgorithm.Hash"> <summary> Gets the value of the computed hash code. </summary> <returns> The current value of the computed hash code. </returns> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> <see cref="F:System.Security.Cryptography.HashAlgorithm.HashValue" /> is null. </exception> <exception cref="T:System.ObjectDisposedException"> The object has already been disposed. </exception> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.HashCore(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, routes data written to the object into the hash algorithm for computing the hash. </summary> <param name="array"> The input to compute the hash code for. </param> <param name="ibStart"> The offset into the byte array from which to begin using data. </param> <param name="cbSize"> The number of bytes in the byte array to use as data. </param> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.HashFinal"> <summary> When overridden in a derived class, finalizes the hash computation after the last data is processed by the cryptographic stream object. </summary> <returns> The computed hash code. </returns> </member> <member name="P:System.Security.Cryptography.HashAlgorithm.HashSize"> <summary> Gets the size, in bits, of the computed hash code. </summary> <returns> The size, in bits, of the computed hash code. </returns> </member> <member name="F:System.Security.Cryptography.HashAlgorithm.HashSizeValue"> <summary> Represents the size, in bits, of the computed hash code. </summary> </member> <member name="F:System.Security.Cryptography.HashAlgorithm.HashValue"> <summary> Represents the value of the computed hash code. </summary> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.Initialize"> <summary> Initializes an implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm" /> class. </summary> </member> <member name="P:System.Security.Cryptography.HashAlgorithm.InputBlockSize"> <summary> When overridden in a derived class, gets the input block size. </summary> <returns> The input block size. </returns> </member> <member name="P:System.Security.Cryptography.HashAlgorithm.OutputBlockSize"> <summary> When overridden in a derived class, gets the output block size. </summary> <returns> The output block size. </returns> </member> <member name="F:System.Security.Cryptography.HashAlgorithm.State"> <summary> Represents the state of the hash computation. </summary> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.System#IDisposable#Dispose"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.HashAlgorithm" /> and optionally releases the managed resources. </summary> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Computes the hash value for the specified region of the input byte array and copies the resulting hash value to the specified region of the output byte array. </summary> <returns> The number of bytes written. </returns> <param name="inputBuffer"> The input to compute the hash code for. </param> <param name="inputOffset"> The offset into the input byte array from which to begin using data. </param> <param name="inputCount"> The number of bytes in the input byte array to use as data. </param> <param name="outputBuffer"> A copy of the part of the input array used to compute the hash code. </param> <param name="outputOffset"> The offset into the output byte array from which to begin writing data. </param> <exception cref="T:System.ArgumentException"> <paramref name="inputCount" /> uses an invalid value. -or- <paramref name="inputBuffer" /> has an invalid length. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="inputBuffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="inputOffset" /> is out of range. This parameter requires a non-negative number. </exception> <exception cref="T:System.ObjectDisposedException"> The object has already been disposed. </exception> </member> <member name="M:System.Security.Cryptography.HashAlgorithm.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)"> <summary> Computes the hash value for the specified region of the specified byte array. </summary> <returns> An array that is a copy of the part of the input that is hashed. </returns> <param name="inputBuffer"> The input to compute the hash code for. </param> <param name="inputOffset"> The offset into the byte array from which to begin using data. </param> <param name="inputCount"> The number of bytes in the byte array to use as data. </param> <exception cref="T:System.ArgumentException"> <paramref name="inputCount" /> uses an invalid value. -or- <paramref name="inputBuffer" /> has an invalid offset length. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="inputBuffer" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="inputOffset" /> is out of range. This parameter cannot be a non-negative number. </exception> <exception cref="T:System.ObjectDisposedException"> The object has already been disposed. </exception> </member> <member name="T:System.Security.Cryptography.HMAC"> <summary> Represents the abstract class from which all implementations of Hash-based Message Authentication Code (HMAC) must derive. </summary> </member> <member name="M:System.Security.Cryptography.HMAC.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMAC" /> class. </summary> </member> <member name="P:System.Security.Cryptography.HMAC.BlockSizeValue"> <summary> Gets or sets the block size to use in the hash value. </summary> <returns> The block size to use in the hash value. </returns> </member> <member name="M:System.Security.Cryptography.HMAC.Create"> <summary> Creates an instance of the default implementation of a Hash-based Message Authentication Code (HMAC). </summary> <returns> A new instance of an HMAC. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.HMAC.Create(System.String)"> <summary> Creates an instance of the default implementation of a Hash-based Message Authentication Code (HMAC). </summary> <returns> A new instance of the specified HMAC implementation. </returns> <param name="algorithmName"> The HMAC implementation to use. </param> </member> <member name="M:System.Security.Cryptography.HMAC.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.HMAC" /> class when a key change is legitimate and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.Security.Cryptography.HMAC.HashCore(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, routes data written to the object into the default <see cref="T:System.Security.Cryptography.HMAC" /> hash algorithm for computing the hash value. </summary> <param name="rgb"> The input data. </param> <param name="ib"> The offset into the byte array from which to begin using data. </param> <param name="cb"> The number of bytes in the array to use as data. </param> </member> <member name="M:System.Security.Cryptography.HMAC.HashFinal"> <summary> When overridden in a derived class, finalizes the hash computation after the last data is processed by the cryptographic stream object. </summary> <returns> The computed hash code in a byte array. </returns> </member> <member name="P:System.Security.Cryptography.HMAC.HashName"> <summary> Gets or sets the name of the hash algorithm to use for hashing. </summary> <returns> The name of the hash algorithm. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The current hash algorithm cannot be changed. </exception> </member> <member name="M:System.Security.Cryptography.HMAC.Initialize"> <summary> Initializes an instance of the default implementation of <see cref="T:System.Security.Cryptography.HMAC" />. </summary> </member> <member name="P:System.Security.Cryptography.HMAC.Key"> <summary> Gets or sets the key to use in the hash algorithm. </summary> <returns> The key to use in the hash algorithm. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> An attempt is made to change the <see cref="P:System.Security.Cryptography.HMAC.Key" /> property after hashing has begun. </exception> </member> <member name="T:System.Security.Cryptography.HMACMD5"> <summary> Computes a Hash-based Message Authentication Code (HMAC) using the <see cref="T:System.Security.Cryptography.MD5" /> hash function. </summary> </member> <member name="M:System.Security.Cryptography.HMACMD5.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACMD5" /> class with a randomly generated key. </summary> </member> <member name="M:System.Security.Cryptography.HMACMD5.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACMD5" /> class using the supplied key. </summary> <param name="key"> The secret key for <see cref="T:System.Security.Cryptography.HMACMD5" /> encryption. The key can be any length, but if it is more than 64 bytes long it will be hashed (using SHA-1) to derive a 64-byte key. Therefore, the recommended size of the secret key is 64 bytes. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="key" /> parameter is null. </exception> </member> <member name="T:System.Security.Cryptography.HMACRIPEMD160"> <summary> Computes a Hash-based Message Authentication Code (HMAC) using the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash function. </summary> </member> <member name="M:System.Security.Cryptography.HMACRIPEMD160.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACRIPEMD160" /> class with a randomly generated 64-byte key. </summary> </member> <member name="M:System.Security.Cryptography.HMACRIPEMD160.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACRIPEMD160" /> class with the specified key data. </summary> <param name="key"> The secret key for <see cref="T:System.Security.Cryptography.HMACRIPEMD160" /> encryption. The key can be any length, but if it is more than 64 bytes long it will be hashed (using SHA-1) to derive a 64-byte key. Therefore, the recommended size of the secret key is 64 bytes. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="key" /> parameter is null. </exception> </member> <member name="T:System.Security.Cryptography.HMACSHA1"> <summary> Computes a Hash-based Message Authentication Code (HMAC) using the <see cref="T:System.Security.Cryptography.SHA1" /> hash function. </summary> </member> <member name="M:System.Security.Cryptography.HMACSHA1.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACSHA1" /> class with a randomly generated key. </summary> </member> <member name="M:System.Security.Cryptography.HMACSHA1.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACSHA1" /> class with the specified key data. </summary> <param name="key"> The secret key for <see cref="T:System.Security.Cryptography.HMACSHA1" /> encryption. The key can be any length, but if it is more than 64 bytes long it will be hashed (using SHA-1) to derive a 64-byte key. Therefore, the recommended size of the secret key is 64 bytes. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="key" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.HMACSHA1.#ctor(System.Byte[],System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACSHA1" /> class with the specified key data and a value that specifies whether to use the managed version of the SHA1 Algorithm. </summary> <param name="key"> The secret key for <see cref="T:System.Security.Cryptography.HMACSHA1" /> encryption. The key can be any length but if it is more than 64 bytes long, it will be hashed (using SHA-1) to derive a 64-byte key. Therefore, the recommended size of the secret key is 64 bytes. </param> <param name="useManagedSha1">true to use the managed implementation of the SHA1 algorithm (the <see cref="T:System.Security.Cryptography.SHA1Managed" /> class); false to use the unmanaged implementation (the <see cref="T:System.Security.Cryptography.SHA1CryptoServiceProvider" /> class). </param> </member> <member name="T:System.Security.Cryptography.HMACSHA256"> <summary> Computes a Hash-based Message Authentication Code (HMAC) using the <see cref="T:System.Security.Cryptography.SHA256" /> hash function. </summary> </member> <member name="M:System.Security.Cryptography.HMACSHA256.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACSHA256" /> class with a randomly generated key. </summary> </member> <member name="M:System.Security.Cryptography.HMACSHA256.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACSHA256" /> class with the specified key data. </summary> <param name="key"> The secret key for <see cref="T:System.Security.Cryptography.HMACSHA256" /> encryption. The key can be any length, but if it is more than 64 bytes long it will be hashed (using SHA-1) to derive a 64-byte key. Therefore, the recommended size of the secret key is 64 bytes. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="key" /> parameter is null. </exception> </member> <member name="T:System.Security.Cryptography.HMACSHA384"> <summary> Computes a Hash-based Message Authentication Code (HMAC) using the <see cref="T:System.Security.Cryptography.SHA384" /> hash function. </summary> </member> <member name="M:System.Security.Cryptography.HMACSHA384.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACSHA384" /> class by using a randomly generated key. </summary> </member> <member name="M:System.Security.Cryptography.HMACSHA384.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACSHA384" /> class by using the specified key data. </summary> <param name="key"> The secret key for <see cref="T:System.Security.Cryptography.HMACSHA384" /> encryption. The key can be any length. However, if it is more than 64 bytes long it will be hashed (using SHA-1) to derive a 64-byte key. Therefore, the recommended size of the secret key is 64 bytes. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="key" /> parameter is null. </exception> </member> <member name="T:System.Security.Cryptography.HMACSHA512"> <summary> Computes a Hash-based Message Authentication Code (HMAC) using the <see cref="T:System.Security.Cryptography.SHA512" /> hash function. </summary> </member> <member name="M:System.Security.Cryptography.HMACSHA512.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACSHA512" /> class with a randomly generated key. </summary> </member> <member name="M:System.Security.Cryptography.HMACSHA512.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACSHA512" /> class with the specified key data. </summary> <param name="key"> The secret key for <see cref="T:System.Security.Cryptography.HMACSHA512" /> encryption. The key can be any length. However, if it is more than 64 bytes long it will be hashed (using SHA-1) to derive a 64-byte key. Therefore, the recommended size of the secret key is 64 bytes. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="key" /> parameter is null. </exception> </member> <member name="T:System.Security.Cryptography.ICryptoTransform"> <summary> Defines the basic operations of cryptographic transformations. </summary> </member> <member name="P:System.Security.Cryptography.ICryptoTransform.CanReuseTransform"> <summary> Gets a value indicating whether the current transform can be reused. </summary> <returns>true if the current transform can be reused; otherwise, false. </returns> </member> <member name="P:System.Security.Cryptography.ICryptoTransform.CanTransformMultipleBlocks"> <summary> Gets a value indicating whether multiple blocks can be transformed. </summary> <returns>true if multiple blocks can be transformed; otherwise, false. </returns> </member> <member name="P:System.Security.Cryptography.ICryptoTransform.InputBlockSize"> <summary> Gets the input block size. </summary> <returns> The size of the input data blocks in bytes. </returns> </member> <member name="P:System.Security.Cryptography.ICryptoTransform.OutputBlockSize"> <summary> Gets the output block size. </summary> <returns> The size of the output data blocks in bytes. </returns> </member> <member name="M:System.Security.Cryptography.ICryptoTransform.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. </summary> <returns> The number of bytes written. </returns> <param name="inputBuffer"> The input for which to compute the transform. </param> <param name="inputOffset"> The offset into the input byte array from which to begin using data. </param> <param name="inputCount"> The number of bytes in the input byte array to use as data. </param> <param name="outputBuffer"> The output to which to write the transform. </param> <param name="outputOffset"> The offset into the output byte array from which to begin writing data. </param> </member> <member name="M:System.Security.Cryptography.ICryptoTransform.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)"> <summary> Transforms the specified region of the specified byte array. </summary> <returns> The computed transform. </returns> <param name="inputBuffer"> The input for which to compute the transform. </param> <param name="inputOffset"> The offset into the byte array from which to begin using data. </param> <param name="inputCount"> The number of bytes in the byte array to use as data. </param> </member> <member name="T:System.Security.Cryptography.ICspAsymmetricAlgorithm"> <summary> Defines methods that allow an <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> class to enumerate key container information, and import and export Microsoft Cryptographic API (CAPI)–compatible key blobs. </summary> </member> <member name="P:System.Security.Cryptography.ICspAsymmetricAlgorithm.CspKeyContainerInfo"> <summary> Gets a <see cref="T:System.Security.Cryptography.CspKeyContainerInfo" /> object that describes additional information about a cryptographic key pair. </summary> <returns> A <see cref="T:System.Security.Cryptography.CspKeyContainerInfo" /> object that describes additional information about a cryptographic key pair. </returns> </member> <member name="M:System.Security.Cryptography.ICspAsymmetricAlgorithm.ExportCspBlob(System.Boolean)"> <summary> Exports a blob that contains the key information associated with an <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> object. </summary> <returns> A byte array that contains the key information associated with an <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> object. </returns> <param name="includePrivateParameters">true to include the private key; otherwise, false. </param> </member> <member name="M:System.Security.Cryptography.ICspAsymmetricAlgorithm.ImportCspBlob(System.Byte[])"> <summary> Imports a blob that represents asymmetric key information. </summary> <param name="rawData"> A byte array that represents an asymmetric key blob. </param> </member> <member name="T:System.Security.Cryptography.KeyedHashAlgorithm"> <summary> Represents the abstract class from which all implementations of keyed hash algorithms must derive. </summary> </member> <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.KeyedHashAlgorithm" /> class. </summary> </member> <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Create"> <summary> Creates an instance of the default implementation of a keyed hash algorithm. </summary> <returns> A new instance of a keyed hash algorithm. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Create(System.String)"> <summary> Creates an instance of the specified implementation of a keyed hash algorithm. </summary> <returns> A new instance of the specified keyed hash algorithm. </returns> <param name="algName"> The name of the keyed hash algorithm implementation to use. </param> </member> <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.KeyedHashAlgorithm" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="P:System.Security.Cryptography.KeyedHashAlgorithm.Key"> <summary> Gets or sets the key to use in the hash algorithm. </summary> <returns> The key to use in the hash algorithm. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> An attempt was made to change the <see cref="P:System.Security.Cryptography.KeyedHashAlgorithm.Key" /> property after hashing has begun. </exception> </member> <member name="F:System.Security.Cryptography.KeyedHashAlgorithm.KeyValue"> <summary> The key to use in the hash algorithm. </summary> </member> <member name="T:System.Security.Cryptography.KeyNumber"> <summary> Specifies whether to create an asymmetric signature key or an asymmetric exchange key. </summary> </member> <member name="F:System.Security.Cryptography.KeyNumber.Exchange"> <summary> An exchange key pair used to encrypt session keys so that they can be safely stored and exchanged with other users. </summary> </member> <member name="F:System.Security.Cryptography.KeyNumber.Signature"> <summary> A signature key pair used for authenticating digitally signed messages or files. </summary> </member> <member name="T:System.Security.Cryptography.KeySizes"> <summary> Determines the set of valid key sizes for the symmetric cryptographic algorithms. </summary> </member> <member name="M:System.Security.Cryptography.KeySizes.#ctor(System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.KeySizes" /> class with the specified key values. </summary> <param name="minSize"> The minimum valid key size. </param> <param name="maxSize"> The maximum valid key size. </param> <param name="skipSize"> The interval between valid key sizes. </param> </member> <member name="P:System.Security.Cryptography.KeySizes.MaxSize"> <summary> Specifies the maximum key size in bits. </summary> <returns> The maximum key size in bits. </returns> </member> <member name="P:System.Security.Cryptography.KeySizes.MinSize"> <summary> Specifies the minimum key size in bits. </summary> <returns> The minimum key size in bits. </returns> </member> <member name="P:System.Security.Cryptography.KeySizes.SkipSize"> <summary> Specifies the interval between valid key sizes in bits. </summary> <returns> The interval between valid key sizes in bits. </returns> </member> <member name="T:System.Security.Cryptography.MACTripleDES"> <summary> Computes a Message Authentication Code (MAC) using <see cref="T:System.Security.Cryptography.TripleDES" /> for the input data <see cref="T:System.Security.Cryptography.CryptoStream" />. </summary> </member> <member name="M:System.Security.Cryptography.MACTripleDES.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.MACTripleDES" /> class. </summary> </member> <member name="M:System.Security.Cryptography.MACTripleDES.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.MACTripleDES" /> class with the specified key data. </summary> <param name="rgbKey"> The secret key for <see cref="T:System.Security.Cryptography.MACTripleDES" /> encryption. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rgbKey" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.MACTripleDES.#ctor(System.String,System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.MACTripleDES" /> class with the specified key data using the specified implementation of <see cref="T:System.Security.Cryptography.TripleDES" />. </summary> <param name="strTripleDES"> The name of the <see cref="T:System.Security.Cryptography.TripleDES" /> implementation to use. </param> <param name="rgbKey"> The secret key for <see cref="T:System.Security.Cryptography.MACTripleDES" /> encryption. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rgbKey" /> parameter is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The <paramref name="strTripleDES" /> parameter is not a valid name of a <see cref="T:System.Security.Cryptography.TripleDES" /> implementation. </exception> </member> <member name="M:System.Security.Cryptography.MACTripleDES.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.MACTripleDES" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.Security.Cryptography.MACTripleDES.HashCore(System.Byte[],System.Int32,System.Int32)"> <summary> Routes data written to the object into the <see cref="T:System.Security.Cryptography.TripleDES" /> encryptor for computing the Message Authentication Code (MAC). </summary> <param name="rgbData"> The input data. </param> <param name="ibStart"> The offset into the byte array from which to begin using data. </param> <param name="cbSize"> The number of bytes in the array to use as data. </param> </member> <member name="M:System.Security.Cryptography.MACTripleDES.HashFinal"> <summary> Returns the computed Message Authentication Code (MAC) after all data is written to the object. </summary> <returns> The computed MAC. </returns> </member> <member name="M:System.Security.Cryptography.MACTripleDES.Initialize"> <summary> Initializes an instance of <see cref="T:System.Security.Cryptography.MACTripleDES" />. </summary> </member> <member name="P:System.Security.Cryptography.MACTripleDES.Padding"> <summary> Gets or sets the padding mode used in the hashing algorithm. </summary> <returns> The padding mode used in the hashing algorithm. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The property cannot be set because the padding mode is invalid. </exception> </member> <member name="T:System.Security.Cryptography.MaskGenerationMethod"> <summary> Represents the abstract class from which all mask generator algorithms must derive. </summary> </member> <member name="M:System.Security.Cryptography.MaskGenerationMethod.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.MaskGenerationMethod" /> class. </summary> </member> <member name="M:System.Security.Cryptography.MaskGenerationMethod.GenerateMask(System.Byte[],System.Int32)"> <summary> When overridden in a derived class, generates a mask with the specified length using the specified random seed. </summary> <returns> A randomly generated mask whose length is equal to the <paramref name="cbReturn" /> parameter. </returns> <param name="rgbSeed"> The random seed to use to compute the mask. </param> <param name="cbReturn"> The length of the generated mask in bytes. </param> </member> <member name="T:System.Security.Cryptography.MD5"> <summary> Represents the abstract class from which all implementations of the <see cref="T:System.Security.Cryptography.MD5" /> hash algorithm inherit. </summary> </member> <member name="M:System.Security.Cryptography.MD5.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.MD5" />. </summary> </member> <member name="M:System.Security.Cryptography.MD5.Create"> <summary> Creates an instance of the default implementation of the <see cref="T:System.Security.Cryptography.MD5" /> hash algorithm. </summary> <returns> A new instance of the <see cref="T:System.Security.Cryptography.MD5" /> hash algorithm. </returns> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.MD5.Create(System.String)"> <summary> Creates an instance of the specified implementation of the <see cref="T:System.Security.Cryptography.MD5" /> hash algorithm. </summary> <returns> A new instance of the specified implementation of <see cref="T:System.Security.Cryptography.MD5" />. </returns> <param name="algName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.MD5" /> to use. </param> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm described by the <paramref name="algName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> </member> <member name="T:System.Security.Cryptography.MD5CryptoServiceProvider"> <summary> Computes the <see cref="T:System.Security.Cryptography.MD5" /> hash value for the input data using the implementation provided by the cryptographic service provider (CSP). This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.MD5CryptoServiceProvider.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.MD5CryptoServiceProvider" /> class. </summary> <exception cref="T:System.InvalidOperationException"> A FIPS-compliant algorithm policy is not being used. </exception> </member> <member name="M:System.Security.Cryptography.MD5CryptoServiceProvider.Initialize"> <summary> Initializes an instance of <see cref="T:System.Security.Cryptography.MD5CryptoServiceProvider" />. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Security.Cryptography.PaddingMode"> <summary> Specifies the type of padding to apply when the message data block is shorter than the full number of bytes needed for a cryptographic operation. </summary> </member> <member name="F:System.Security.Cryptography.PaddingMode.None"> <summary> No padding is done. </summary> </member> <member name="F:System.Security.Cryptography.PaddingMode.PKCS7"> <summary> The PKCS #7 padding string consists of a sequence of bytes, each of which is equal to the total number of padding bytes added. </summary> </member> <member name="F:System.Security.Cryptography.PaddingMode.Zeros"> <summary> The padding string consists of bytes set to zero. </summary> </member> <member name="F:System.Security.Cryptography.PaddingMode.ANSIX923"> <summary> The ANSIX923 padding string consists of a sequence of bytes filled with zeros before the length. </summary> </member> <member name="F:System.Security.Cryptography.PaddingMode.ISO10126"> <summary> The ISO10126 padding string consists of random data before the length. </summary> </member> <member name="T:System.Security.Cryptography.PasswordDeriveBytes"> <summary> Derives a key from a password using an extension of the PBKDF1 algorithm. </summary> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.#ctor(System.Byte[],System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.PasswordDeriveBytes" /> class specifying the password and key salt to use to derive the key. </summary> <param name="password"> The password to derive the key for. </param> <param name="salt"> The key salt to use to derive the key. </param> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.#ctor(System.Byte[],System.Byte[],System.Security.Cryptography.CspParameters)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.PasswordDeriveBytes" /> class specifying the password, key salt, and cryptographic service provider (CSP) to use to derive the key. </summary> <param name="password"> The password to derive the key for. </param> <param name="salt"> The key salt to use to derive the key. </param> <param name="cspParams"> The cryptographic service provider (CSP) parameters for the operation. </param> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.#ctor(System.Byte[],System.Byte[],System.String,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.PasswordDeriveBytes" /> class specifying the password, key salt, hash name, and iterations to use to derive the key. </summary> <param name="password"> The password to derive the key for. </param> <param name="salt"> The key salt to use to derive the key. </param> <param name="hashName"> The hash algorithm to use to derive the key. </param> <param name="iterations"> The iteration count to use to derive the key. </param> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.#ctor(System.Byte[],System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.PasswordDeriveBytes" /> class specifying the password, key salt, hash name, iterations, and cryptographic service provider (CSP) to use to derive the key. </summary> <param name="password"> The password to derive the key for. </param> <param name="salt"> The key salt to use to derive the key. </param> <param name="hashName"> The hash algorithm to use to derive the key. </param> <param name="iterations"> The iteration count to use to derive the key. </param> <param name="cspParams"> The cryptographic service provider (CSP) parameters for the operation. </param> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.#ctor(System.String,System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.PasswordDeriveBytes" /> class with the password and key salt to use to derive the key. </summary> <param name="strPassword"> The password for which to derive the key. </param> <param name="rgbSalt"> The key salt to use to derive the key. </param> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.#ctor(System.String,System.Byte[],System.Security.Cryptography.CspParameters)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.PasswordDeriveBytes" /> class with the password, key salt, and cryptographic service provider (CSP) parameters to use to derive the key. </summary> <param name="strPassword"> The password for which to derive the key. </param> <param name="rgbSalt"> The key salt to use to derive the key. </param> <param name="cspParams"> The CSP parameters for the operation. </param> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.#ctor(System.String,System.Byte[],System.String,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.PasswordDeriveBytes" /> class with the password, key salt, hash name, and number of iterations to use to derive the key. </summary> <param name="strPassword"> The password for which to derive the key. </param> <param name="rgbSalt"> The key salt to use to derive the key. </param> <param name="strHashName"> The name of the hash algorithm for the operation. </param> <param name="iterations"> The number of iterations for the operation. </param> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.#ctor(System.String,System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.PasswordDeriveBytes" /> class with the password, key salt, hash name, number of iterations, and cryptographic service provider (CSP) parameters to use to derive the key. </summary> <param name="strPassword"> The password for which to derive the key. </param> <param name="rgbSalt"> The key salt to use to derive the key. </param> <param name="strHashName"> The name of the hash algorithm for the operation. </param> <param name="iterations"> The number of iterations for the operation. </param> <param name="cspParams"> The CSP parameters for the operation. </param> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.CryptDeriveKey(System.String,System.String,System.Int32,System.Byte[])"> <summary> Derives a cryptographic key from the <see cref="T:System.Security.Cryptography.PasswordDeriveBytes" /> object. </summary> <returns> The derived key. </returns> <param name="algname"> The algorithm name for which to derive the key. </param> <param name="alghashname"> The hash algorithm name to use to derive the key. </param> <param name="keySize"> The size of the key, in bits, to derive. </param> <param name="rgbIV"> The initialization vector (IV) to use to derive the key. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The <paramref name="keySize" /> parameter is greater than 128. -or- The cryptographic service provider (CSP) cannot be acquired. -or- The <paramref name="algname" /> parameter is not a valid algorithm name. -or- The <paramref name="alghashname" /> parameter is not a valid hash algorithm name. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.GetBytes(System.Int32)"> <summary> Returns pseudo-random key bytes. </summary> <returns> A byte array filled with pseudo-random key bytes. </returns> <param name="cb"> The number of pseudo-random key bytes to generate. </param> </member> <member name="P:System.Security.Cryptography.PasswordDeriveBytes.HashName"> <summary> Gets or sets the name of the hash algorithm for the operation. </summary> <returns> The name of the hash algorithm for the operation. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The name of the hash value is fixed and an attempt is made to change this value. </exception> </member> <member name="P:System.Security.Cryptography.PasswordDeriveBytes.IterationCount"> <summary> Gets or sets the number of iterations for the operation. </summary> <returns> The number of iterations for the operation. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The number of iterations is fixed and an attempt is made to change this value. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The property cannot be set because its value is out of range. This property requires a non-negative number. </exception> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.Reset"> <summary> Resets the state of the operation. </summary> </member> <member name="P:System.Security.Cryptography.PasswordDeriveBytes.Salt"> <summary> Gets or sets the key salt value for the operation. </summary> <returns> The key salt value for the operation. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The key salt value is fixed and an attempt is made to change this value. </exception> </member> <member name="T:System.Security.Cryptography.PKCS1MaskGenerationMethod"> <summary> Computes masks according to PKCS #1 for use by key exchange algorithms. </summary> </member> <member name="M:System.Security.Cryptography.PKCS1MaskGenerationMethod.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.PKCS1MaskGenerationMethod" /> class. </summary> </member> <member name="M:System.Security.Cryptography.PKCS1MaskGenerationMethod.GenerateMask(System.Byte[],System.Int32)"> <summary> Generates and returns a mask from the specified random seed of the specified length. </summary> <returns> A randomly generated mask whose length is equal to the <paramref name="cbReturn" /> parameter. </returns> <param name="rgbSeed"> The random seed to use for computing the mask. </param> <param name="cbReturn"> The length of the generated mask in bytes. </param> </member> <member name="P:System.Security.Cryptography.PKCS1MaskGenerationMethod.HashName"> <summary> Gets or sets the name of the hash algorithm type to use for generating the mask. </summary> <returns> The name of the type that implements the hash algorithm to use for computing the mask. </returns> </member> <member name="T:System.Security.Cryptography.RandomNumberGenerator"> <summary> Represents the abstract class from which all implementations of cryptographic random number generators derive. </summary> </member> <member name="M:System.Security.Cryptography.RandomNumberGenerator.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.RandomNumberGenerator" />. </summary> </member> <member name="M:System.Security.Cryptography.RandomNumberGenerator.Create"> <summary> Creates an instance of the default implementation of a cryptographic random number generator that can be used to generate random data. </summary> <returns> A new instance of a cryptographic random number generator. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RandomNumberGenerator.Create(System.String)"> <summary> Creates an instance of the specified implementation of a cryptographic random number generator. </summary> <returns> A new instance of a cryptographic random number generator. </returns> <param name="rngName"> The name of the random number generator implementation to use. </param> </member> <member name="M:System.Security.Cryptography.RandomNumberGenerator.GetBytes(System.Byte[])"> <summary> When overridden in a derived class, fills an array of bytes with a cryptographically strong random sequence of values. </summary> <param name="data"> The array to fill with cryptographically strong random bytes. </param> </member> <member name="M:System.Security.Cryptography.RandomNumberGenerator.GetNonZeroBytes(System.Byte[])"> <summary> When overridden in a derived class, fills an array of bytes with a cryptographically strong random sequence of nonzero values. </summary> <param name="data"> The array to fill with cryptographically strong random nonzero bytes. </param> </member> <member name="T:System.Security.Cryptography.RC2"> <summary> Represents the base class from which all implementations of the <see cref="T:System.Security.Cryptography.RC2" /> algorithm must derive. </summary> </member> <member name="M:System.Security.Cryptography.RC2.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.RC2" />. </summary> </member> <member name="M:System.Security.Cryptography.RC2.Create"> <summary> Creates an instance of a cryptographic object to perform the <see cref="T:System.Security.Cryptography.RC2" /> algorithm. </summary> <returns> An instance of a cryptographic object. </returns> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RC2.Create(System.String)"> <summary> Creates an instance of a cryptographic object to perform the specified implementation of the <see cref="T:System.Security.Cryptography.RC2" /> algorithm. </summary> <returns> An instance of a cryptographic object. </returns> <param name="AlgName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.RC2" /> to use. </param> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm described by the <paramref name="algName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> </member> <member name="P:System.Security.Cryptography.RC2.EffectiveKeySize"> <summary> Gets or sets the effective size of the secret key used by the <see cref="T:System.Security.Cryptography.RC2" /> algorithm in bits. </summary> <returns> The effective key size used by the <see cref="T:System.Security.Cryptography.RC2" /> algorithm. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The effective key size is invalid. </exception> </member> <member name="F:System.Security.Cryptography.RC2.EffectiveKeySizeValue"> <summary> Represents the effective size of the secret key used by the <see cref="T:System.Security.Cryptography.RC2" /> algorithm in bits. </summary> </member> <member name="P:System.Security.Cryptography.RC2.KeySize"> <summary> Gets or sets the size of the secret key used by the <see cref="T:System.Security.Cryptography.RC2" /> algorithm in bits. </summary> <returns> The size of the secret key used by the <see cref="T:System.Security.Cryptography.RC2" /> algorithm. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The value for the RC2 key size is less than the effective key size value. </exception> </member> <member name="T:System.Security.Cryptography.RC2CryptoServiceProvider"> <summary> Defines a wrapper object to access the cryptographic service provider (CSP) implementation of the <see cref="T:System.Security.Cryptography.RC2" /> algorithm. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.RC2CryptoServiceProvider.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RC2CryptoServiceProvider" /> class. </summary> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. </exception> <exception cref="T:System.InvalidOperationException"> A non-compliant FIPS algorithm was found. </exception> </member> <member name="M:System.Security.Cryptography.RC2CryptoServiceProvider.CreateDecryptor(System.Byte[],System.Byte[])"> <summary> Creates a symmetric <see cref="T:System.Security.Cryptography.RC2" /> decryptor object with the specified key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" />)and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric <see cref="T:System.Security.Cryptography.RC2" /> decryptor object. </returns> <param name="rgbKey"> The secret key to use for the symmetric algorithm. </param> <param name="rgbIV"> The initialization vector to use for the symmetric algorithm. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An <see cref="F:System.Security.Cryptography.CipherMode.OFB" /> cipher mode was used. -or- A <see cref="F:System.Security.Cryptography.CipherMode.CFB" /> cipher mode with a feedback size other than 8 bits was used. -or- An invalid key size was used. -or- The algorithm key size was not available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RC2CryptoServiceProvider.CreateEncryptor(System.Byte[],System.Byte[])"> <summary> Creates a symmetric <see cref="T:System.Security.Cryptography.RC2" /> encryptor object with the specified key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" />) and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric <see cref="T:System.Security.Cryptography.RC2" /> encryptor object. </returns> <param name="rgbKey"> The secret key to use for the symmetric algorithm. </param> <param name="rgbIV"> The initialization vector to use for the symmetric algorithm. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An <see cref="F:System.Security.Cryptography.CipherMode.OFB" /> cipher mode was used. -or- A <see cref="F:System.Security.Cryptography.CipherMode.CFB" /> cipher mode with a feedback size other than 8 bits was used. -or- An invalid key size was used. -or- The algorithm key size was not available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.RC2CryptoServiceProvider.EffectiveKeySize"> <summary> Gets or sets the effective size, in bits, of the secret key used by the <see cref="T:System.Security.Cryptography.RC2" /> algorithm. </summary> <returns> The effective key size, in bits, used by the <see cref="T:System.Security.Cryptography.RC2" /> algorithm. </returns> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The <see cref="P:System.Security.Cryptography.RC2CryptoServiceProvider.EffectiveKeySize" /> property was set to a value other than the <see cref="F:System.Security.Cryptography.SymmetricAlgorithm.KeySizeValue" /> property. </exception> </member> <member name="M:System.Security.Cryptography.RC2CryptoServiceProvider.GenerateIV"> <summary> Generates a random initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />) to use for the algorithm. </summary> </member> <member name="M:System.Security.Cryptography.RC2CryptoServiceProvider.GenerateKey"> <summary> Generates a random key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" />) to be used for the algorithm. </summary> </member> <member name="P:System.Security.Cryptography.RC2CryptoServiceProvider.UseSalt"> <summary> Gets or sets a value that determines whether to create a key with an 11-byte-long, zero-value salt. </summary> <returns>true if the key should be created with an 11-byte-long, zero-value salt; otherwise, false. The default is false. </returns> </member> <member name="T:System.Security.Cryptography.Rfc2898DeriveBytes"> <summary> Implements password-based key derivation functionality, PBKDF2, by using a pseudo-random number generator based on <see cref="T:System.Security.Cryptography.HMACSHA1" />. </summary> </member> <member name="M:System.Security.Cryptography.Rfc2898DeriveBytes.#ctor(System.Byte[],System.Byte[],System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.Rfc2898DeriveBytes" /> class using a password, a salt, and number of iterations to derive the key. </summary> <param name="password"> The password used to derive the key. </param> <param name="salt"> The key salt used to derive the key. </param> <param name="iterations"> The number of iterations for the operation. </param> <exception cref="T:System.ArgumentException"> The specified salt size is smaller than 8 bytes or the iteration count is less than 1. </exception> <exception cref="T:System.ArgumentNullException"> The password or salt is null. </exception> </member> <member name="M:System.Security.Cryptography.Rfc2898DeriveBytes.#ctor(System.String,System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.Rfc2898DeriveBytes" /> class using a password and salt to derive the key. </summary> <param name="password"> The password used to derive the key. </param> <param name="salt"> The key salt used to derive the key. </param> <exception cref="T:System.ArgumentException"> The specified salt size is smaller than 8 bytes or the iteration count is less than 1. </exception> <exception cref="T:System.ArgumentNullException"> The password or salt is null. </exception> </member> <member name="M:System.Security.Cryptography.Rfc2898DeriveBytes.#ctor(System.String,System.Byte[],System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.Rfc2898DeriveBytes" /> class using a password, a salt, and number of iterations to derive the key. </summary> <param name="password"> The password used to derive the key. </param> <param name="salt"> The key salt used to derive the key. </param> <param name="iterations"> The number of iterations for the operation. </param> <exception cref="T:System.ArgumentException"> The specified salt size is smaller than 8 bytes or the iteration count is less than 1. </exception> <exception cref="T:System.ArgumentNullException"> The password or salt is null. </exception> </member> <member name="M:System.Security.Cryptography.Rfc2898DeriveBytes.#ctor(System.String,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.Rfc2898DeriveBytes" /> class using the password and salt size to derive the key. </summary> <param name="password"> The password used to derive the key. </param> <param name="saltSize"> The size of the random salt that you want the class to generate. </param> <exception cref="T:System.ArgumentException"> The specified salt size is smaller than 8 bytes. </exception> <exception cref="T:System.ArgumentNullException"> The password or salt is null. </exception> </member> <member name="M:System.Security.Cryptography.Rfc2898DeriveBytes.#ctor(System.String,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.Rfc2898DeriveBytes" /> class using a password, a salt size, and number of iterations to derive the key. </summary> <param name="password"> The password used to derive the key. </param> <param name="saltSize"> The size of the random salt that you want the class to generate. </param> <param name="iterations"> The number of iterations for the operation. </param> <exception cref="T:System.ArgumentException"> The specified salt size is smaller than 8 bytes or the iteration count is less than 1. </exception> <exception cref="T:System.ArgumentNullException"> The password or salt is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="iterations " />is out of range. This parameter requires a non-negative number. </exception> </member> <member name="M:System.Security.Cryptography.Rfc2898DeriveBytes.GetBytes(System.Int32)"> <summary> Returns a pseudo-random key from a password, salt and iteration count. </summary> <returns> A byte array filled with pseudo-random key bytes. </returns> <param name="cb"> The number of pseudo-random key bytes to generate. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="cb " />is out of range. This parameter requires a non-negative number. </exception> </member> <member name="P:System.Security.Cryptography.Rfc2898DeriveBytes.IterationCount"> <summary> Gets or sets the number of iterations for the operation. </summary> <returns> The number of iterations for the operation. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The number of iterations is less than 1. </exception> </member> <member name="M:System.Security.Cryptography.Rfc2898DeriveBytes.Reset"> <summary> Resets the state of the operation. </summary> </member> <member name="P:System.Security.Cryptography.Rfc2898DeriveBytes.Salt"> <summary> Gets or sets the key salt value for the operation. </summary> <returns> The key salt value for the operation. </returns> <exception cref="T:System.ArgumentException"> The specified salt size is smaller than 8 bytes. </exception> <exception cref="T:System.ArgumentNullException"> The salt is null. </exception> </member> <member name="T:System.Security.Cryptography.Rijndael"> <summary> Represents the base class from which all implementations of the <see cref="T:System.Security.Cryptography.Rijndael" /> symmetric encryption algorithm must inherit. </summary> </member> <member name="M:System.Security.Cryptography.Rijndael.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.Rijndael" />. </summary> </member> <member name="M:System.Security.Cryptography.Rijndael.Create"> <summary> Creates a cryptographic object to perform the <see cref="T:System.Security.Cryptography.Rijndael" /> algorithm. </summary> <returns> A cryptographic object. </returns> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.Rijndael.Create(System.String)"> <summary> Creates a cryptographic object to perform the specified implementation of the <see cref="T:System.Security.Cryptography.Rijndael" /> algorithm. </summary> <returns> A cryptographic object. </returns> <param name="algName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.Rijndael" /> to create. </param> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm described by the <paramref name="algName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> </member> <member name="T:System.Security.Cryptography.RijndaelManaged"> <summary> Accesses the managed version of the <see cref="T:System.Security.Cryptography.Rijndael" /> algorithm. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.RijndaelManaged.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RijndaelManaged" /> class. </summary> <exception cref="T:System.InvalidOperationException"> This class is not compliant with the FIPS algorithm. </exception> </member> <member name="M:System.Security.Cryptography.RijndaelManaged.CreateDecryptor(System.Byte[],System.Byte[])"> <summary> Creates a symmetric <see cref="T:System.Security.Cryptography.Rijndael" /> decryptor object with the specified <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" /> and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric <see cref="T:System.Security.Cryptography.Rijndael" /> decryptor object. </returns> <param name="rgbKey"> The secret key to be used for the symmetric algorithm. The key size must be 126, 128, or 256 bits. </param> <param name="rgbIV"> The IV to be used for the symmetric algorithm. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rgbKey" /> parameter is null. -or- The <paramref name="rgbIV" /> parameter is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Mode" /> parameter is not <see cref="F:System.Security.Cryptography.CipherMode.ECB" />, <see cref="F:System.Security.Cryptography.CipherMode.CBC" />, or <see cref="F:System.Security.Cryptography.CipherMode.CFB" />. </exception> </member> <member name="M:System.Security.Cryptography.RijndaelManaged.CreateEncryptor(System.Byte[],System.Byte[])"> <summary> Creates a symmetric <see cref="T:System.Security.Cryptography.Rijndael" /> encryptor object with the specified <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" /> and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric <see cref="T:System.Security.Cryptography.Rijndael" /> encryptor object. </returns> <param name="rgbKey"> The secret key to be used for the symmetric algorithm. The key size must be 126, 128, or 256 bits. </param> <param name="rgbIV"> The IV to be used for the symmetric algorithm. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rgbKey" /> parameter is null. -or- The <paramref name="rgbIV" /> parameter is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Mode" /> parameter is not <see cref="F:System.Security.Cryptography.CipherMode.ECB" />, <see cref="F:System.Security.Cryptography.CipherMode.CBC" />, or <see cref="F:System.Security.Cryptography.CipherMode.CFB" />. </exception> </member> <member name="M:System.Security.Cryptography.RijndaelManaged.GenerateIV"> <summary> Generates a random initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />) to be used for the algorithm. </summary> </member> <member name="M:System.Security.Cryptography.RijndaelManaged.GenerateKey"> <summary> Generates a random <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" /> to be used for the algorithm. </summary> </member> <member name="T:System.Security.Cryptography.RijndaelManagedTransform"> <summary> Performs a cryptographic transformation of data using the Rijndael algorithm. This class cannot be inherited. </summary> </member> <member name="P:System.Security.Cryptography.RijndaelManagedTransform.BlockSizeValue"> <summary> Gets the block size. </summary> <returns> The size of the data blocks in bytes. </returns> </member> <member name="P:System.Security.Cryptography.RijndaelManagedTransform.CanReuseTransform"> <summary> Gets a value indicating whether the current transform can be reused. </summary> <returns> Always true. </returns> </member> <member name="P:System.Security.Cryptography.RijndaelManagedTransform.CanTransformMultipleBlocks"> <summary> Gets a value indicating whether multiple blocks can be transformed. </summary> <returns>true if multiple blocks can be transformed; otherwise, false. </returns> </member> <member name="M:System.Security.Cryptography.RijndaelManagedTransform.Clear"> <summary> Releases all resources used by the <see cref="T:System.Security.Cryptography.RijndaelManagedTransform" /> class. </summary> </member> <member name="P:System.Security.Cryptography.RijndaelManagedTransform.InputBlockSize"> <summary> Gets the input block size. </summary> <returns> The size of the input data blocks in bytes. </returns> </member> <member name="P:System.Security.Cryptography.RijndaelManagedTransform.OutputBlockSize"> <summary> Gets the output block size. </summary> <returns> The size of the output data blocks in bytes. </returns> </member> <member name="M:System.Security.Cryptography.RijndaelManagedTransform.Reset"> <summary> Resets the internal state of <see cref="T:System.Security.Cryptography.RijndaelManagedTransform" /> so it can be used again to do a different encryption or decryption. </summary> </member> <member name="M:System.Security.Cryptography.RijndaelManagedTransform.System#IDisposable#Dispose"> <summary> Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. </summary> </member> <member name="M:System.Security.Cryptography.RijndaelManagedTransform.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Computes the transformation for the specified region of the input byte array and copies the resulting transformation to the specified region of the output byte array. </summary> <returns> The number of bytes written. </returns> <param name="inputBuffer"> The input to perform the operation on. </param> <param name="inputOffset"> The offset into the input byte array to begin using data from. </param> <param name="inputCount"> The number of bytes in the input byte array to use as data. </param> <param name="outputBuffer"> The output to write the data to. </param> <param name="outputOffset"> The offset into the output byte array to begin writing data from. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="inputBuffer" /> parameter is null. -or- The <paramref name="outputBuffer" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The length of the input buffer is less than the sum of the input offset and the input count. -or- The value of the <paramref name="inputCount" /> parameter is less than or equal to 0. -or- The value of the <paramref name="inputCount" /> parameter is greater than the length of the <paramref name="inputBuffer" /> parameter. -or- The length of the <paramref name="inputCount" /> parameter is not evenly devisable by input block size. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="inputOffset" /> parameter is negative. </exception> </member> <member name="M:System.Security.Cryptography.RijndaelManagedTransform.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)"> <summary> Computes the transformation for the specified region of the specified byte array. </summary> <returns> The computed transformation. </returns> <param name="inputBuffer"> The input to perform the operation on. </param> <param name="inputOffset"> The offset into the byte array to begin using data from. </param> <param name="inputCount"> The number of bytes in the byte array to use as data. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="inputBuffer" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The value of the <paramref name="inputCount" /> parameter is less than 0. -or- The value of the <paramref name="inputCount" /> parameter is grater than the length of <paramref name="inputBuffer" /> parameter. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="inputOffset" /> parameter is negative. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The length of the <paramref name="inputCount" /> parameter is not evenly devisable by input block size. </exception> </member> <member name="T:System.Security.Cryptography.RIPEMD160"> <summary> Represents the abstract class from which all implementations of the MD160 hash algorithm inherit. </summary> </member> <member name="M:System.Security.Cryptography.RIPEMD160.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> class. </summary> </member> <member name="M:System.Security.Cryptography.RIPEMD160.Create"> <summary> Creates an instance of the default implementation of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash algorithm. </summary> <returns> A new instance of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash algorithm. </returns> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but it is not FIPS-compatible. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RIPEMD160.Create(System.String)"> <summary> Creates an instance of the specified implementation of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash algorithm. </summary> <returns> A new instance of the specified implementation of <see cref="T:System.Security.Cryptography.RIPEMD160" />. </returns> <param name="hashName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.RIPEMD160" /> to use. </param> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm described by the <paramref name="hashName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but it is not FIPS-compatible. </exception> </member> <member name="T:System.Security.Cryptography.RIPEMD160Managed"> <summary> Computes the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash for the input data using the managed library. </summary> </member> <member name="M:System.Security.Cryptography.RIPEMD160Managed.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> class. </summary> <exception cref="T:System.InvalidOperationException"> The policy is not compliant with the FIPS algorithm. </exception> </member> <member name="M:System.Security.Cryptography.RIPEMD160Managed.HashCore(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, routes data written to the object into the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash algorithm for computing the hash. </summary> <param name="rgb"> The input data. </param> <param name="ibStart"> The offset into the byte array from which to begin using data. </param> <param name="cbSize"> The number of bytes in the array to use as data. </param> </member> <member name="M:System.Security.Cryptography.RIPEMD160Managed.HashFinal"> <summary> When overridden in a derived class, finalizes the hash computation after the last data is processed by the cryptographic stream object. </summary> <returns> The computed hash code in a byte array. </returns> </member> <member name="M:System.Security.Cryptography.RIPEMD160Managed.Initialize"> <summary> Initializes an instance of the <see cref="T:System.Security.Cryptography.RIPEMD160Managed" /> class using the managed library. </summary> </member> <member name="T:System.Security.Cryptography.RNGCryptoServiceProvider"> <summary> Implements a cryptographic Random Number Generator (RNG) using the implementation provided by the cryptographic service provider (CSP). This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.RNGCryptoServiceProvider.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RNGCryptoServiceProvider" /> class. </summary> </member> <member name="M:System.Security.Cryptography.RNGCryptoServiceProvider.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RNGCryptoServiceProvider" /> class. </summary> <param name="rgb"> A byte array. This value is ignored. </param> </member> <member name="M:System.Security.Cryptography.RNGCryptoServiceProvider.#ctor(System.Security.Cryptography.CspParameters)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RNGCryptoServiceProvider" /> class with the specified parameters. </summary> <param name="cspParams"> The parameters to pass to the cryptographic service provider (CSP). </param> </member> <member name="M:System.Security.Cryptography.RNGCryptoServiceProvider.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RNGCryptoServiceProvider" /> class. </summary> <param name="str"> The string input. This parameter is ignored. </param> </member> <member name="M:System.Security.Cryptography.RNGCryptoServiceProvider.GetBytes(System.Byte[])"> <summary> Fills an array of bytes with a cryptographically strong sequence of random values. </summary> <param name="data"> The array to fill with a cryptographically strong sequence of random values. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="data" /> is null. </exception> </member> <member name="M:System.Security.Cryptography.RNGCryptoServiceProvider.GetNonZeroBytes(System.Byte[])"> <summary> Fills an array of bytes with a cryptographically strong sequence of random nonzero values. </summary> <param name="data"> The array to fill with a cryptographically strong sequence of random nonzero values. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="data" /> is null. </exception> </member> <member name="T:System.Security.Cryptography.RSA"> <summary> Represents the base class from which all implementations of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm inherit. </summary> </member> <member name="M:System.Security.Cryptography.RSA.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.RSA" />. </summary> </member> <member name="M:System.Security.Cryptography.RSA.Create"> <summary> Creates an instance of the default implementation of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> <returns> A new instance of the default implementation of <see cref="T:System.Security.Cryptography.RSA" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSA.Create(System.String)"> <summary> Creates an instance of the specified implementation of <see cref="T:System.Security.Cryptography.RSA" />. </summary> <returns> A new instance of the specified implementation of <see cref="T:System.Security.Cryptography.RSA" />. </returns> <param name="algName"> The name of the implementation of <see cref="T:System.Security.Cryptography.RSA" /> to use. </param> </member> <member name="M:System.Security.Cryptography.RSA.DecryptValue(System.Byte[])"> <summary> When overridden in a derived class, decrypts the input data using the private key. </summary> <returns> The resulting decryption of the <paramref name="rgb" /> parameter in plain text. </returns> <param name="rgb"> The cipher text to be decrypted. </param> </member> <member name="M:System.Security.Cryptography.RSA.EncryptValue(System.Byte[])"> <summary> When overridden in a derived class, encrypts the input data using the public key. </summary> <returns> The resulting encryption of the <paramref name="rgb" /> parameter as cipher text. </returns> <param name="rgb"> The plain text to be encrypted. </param> </member> <member name="M:System.Security.Cryptography.RSA.ExportParameters(System.Boolean)"> <summary> When overridden in a derived class, exports the <see cref="T:System.Security.Cryptography.RSAParameters" />. </summary> <returns> The parameters for <see cref="T:System.Security.Cryptography.DSA" />. </returns> <param name="includePrivateParameters">true to include private parameters; otherwise, false. </param> </member> <member name="M:System.Security.Cryptography.RSA.FromXmlString(System.String)"> <summary> Initializes an <see cref="T:System.Security.Cryptography.RSA" /> object from the key information from an XML string. </summary> <param name="xmlString"> The XML string containing <see cref="T:System.Security.Cryptography.RSA" /> key information. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="xmlString" /> parameter is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The format of the <paramref name="xmlString" /> parameter is not valid. </exception> </member> <member name="M:System.Security.Cryptography.RSA.ImportParameters(System.Security.Cryptography.RSAParameters)"> <summary> When overridden in a derived class, imports the specified <see cref="T:System.Security.Cryptography.RSAParameters" />. </summary> <param name="parameters"> The parameters for <see cref="T:System.Security.Cryptography.RSA" />. </param> </member> <member name="M:System.Security.Cryptography.RSA.ToXmlString(System.Boolean)"> <summary> Creates and returns an XML string containing the key of the current <see cref="T:System.Security.Cryptography.RSA" /> object. </summary> <returns> An XML string containing the key of the current <see cref="T:System.Security.Cryptography.RSA" /> object. </returns> <param name="includePrivateParameters">true to include a public and private RSA key; false to include only the public key. </param> </member> <member name="T:System.Security.Cryptography.RSACryptoServiceProvider"> <summary> Performs asymmetric encryption and decryption using the implementation of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm provided by the cryptographic service provider (CSP). This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider" /> class using the default key. </summary> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. </exception> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider" /> class with the specified key size. </summary> <param name="dwKeySize"> The size of the key to use in bits. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. </exception> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.#ctor(System.Int32,System.Security.Cryptography.CspParameters)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider" /> class with the specified key size and parameters. </summary> <param name="dwKeySize"> The size of the key to use in bits. </param> <param name="parameters"> The parameters to be passed to the cryptographic service provider (CSP). </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The CSP cannot be acquired. -or- The key cannot be created. </exception> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.#ctor(System.Security.Cryptography.CspParameters)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider" /> class with the specified parameters. </summary> <param name="parameters"> The parameters to be passed to the cryptographic service provider (CSP). </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The CSP cannot be acquired. </exception> </member> <member name="P:System.Security.Cryptography.RSACryptoServiceProvider.CspKeyContainerInfo"> <summary> Gets a <see cref="T:System.Security.Cryptography.CspKeyContainerInfo" /> object that describes additional information about a cryptographic key pair. </summary> <returns> A <see cref="T:System.Security.Cryptography.CspKeyContainerInfo" /> object that describes additional information about a cryptographic key pair. </returns> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.Decrypt(System.Byte[],System.Boolean)"> <summary> Decrypts data with the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> <returns> The decrypted data, which is the original plain text before encryption. </returns> <param name="rgb"> The data to be decrypted. </param> <param name="fOAEP">true to perform direct <see cref="T:System.Security.Cryptography.RSA" /> decryption using OAEP padding (only available on a computer running Microsoft Windows XP or later); otherwise, false to use PKCS#1 v1.5 padding. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. -or- The <paramref name="fOAEP" /> parameter is true and the length of the <paramref name="rgb" /> parameter is greater than <see cref="P:System.Security.Cryptography.RSACryptoServiceProvider.KeySize" />. -or- The <paramref name="fOAEP" /> parameter is true and OAEP is not supported. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="rgb " />is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.DecryptValue(System.Byte[])"> <summary> This method is not supported in the current version. </summary> <returns> The decrypted data, which is the original plain text before encryption. </returns> <param name="rgb"> The data to be decrypted. </param> <exception cref="T:System.NotSupportedException"> This method is not supported in the current version. </exception> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.Encrypt(System.Byte[],System.Boolean)"> <summary> Encrypts data with the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> <returns> The encrypted data. </returns> <param name="rgb"> The data to be encrypted. </param> <param name="fOAEP">true to perform direct <see cref="T:System.Security.Cryptography.RSA" /> encryption using OAEP padding (only available on a computer running Microsoft Windows XP or later); otherwise, false to use PKCS#1 v1.5 padding. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. -or- The length of the <paramref name="rgb" /> parameter is greater than the maximum allowed length. -or- The <paramref name="fOAEP" /> parameter is true and OAEP padding is not supported. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="rgb " />is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.EncryptValue(System.Byte[])"> <summary> This method is not supported in the current version. </summary> <returns> The encrypted data. </returns> <param name="rgb"> The data to be encrypted. </param> <exception cref="T:System.NotSupportedException"> This method is not supported in the current version. </exception> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.ExportCspBlob(System.Boolean)"> <summary> Exports a blob containing the key information associated with an <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider" /> object. </summary> <returns> A byte array containing the key information associated with an <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider" /> object. </returns> <param name="includePrivateParameters">true to include the private key; otherwise, false. </param> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.ExportParameters(System.Boolean)"> <summary> Exports the <see cref="T:System.Security.Cryptography.RSAParameters" />. </summary> <returns> The parameters for <see cref="T:System.Security.Cryptography.RSA" />. </returns> <param name="includePrivateParameters">true to include private parameters; otherwise, false. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The key cannot be exported. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.ImportCspBlob(System.Byte[])"> <summary> Imports a blob that represents RSA key information. </summary> <param name="keyBlob"> A byte array that represents an RSA key blob. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.ImportParameters(System.Security.Cryptography.RSAParameters)"> <summary> Imports the specified <see cref="T:System.Security.Cryptography.RSAParameters" />. </summary> <param name="parameters"> The parameters for <see cref="T:System.Security.Cryptography.RSA" />. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. -or- The <paramref name="parameters" /> parameter has missing fields. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.RSACryptoServiceProvider.KeyExchangeAlgorithm"> <summary> Gets the name of the key exchange algorithm available with this implementation of <see cref="T:System.Security.Cryptography.RSA" />. </summary> <returns> The name of the key exchange algorithm if it exists; otherwise, null. </returns> </member> <member name="P:System.Security.Cryptography.RSACryptoServiceProvider.KeySize"> <summary> Gets the size of the current key. </summary> <returns> The size of the key in bits. </returns> </member> <member name="P:System.Security.Cryptography.RSACryptoServiceProvider.PersistKeyInCsp"> <summary> Gets or sets a value indicating whether the key should be persisted in the cryptographic service provider (CSP). </summary> <returns>true if the key should be persisted in the CSP; otherwise, false. </returns> </member> <member name="P:System.Security.Cryptography.RSACryptoServiceProvider.PublicOnly"> <summary> Gets a value that indicates whether the <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider" /> object contains only a public key. </summary> <returns>true if the <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider" /> object contains only a public key; otherwise, false. </returns> </member> <member name="P:System.Security.Cryptography.RSACryptoServiceProvider.SignatureAlgorithm"> <summary> Gets the name of the signature algorithm available with this implementation of <see cref="T:System.Security.Cryptography.RSA" />. </summary> <returns> The name of the signature algorithm. </returns> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.SignData(System.Byte[],System.Int32,System.Int32,System.Object)"> <summary> Computes the hash value of a subset of the specified byte array using the specified hash algorithm, and signs the resulting hash value. </summary> <returns> The <see cref="T:System.Security.Cryptography.RSA" /> signature for the specified data. </returns> <param name="buffer"> The input data for which to compute the hash. </param> <param name="offset"> The offset into the array from which to begin using data. </param> <param name="count"> The number of bytes in the array to use as data. </param> <param name="halg"> The hash algorithm to use to create the hash value. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="halg" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="halg" /> parameter is not a valid type. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.SignData(System.Byte[],System.Object)"> <summary> Computes the hash value of the specified byte array using the specified hash algorithm, and signs the resulting hash value. </summary> <returns> The <see cref="T:System.Security.Cryptography.RSA" /> signature for the specified data. </returns> <param name="buffer"> The input data for which to compute the hash. </param> <param name="halg"> The hash algorithm to use to create the hash value. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="halg" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="halg" /> parameter is not a valid type. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.SignData(System.IO.Stream,System.Object)"> <summary> Computes the hash value of the specified input stream using the specified hash algorithm, and signs the resulting hash value. </summary> <returns> The <see cref="T:System.Security.Cryptography.RSA" /> signature for the specified data. </returns> <param name="inputStream"> The input data for which to compute the hash. </param> <param name="halg"> The hash algorithm to use to create the hash value. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="halg" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="halg" /> parameter is not a valid type. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.SignHash(System.Byte[],System.String)"> <summary> Computes the signature for the specified hash value by encrypting it with the private key. </summary> <returns> The <see cref="T:System.Security.Cryptography.RSA" /> signature for the specified hash value. </returns> <param name="rgbHash"> The hash value of the data to be signed. </param> <param name="str"> The hash algorithm identifier (OID) used to create the hash value of the data. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rgbHash" /> parameter is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. -or- There is no private key. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.RSACryptoServiceProvider.UseMachineKeyStore"> <summary> Gets or sets a value indicating whether the key should be persisted in the computer's key store instead of the user profile store. </summary> <returns>true if the key should be persisted in the computer key store; otherwise, false. </returns> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.VerifyData(System.Byte[],System.Object,System.Byte[])"> <summary> Verifies the specified signature data by comparing it to the signature computed for the specified data. </summary> <returns>true if the signature verifies as valid; otherwise, false. </returns> <param name="buffer"> The data that was signed. </param> <param name="halg"> The name of the hash algorithm used to create the hash value of the data. </param> <param name="signature"> The signature data to be verified. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="halg" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="halg" /> parameter is not a valid type. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSACryptoServiceProvider.VerifyHash(System.Byte[],System.String,System.Byte[])"> <summary> Verifies the specified signature data by comparing it to the signature computed for the specified hash value. </summary> <returns>true if the signature verifies as valid; otherwise, false. </returns> <param name="rgbHash"> The hash value of the data to be signed. </param> <param name="str"> The hash algorithm identifier (OID) used to create the hash value of the data. </param> <param name="rgbSignature"> The signature data to be verified. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="rgbHash" /> parameter is null. -or- The <paramref name="rgbSignature" /> parameter is null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. -or- The signature cannot be verified. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter"> <summary> Decrypts Optimal Asymmetric Encryption Padding (OAEP) key exchange data. </summary> </member> <member name="M:System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter" /> class. </summary> </member> <member name="M:System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter.#ctor(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter" /> class with the specified key. </summary> <param name="key"> The instance of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm that holds the private key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key " />is null. </exception> </member> <member name="M:System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter.DecryptKeyExchange(System.Byte[])"> <summary> Extracts secret information from the encrypted key exchange data. </summary> <returns> The secret information derived from the key exchange data. </returns> <param name="rgbData"> The key exchange data within which the secret information is hidden. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The key exchange data verification has failed. </exception> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The key is missing. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter.Parameters"> <summary> Gets the parameters for the Optimal Asymmetric Encryption Padding (OAEP) key exchange. </summary> <returns> An XML string containing the parameters of the OAEP key exchange operation. </returns> </member> <member name="M:System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Sets the private key to use for decrypting the secret information. </summary> <param name="key"> The instance of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm that holds the private key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="T:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter"> <summary> Creates Optimal Asymmetric Encryption Padding (OAEP) key exchange data using <see cref="T:System.Security.Cryptography.RSA" />. </summary> </member> <member name="M:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter" /> class. </summary> </member> <member name="M:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter.#ctor(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter" /> class with the specified key. </summary> <param name="key"> The instance of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm that holds the public key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key " />is null. </exception> </member> <member name="M:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter.CreateKeyExchange(System.Byte[])"> <summary> Creates the encrypted key exchange data from the specified input data. </summary> <returns> The encrypted key exchange data to be sent to the intended recipient. </returns> <param name="rgbData"> The secret information to be passed in the key exchange. </param> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The key is missing. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter.CreateKeyExchange(System.Byte[],System.Type)"> <summary> Creates the encrypted key exchange data from the specified input data. </summary> <returns> The encrypted key exchange data to be sent to the intended recipient. </returns> <param name="rgbData"> The secret information to be passed in the key exchange. </param> <param name="symAlgType"> This parameter is not used in the current version. </param> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter.Parameter"> <summary> Gets or sets the parameter used to create padding in the key exchange creation process. </summary> <returns> The parameter value. </returns> </member> <member name="P:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter.Parameters"> <summary> Gets the parameters for the Optimal Asymmetric Encryption Padding (OAEP) key exchange. </summary> <returns> An XML string containing the parameters of the OAEP key exchange operation. </returns> </member> <member name="P:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter.Rng"> <summary> Gets or sets the random number generator algorithm to use in the creation of the key exchange. </summary> <returns> The instance of a random number generator algorithm to use. </returns> </member> <member name="M:System.Security.Cryptography.RSAOAEPKeyExchangeFormatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Sets the public key to use for encrypting the key exchange data. </summary> <param name="key"> The instance of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm that holds the public key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key " />is null. </exception> </member> <member name="T:System.Security.Cryptography.RSAParameters"> <summary> Represents the standard parameters for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.RSAParameters.D"> <summary> Represents the D parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.RSAParameters.DP"> <summary> Represents the DP parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.RSAParameters.DQ"> <summary> Represents the DQ parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.RSAParameters.Exponent"> <summary> Represents the Exponent parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.RSAParameters.InverseQ"> <summary> Represents the InverseQ parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.RSAParameters.Modulus"> <summary> Represents the Modulus parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.RSAParameters.P"> <summary> Represents the P parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> </member> <member name="F:System.Security.Cryptography.RSAParameters.Q"> <summary> Represents the Q parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm. </summary> </member> <member name="T:System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter"> <summary> Decrypts the PKCS #1 key exchange data. </summary> </member> <member name="M:System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter" /> class. </summary> </member> <member name="M:System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter.#ctor(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter" /> class with the specified key. </summary> <param name="key"> The instance of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm that holds the private key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="M:System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter.DecryptKeyExchange(System.Byte[])"> <summary> Extracts secret information from the encrypted key exchange data. </summary> <returns> The secret information derived from the key exchange data. </returns> <param name="rgbIn"> The key exchange data within which the secret information is hidden. </param> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The key is missing. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter.Parameters"> <summary> Gets the parameters for the PKCS #1 key exchange. </summary> <returns> An XML string containing the parameters of the PKCS #1 key exchange operation. </returns> </member> <member name="P:System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter.RNG"> <summary> Gets or sets the random number generator algorithm to use in the creation of the key exchange. </summary> <returns> The instance of a random number generator algorithm to use. </returns> </member> <member name="M:System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Sets the private key to use for decrypting the secret information. </summary> <param name="key"> The instance of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm that holds the private key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="T:System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter"> <summary> Creates the PKCS#1 key exchange data using <see cref="T:System.Security.Cryptography.RSA" />. </summary> </member> <member name="M:System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter" /> class. </summary> </member> <member name="M:System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter.#ctor(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter" /> class with the specified key. </summary> <param name="key"> The instance of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm that holds the public key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key " />is null. </exception> </member> <member name="M:System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter.CreateKeyExchange(System.Byte[])"> <summary> Creates the encrypted key exchange data from the specified input data. </summary> <returns> The encrypted key exchange data to be sent to the intended recipient. </returns> <param name="rgbData"> The secret information to be passed in the key exchange. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> <paramref name="rgbData " />is too big. </exception> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The key is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter.CreateKeyExchange(System.Byte[],System.Type)"> <summary> Creates the encrypted key exchange data from the specified input data. </summary> <returns> The encrypted key exchange data to be sent to the intended recipient. </returns> <param name="rgbData"> The secret information to be passed in the key exchange. </param> <param name="symAlgType"> This parameter is not used in the current version. </param> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter.Parameters"> <summary> Gets the parameters for the PKCS #1 key exchange. </summary> <returns> An XML string containing the parameters of the PKCS #1 key exchange operation. </returns> </member> <member name="P:System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter.Rng"> <summary> Gets or sets the random number generator algorithm to use in the creation of the key exchange. </summary> <returns> The instance of a random number generator algorithm to use. </returns> </member> <member name="M:System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Sets the public key to use for encrypting the key exchange data. </summary> <param name="key"> The instance of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm that holds the public key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key " />is null. </exception> </member> <member name="T:System.Security.Cryptography.RSAPKCS1SignatureDeformatter"> <summary> Verifies an <see cref="T:System.Security.Cryptography.RSA" /> PKCS #1 version 1.5 signature. </summary> </member> <member name="M:System.Security.Cryptography.RSAPKCS1SignatureDeformatter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAPKCS1SignatureDeformatter" /> class. </summary> </member> <member name="M:System.Security.Cryptography.RSAPKCS1SignatureDeformatter.#ctor(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAPKCS1SignatureDeformatter" /> class with the specified key. </summary> <param name="key"> The instance of <see cref="T:System.Security.Cryptography.RSA" /> that holds the public key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key " />is null. </exception> </member> <member name="M:System.Security.Cryptography.RSAPKCS1SignatureDeformatter.SetHashAlgorithm(System.String)"> <summary> Sets the hash algorithm to use for verifying the signature. </summary> <param name="strName"> The name of the hash algorithm to use for verifying the signature. </param> </member> <member name="M:System.Security.Cryptography.RSAPKCS1SignatureDeformatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Sets the public key to use for verifying the signature. </summary> <param name="key"> The instance of <see cref="T:System.Security.Cryptography.RSA" /> that holds the public key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key " />is null. </exception> </member> <member name="M:System.Security.Cryptography.RSAPKCS1SignatureDeformatter.VerifySignature(System.Byte[],System.Byte[])"> <summary> Verifies the <see cref="T:System.Security.Cryptography.RSA" /> PKCS#1 signature for the specified data. </summary> <returns>true if <paramref name="rgbSignature" /> matches the signature computed using the specified hash algorithm and key on <paramref name="rgbHash" />; otherwise, false. </returns> <param name="rgbHash"> The data signed with <paramref name="rgbSignature" />. </param> <param name="rgbSignature"> The signature to be verified for <paramref name="rgbHash" />. </param> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The key is null. -or- The hash algorithm is null. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="rgbHash" /> parameter is null. -or- The <paramref name="rgbSignature" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Security.Cryptography.RSAPKCS1SignatureFormatter"> <summary> Creates an <see cref="T:System.Security.Cryptography.RSA" /> PKCS #1 version 1.5 signature. </summary> </member> <member name="M:System.Security.Cryptography.RSAPKCS1SignatureFormatter.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAPKCS1SignatureFormatter" /> class. </summary> </member> <member name="M:System.Security.Cryptography.RSAPKCS1SignatureFormatter.#ctor(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSAPKCS1SignatureFormatter" /> class with the specified key. </summary> <param name="key"> The instance of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm that holds the private key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="M:System.Security.Cryptography.RSAPKCS1SignatureFormatter.CreateSignature(System.Byte[])"> <summary> Creates the <see cref="T:System.Security.Cryptography.RSA" /> PKCS #1 signature for the specified data. </summary> <returns> The digital signature for <paramref name="rgbHash" />. </returns> <param name="rgbHash"> The data to be signed. </param> <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"> The key is null. -or- The hash algorithm is null. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="rgbHash" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.RSAPKCS1SignatureFormatter.SetHashAlgorithm(System.String)"> <summary> Sets the hash algorithm to use for creating the signature. </summary> <param name="strName"> The name of the hash algorithm to use for creating the signature. </param> </member> <member name="M:System.Security.Cryptography.RSAPKCS1SignatureFormatter.SetKey(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Sets the private key to use for creating the signature. </summary> <param name="key"> The instance of the <see cref="T:System.Security.Cryptography.RSA" /> algorithm that holds the private key. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="key" /> is null. </exception> </member> <member name="T:System.Security.Cryptography.SHA1"> <summary> Computes the <see cref="T:System.Security.Cryptography.SHA1" /> hash for the input data. </summary> </member> <member name="M:System.Security.Cryptography.SHA1.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.SHA1" />. </summary> <exception cref="T:System.InvalidOperationException"> The policy on this object is not compliant with the FIPS algorithm. </exception> </member> <member name="M:System.Security.Cryptography.SHA1.Create"> <summary> Creates an instance of the default implementation of <see cref="T:System.Security.Cryptography.SHA1" />. </summary> <returns> A new instance of <see cref="T:System.Security.Cryptography.SHA1" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.SHA1.Create(System.String)"> <summary> Creates an instance of the specified implementation of <see cref="T:System.Security.Cryptography.SHA1" />. </summary> <returns> A new instance of <see cref="T:System.Security.Cryptography.SHA1" /> using the specified implementation. </returns> <param name="hashName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.SHA1" /> to be used. </param> </member> <member name="T:System.Security.Cryptography.SHA1CryptoServiceProvider"> <summary> Computes the <see cref="T:System.Security.Cryptography.SHA1" /> hash value for the input data using the implementation provided by the cryptographic service provider (CSP). This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.SHA1CryptoServiceProvider.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.SHA1CryptoServiceProvider" /> class. </summary> </member> <member name="M:System.Security.Cryptography.SHA1CryptoServiceProvider.Initialize"> <summary> Initializes an instance of <see cref="T:System.Security.Cryptography.SHA1CryptoServiceProvider" />. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="T:System.Security.Cryptography.SHA1Managed"> <summary> Computes the <see cref="T:System.Security.Cryptography.SHA1" /> hash for the input data using the managed library. </summary> </member> <member name="M:System.Security.Cryptography.SHA1Managed.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.SHA1Managed" /> class. </summary> <exception cref="T:System.InvalidOperationException"> This class is not compliant with the FIPS algorithm. </exception> </member> <member name="M:System.Security.Cryptography.SHA1Managed.HashCore(System.Byte[],System.Int32,System.Int32)"> <summary> Routes data written to the object into the <see cref="T:System.Security.Cryptography.SHA1Managed" /> hash algorithm for computing the hash. </summary> <param name="rgb"> The input data. </param> <param name="ibStart"> The offset into the byte array from which to begin using data. </param> <param name="cbSize"> The number of bytes in the array to use as data. </param> </member> <member name="M:System.Security.Cryptography.SHA1Managed.HashFinal"> <summary> Returns the computed <see cref="T:System.Security.Cryptography.SHA1" /> hash value after all data has been written to the object. </summary> <returns> The computed hash code. </returns> </member> <member name="M:System.Security.Cryptography.SHA1Managed.Initialize"> <summary> Initializes an instance of <see cref="T:System.Security.Cryptography.SHA1Managed" />. </summary> </member> <member name="T:System.Security.Cryptography.SHA256"> <summary> Computes the <see cref="T:System.Security.Cryptography.SHA256" /> hash for the input data. </summary> </member> <member name="M:System.Security.Cryptography.SHA256.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.SHA256" />. </summary> </member> <member name="M:System.Security.Cryptography.SHA256.Create"> <summary> Creates an instance of the default implementation of <see cref="T:System.Security.Cryptography.SHA256" />. </summary> <returns> A new instance of <see cref="T:System.Security.Cryptography.SHA256" />. </returns> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.SHA256.Create(System.String)"> <summary> Creates an instance of a specified implementation of <see cref="T:System.Security.Cryptography.SHA256" />. </summary> <returns> A new instance of <see cref="T:System.Security.Cryptography.SHA256" /> using the specified implementation. </returns> <param name="hashName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.SHA256" /> to be used. </param> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm described by the <paramref name="hashName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> </member> <member name="T:System.Security.Cryptography.SHA256Managed"> <summary> Computes the <see cref="T:System.Security.Cryptography.SHA256" /> hash for the input data using the managed library. </summary> </member> <member name="M:System.Security.Cryptography.SHA256Managed.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.SHA256Managed" /> class using the managed library. </summary> <exception cref="T:System.InvalidOperationException"> The Federal Information Processing Standards (FIPS) security setting is enabled. This implementation is not part of the Windows Platform FIPS-validated cryptographic algorithms. </exception> </member> <member name="M:System.Security.Cryptography.SHA256Managed.HashCore(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, routes data written to the object into the <see cref="T:System.Security.Cryptography.SHA256" /> hash algorithm for computing the hash. </summary> <param name="rgb"> The input data. </param> <param name="ibStart"> The offset into the byte array from which to begin using data. </param> <param name="cbSize"> The number of bytes in the array to use as data. </param> </member> <member name="M:System.Security.Cryptography.SHA256Managed.HashFinal"> <summary> When overridden in a derived class, finalizes the hash computation after the last data is processed by the cryptographic stream object. </summary> <returns> The computed hash code. </returns> </member> <member name="M:System.Security.Cryptography.SHA256Managed.Initialize"> <summary> Initializes an instance of <see cref="T:System.Security.Cryptography.SHA256Managed" />. </summary> </member> <member name="T:System.Security.Cryptography.SHA384"> <summary> Computes the <see cref="T:System.Security.Cryptography.SHA384" /> hash for the input data. </summary> </member> <member name="M:System.Security.Cryptography.SHA384.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.SHA384" />. </summary> </member> <member name="M:System.Security.Cryptography.SHA384.Create"> <summary> Creates an instance of the default implementation of <see cref="T:System.Security.Cryptography.SHA384" />. </summary> <returns> A new instance of <see cref="T:System.Security.Cryptography.SHA384" />. </returns> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.SHA384.Create(System.String)"> <summary> Creates an instance of a specified implementation of <see cref="T:System.Security.Cryptography.SHA384" />. </summary> <returns> A new instance of <see cref="T:System.Security.Cryptography.SHA384" /> using the specified implementation. </returns> <param name="hashName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.SHA384" /> to be used. </param> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm described by the <paramref name="hashName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> </member> <member name="T:System.Security.Cryptography.SHA384Managed"> <summary> Computes the <see cref="T:System.Security.Cryptography.SHA384" /> hash for the input data using the managed library. </summary> </member> <member name="M:System.Security.Cryptography.SHA384Managed.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.SHA384Managed" /> class. </summary> <exception cref="T:System.InvalidOperationException"> The Federal Information Processing Standards (FIPS) security setting is enabled. This implementation is not part of the Windows Platform FIPS-validated cryptographic algorithms. </exception> </member> <member name="M:System.Security.Cryptography.SHA384Managed.HashCore(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, routes data written to the object into the <see cref="T:System.Security.Cryptography.SHA384Managed" /> hash algorithm for computing the hash. </summary> <param name="rgb"> The input data. </param> <param name="ibStart"> The offset into the byte array from which to begin using data. </param> <param name="cbSize"> The number of bytes in the array to use as data. </param> </member> <member name="M:System.Security.Cryptography.SHA384Managed.HashFinal"> <summary> When overridden in a derived class, finalizes the hash computation after the last data is processed by the cryptographic stream object. </summary> <returns> The computed hash code. </returns> </member> <member name="M:System.Security.Cryptography.SHA384Managed.Initialize"> <summary> Initializes an instance of <see cref="T:System.Security.Cryptography.SHA384Managed" />. </summary> </member> <member name="T:System.Security.Cryptography.SHA512"> <summary> Computes the <see cref="T:System.Security.Cryptography.SHA512" /> hash for the input data. </summary> </member> <member name="M:System.Security.Cryptography.SHA512.#ctor"> <summary> Initializes a new instance of <see cref="T:System.Security.Cryptography.SHA512" />. </summary> </member> <member name="M:System.Security.Cryptography.SHA512.Create"> <summary> Creates an instance of the default implementation of <see cref="T:System.Security.Cryptography.SHA512" />. </summary> <returns> A new instance of <see cref="T:System.Security.Cryptography.SHA512" />. </returns> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.SHA512.Create(System.String)"> <summary> Creates an instance of a specified implementation of <see cref="T:System.Security.Cryptography.SHA512" />. </summary> <returns> A new instance of <see cref="T:System.Security.Cryptography.SHA512" /> using the specified implementation. </returns> <param name="hashName"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.SHA512" /> to be used. </param> <exception cref="T:System.Reflection.TargetInvocationException"> The algorithm described by the <paramref name="hashName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. </exception> </member> <member name="T:System.Security.Cryptography.SHA512Managed"> <summary> Computes the <see cref="T:System.Security.Cryptography.SHA512" /> hash algorithm for the input data using the managed library. </summary> </member> <member name="M:System.Security.Cryptography.SHA512Managed.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.SHA512Managed" /> class. </summary> <exception cref="T:System.InvalidOperationException"> The Federal Information Processing Standards (FIPS) security setting is enabled. This implementation is not part of the Windows Platform FIPS-validated cryptographic algorithms. </exception> </member> <member name="M:System.Security.Cryptography.SHA512Managed.HashCore(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, routes data written to the object into the <see cref="T:System.Security.Cryptography.SHA512Managed" /> hash algorithm for computing the hash. </summary> <param name="rgb"> The input data. </param> <param name="ibStart"> The offset into the byte array from which to begin using data. </param> <param name="cbSize"> The number of bytes in the array to use as data. </param> </member> <member name="M:System.Security.Cryptography.SHA512Managed.HashFinal"> <summary> When overridden in a derived class, finalizes the hash computation after the last data is processed by the cryptographic stream object. </summary> <returns> The computed hash code. </returns> </member> <member name="M:System.Security.Cryptography.SHA512Managed.Initialize"> <summary> Initializes an instance of the <see cref="T:System.Security.Cryptography.SHA512Managed" /> class using the managed library. </summary> </member> <member name="T:System.Security.Cryptography.SignatureDescription"> <summary> Contains information about the properties of a digital signature. </summary> </member> <member name="M:System.Security.Cryptography.SignatureDescription.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.SignatureDescription" /> class. </summary> </member> <member name="M:System.Security.Cryptography.SignatureDescription.#ctor(System.Security.SecurityElement)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.SignatureDescription" /> class from the specified <see cref="T:System.Security.SecurityElement" />. </summary> <param name="el"> The <see cref="T:System.Security.SecurityElement" /> from which to get the algorithms for the signature description. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="el" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.SignatureDescription.CreateDeformatter(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Creates an <see cref="T:System.Security.Cryptography.AsymmetricSignatureDeformatter" /> instance with the specified key using the <see cref="P:System.Security.Cryptography.SignatureDescription.DeformatterAlgorithm" /> property. </summary> <returns> The newly created <see cref="T:System.Security.Cryptography.AsymmetricSignatureDeformatter" /> instance. </returns> <param name="key"> The key to use in the <see cref="T:System.Security.Cryptography.AsymmetricSignatureDeformatter" />. </param> </member> <member name="M:System.Security.Cryptography.SignatureDescription.CreateDigest"> <summary> Creates a <see cref="T:System.Security.Cryptography.HashAlgorithm" /> instance using the <see cref="P:System.Security.Cryptography.SignatureDescription.DigestAlgorithm" /> property. </summary> <returns> The newly created <see cref="T:System.Security.Cryptography.HashAlgorithm" /> instance. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.SignatureDescription.CreateFormatter(System.Security.Cryptography.AsymmetricAlgorithm)"> <summary> Creates an <see cref="T:System.Security.Cryptography.AsymmetricSignatureFormatter" /> instance with the specified key using the <see cref="P:System.Security.Cryptography.SignatureDescription.FormatterAlgorithm" /> property. </summary> <returns> The newly created <see cref="T:System.Security.Cryptography.AsymmetricSignatureFormatter" /> instance. </returns> <param name="key"> The key to use in the <see cref="T:System.Security.Cryptography.AsymmetricSignatureFormatter" />. </param> </member> <member name="P:System.Security.Cryptography.SignatureDescription.DeformatterAlgorithm"> <summary> Gets or sets the deformatter algorithm for the signature description. </summary> <returns> The deformatter algorithm for the signature description. </returns> </member> <member name="P:System.Security.Cryptography.SignatureDescription.DigestAlgorithm"> <summary> Gets or sets the digest algorithm for the signature description. </summary> <returns> The digest algorithm for the signature description. </returns> </member> <member name="P:System.Security.Cryptography.SignatureDescription.FormatterAlgorithm"> <summary> Gets or sets the formatter algorithm for the signature description. </summary> <returns> The formatter algorithm for the signature description. </returns> </member> <member name="P:System.Security.Cryptography.SignatureDescription.KeyAlgorithm"> <summary> Gets or sets the key algorithm for the signature description. </summary> <returns> The key algorithm for the signature description. </returns> </member> <member name="T:System.Security.Cryptography.SymmetricAlgorithm"> <summary> Represents the abstract base class from which all implementations of symmetric algorithms must inherit. </summary> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm" /> class. </summary> <exception cref="T:System.Security.Cryptography.CryptographicException"> The implementation of the class derived from the symmetric algorithm is not valid. </exception> </member> <member name="P:System.Security.Cryptography.SymmetricAlgorithm.BlockSize"> <summary> Gets or sets the block size, in bits, of the cryptographic operation. </summary> <returns> The block size, in bits. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The block size is invalid. </exception> </member> <member name="F:System.Security.Cryptography.SymmetricAlgorithm.BlockSizeValue"> <summary> Represents the block size, in bits, of the cryptographic operation. </summary> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Clear"> <summary> Releases all resources used by the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm" /> class. </summary> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Create"> <summary> Creates a default cryptographic object used to perform the symmetric algorithm. </summary> <returns> A default cryptographic object used to perform the symmetric algorithm. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Create(System.String)"> <summary> Creates the specified cryptographic object used to perform the symmetric algorithm. </summary> <returns> A cryptographic object used to perform the symmetric algorithm. </returns> <param name="algName"> The name of the specific implementation of the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm" /> class to use. </param> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateDecryptor"> <summary> Creates a symmetric decryptor object with the current <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" /> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric decryptor object. </returns> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateDecryptor(System.Byte[],System.Byte[])"> <summary> When overridden in a derived class, creates a symmetric decryptor object with the specified <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" /> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric decryptor object. </returns> <param name="rgbKey"> The secret key to use for the symmetric algorithm. </param> <param name="rgbIV"> The initialization vector to use for the symmetric algorithm. </param> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateEncryptor"> <summary> Creates a symmetric encryptor object with the current <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" /> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric encryptor object. </returns> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateEncryptor(System.Byte[],System.Byte[])"> <summary> When overridden in a derived class, creates a symmetric encryptor object with the specified <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" /> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric encryptor object. </returns> <param name="rgbKey"> The secret key to use for the symmetric algorithm. </param> <param name="rgbIV"> The initialization vector to use for the symmetric algorithm. </param> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="P:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSize"> <summary> Gets or sets the feedback size, in bits, of the cryptographic operation. </summary> <returns> The feedback size in bits. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The feedback size is larger than the block size. </exception> </member> <member name="F:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSizeValue"> <summary> Represents the feedback size, in bits, of the cryptographic operation. </summary> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.GenerateIV"> <summary> When overridden in a derived class, generates a random initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />) to use for the algorithm. </summary> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.GenerateKey"> <summary> When overridden in a derived class, generates a random key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" />) to use for the algorithm. </summary> </member> <member name="P:System.Security.Cryptography.SymmetricAlgorithm.IV"> <summary> Gets or sets the initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />) for the symmetric algorithm. </summary> <returns> The initialization vector. </returns> <exception cref="T:System.ArgumentNullException"> An attempt was made to set the initialization vector to null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> An attempt was made to set the initialization vector to an invalid size. </exception> </member> <member name="F:System.Security.Cryptography.SymmetricAlgorithm.IVValue"> <summary> Represents the initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />) for the symmetric algorithm. </summary> </member> <member name="P:System.Security.Cryptography.SymmetricAlgorithm.Key"> <summary> Gets or sets the secret key for the symmetric algorithm. </summary> <returns> The secret key to use for the symmetric algorithm. </returns> <exception cref="T:System.ArgumentNullException"> An attempt was made to set the key to null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The key size is invalid. </exception> </member> <member name="P:System.Security.Cryptography.SymmetricAlgorithm.KeySize"> <summary> Gets or sets the size, in bits, of the secret key used by the symmetric algorithm. </summary> <returns> The size, in bits, of the secret key used by the symmetric algorithm. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The key size is not valid. </exception> </member> <member name="F:System.Security.Cryptography.SymmetricAlgorithm.KeySizeValue"> <summary> Represents the size, in bits, of the secret key used by the symmetric algorithm. </summary> </member> <member name="F:System.Security.Cryptography.SymmetricAlgorithm.KeyValue"> <summary> Represents the secret key for the symmetric algorithm. </summary> </member> <member name="P:System.Security.Cryptography.SymmetricAlgorithm.LegalBlockSizes"> <summary> Gets the block sizes, in bits, that are supported by the symmetric algorithm. </summary> <returns> An array that contains the block sizes supported by the algorithm. </returns> </member> <member name="F:System.Security.Cryptography.SymmetricAlgorithm.LegalBlockSizesValue"> <summary> Specifies the block sizes, in bits, that are supported by the symmetric algorithm. </summary> </member> <member name="P:System.Security.Cryptography.SymmetricAlgorithm.LegalKeySizes"> <summary> Gets the key sizes, in bits, that are supported by the symmetric algorithm. </summary> <returns> An array that contains the key sizes supported by the algorithm. </returns> </member> <member name="F:System.Security.Cryptography.SymmetricAlgorithm.LegalKeySizesValue"> <summary> Specifies the key sizes, in bits, that are supported by the symmetric algorithm. </summary> </member> <member name="P:System.Security.Cryptography.SymmetricAlgorithm.Mode"> <summary> Gets or sets the mode for operation of the symmetric algorithm. </summary> <returns> The mode for operation of the symmetric algorithm. The default is <see cref="F:System.Security.Cryptography.CipherMode.CBC" />. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cipher mode is not one of the <see cref="T:System.Security.Cryptography.CipherMode" /> values. </exception> </member> <member name="F:System.Security.Cryptography.SymmetricAlgorithm.ModeValue"> <summary> Represents the cipher mode used in the symmetric algorithm. </summary> </member> <member name="P:System.Security.Cryptography.SymmetricAlgorithm.Padding"> <summary> Gets or sets the padding mode used in the symmetric algorithm. </summary> <returns> The padding mode used in the symmetric algorithm. The default is <see cref="F:System.Security.Cryptography.PaddingMode.PKCS7" />. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The padding mode is not one of the <see cref="T:System.Security.Cryptography.PaddingMode" /> values. </exception> </member> <member name="F:System.Security.Cryptography.SymmetricAlgorithm.PaddingValue"> <summary> Represents the padding mode used in the symmetric algorithm. </summary> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.System#IDisposable#Dispose"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm" /> and optionally releases the managed resources. </summary> </member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.ValidKeySize(System.Int32)"> <summary> Determines whether the specified key size is valid for the current algorithm. </summary> <returns>true if the specified key size is valid for the current algorithm; otherwise, false. </returns> <param name="bitLength"> The length, in bits, to check for a valid key size. </param> </member> <member name="T:System.Security.Cryptography.ToBase64Transform"> <summary> Converts a <see cref="T:System.Security.Cryptography.CryptoStream" /> to base 64. </summary> </member> <member name="M:System.Security.Cryptography.ToBase64Transform.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.ToBase64Transform" /> class. </summary> </member> <member name="P:System.Security.Cryptography.ToBase64Transform.CanReuseTransform"> <summary> Gets a value indicating whether the current transform can be reused. </summary> <returns> Always true. </returns> </member> <member name="P:System.Security.Cryptography.ToBase64Transform.CanTransformMultipleBlocks"> <summary> Gets a value that indicates whether multiple blocks can be transformed. </summary> <returns> Always false. </returns> </member> <member name="M:System.Security.Cryptography.ToBase64Transform.Clear"> <summary> Releases all resources used by the <see cref="T:System.Security.Cryptography.ToBase64Transform" />. </summary> </member> <member name="M:System.Security.Cryptography.ToBase64Transform.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.ToBase64Transform" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.Security.Cryptography.ToBase64Transform.Finalize"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.ToBase64Transform" />. </summary> </member> <member name="P:System.Security.Cryptography.ToBase64Transform.InputBlockSize"> <summary> Gets the input block size. </summary> <returns> The size of the input data blocks in bytes. </returns> </member> <member name="P:System.Security.Cryptography.ToBase64Transform.OutputBlockSize"> <summary> Gets the output block size. </summary> <returns> The size of the output data blocks in bytes. </returns> </member> <member name="M:System.Security.Cryptography.ToBase64Transform.System#IDisposable#Dispose"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.ToBase64Transform" />. </summary> </member> <member name="M:System.Security.Cryptography.ToBase64Transform.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Converts the specified region of the input byte array to base 64 and copies the result to the specified region of the output byte array. </summary> <returns> The number of bytes written. </returns> <param name="inputBuffer"> The input to compute to base 64. </param> <param name="inputOffset"> The offset into the input byte array from which to begin using data. </param> <param name="inputCount"> The number of bytes in the input byte array to use as data. </param> <param name="outputBuffer"> The output to which to write the result. </param> <param name="outputOffset"> The offset into the output byte array from which to begin writing data. </param> <exception cref="T:System.ObjectDisposedException"> The current <see cref="T:System.Security.Cryptography.ToBase64Transform" /> object has already been disposed. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> The data size is not valid. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="inputBuffer" /> parameter contains an invalid offset length. -or- The <paramref name="inputCount" /> parameter contains an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="inputBuffer" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="inputBuffer" /> parameter requires a non-negative number. </exception> </member> <member name="M:System.Security.Cryptography.ToBase64Transform.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)"> <summary> Converts the specified region of the specified byte array to base 64. </summary> <returns> The computed base 64 conversion. </returns> <param name="inputBuffer"> The input to convert to base 64. </param> <param name="inputOffset"> The offset into the byte array from which to begin using data. </param> <param name="inputCount"> The number of bytes in the byte array to use as data. </param> <exception cref="T:System.ObjectDisposedException"> The current <see cref="T:System.Security.Cryptography.ToBase64Transform" /> object has already been disposed. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="inputBuffer" /> parameter contains an invalid offset length. -or- The <paramref name="inputCount" /> parameter contains an invalid value. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="inputBuffer" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="inputBuffer" /> parameter requires a non-negative number. </exception> </member> <member name="T:System.Security.Cryptography.TripleDES"> <summary> Represents the base class for Triple Data Encryption Standard algorithms from which all <see cref="T:System.Security.Cryptography.TripleDES" /> implementations must derive. </summary> </member> <member name="M:System.Security.Cryptography.TripleDES.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.TripleDES" /> class. </summary> </member> <member name="M:System.Security.Cryptography.TripleDES.Create"> <summary> Creates an instance of a cryptographic object to perform the <see cref="T:System.Security.Cryptography.TripleDES" /> algorithm. </summary> <returns> An instance of a cryptographic object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.TripleDES.Create(System.String)"> <summary> Creates an instance of a cryptographic object to perform the specified implementation of the <see cref="T:System.Security.Cryptography.TripleDES" /> algorithm. </summary> <returns> An instance of a cryptographic object. </returns> <param name="str"> The name of the specific implementation of <see cref="T:System.Security.Cryptography.TripleDES" /> to use. </param> </member> <member name="M:System.Security.Cryptography.TripleDES.IsWeakKey(System.Byte[])"> <summary> Determines whether the specified key is weak. </summary> <returns>true if the key is weak; otherwise, false. </returns> <param name="rgbKey"> The secret key to test for weakness. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The size of the <paramref name="rgbKey" /> parameter is not valid. </exception> </member> <member name="P:System.Security.Cryptography.TripleDES.Key"> <summary> Gets or sets the secret key for the <see cref="T:System.Security.Cryptography.TripleDES" /> algorithm. </summary> <returns> The secret key for the <see cref="T:System.Security.Cryptography.TripleDES" /> algorithm. </returns> <exception cref="T:System.ArgumentNullException"> An attempt was made to set the key to null. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException"> An attempt was made to set a key whose length is invalid. -or- An attempt was made to set a weak key (see <see cref="M:System.Security.Cryptography.TripleDES.IsWeakKey(System.Byte[])" />). </exception> </member> <member name="T:System.Security.Cryptography.TripleDESCryptoServiceProvider"> <summary> Defines a wrapper object to access the cryptographic service provider (CSP) version of the <see cref="T:System.Security.Cryptography.TripleDES" /> algorithm. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Cryptography.TripleDESCryptoServiceProvider.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.TripleDESCryptoServiceProvider" /> class. </summary> <exception cref="T:System.Security.Cryptography.CryptographicException"> The <see cref="T:System.Security.Cryptography.TripleDES" /> cryptographic service provider is not available. </exception> </member> <member name="M:System.Security.Cryptography.TripleDESCryptoServiceProvider.CreateDecryptor(System.Byte[],System.Byte[])"> <summary> Creates a symmetric <see cref="T:System.Security.Cryptography.TripleDES" /> decryptor object with the specified key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" />) and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric <see cref="T:System.Security.Cryptography.TripleDES" /> decryptor object. </returns> <param name="rgbKey"> The secret key to use for the symmetric algorithm. </param> <param name="rgbIV"> The initialization vector to use for the symmetric algorithm. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Mode" /> property is <see cref="F:System.Security.Cryptography.CipherMode.OFB" />. -or- The value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Mode" /> property is <see cref="F:System.Security.Cryptography.CipherMode.CFB" /> and the value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSize" /> property is not 8. -or- An invalid key size was used. -or- The algorithm key size was not available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.TripleDESCryptoServiceProvider.CreateEncryptor(System.Byte[],System.Byte[])"> <summary> Creates a symmetric <see cref="T:System.Security.Cryptography.TripleDES" /> encryptor object with the specified key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" />) and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />). </summary> <returns> A symmetric <see cref="T:System.Security.Cryptography.TripleDES" /> encryptor object. </returns> <param name="rgbKey"> The secret key to use for the symmetric algorithm. </param> <param name="rgbIV"> The initialization vector to use for the symmetric algorithm. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Mode" /> property is <see cref="F:System.Security.Cryptography.CipherMode.OFB" />. -or- The value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Mode" /> property is <see cref="F:System.Security.Cryptography.CipherMode.CFB" /> and the value of the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSize" /> property is not 8. -or- An invalid key size was used. -or- The algorithm key size was not available. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.TripleDESCryptoServiceProvider.GenerateIV"> <summary> Generates a random initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />) to use for the algorithm. </summary> </member> <member name="M:System.Security.Cryptography.TripleDESCryptoServiceProvider.GenerateKey"> <summary> Generates a random <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key" /> to be used for the algorithm. </summary> </member> <member name="P:System.Security.Cryptography.HMACSHA384.ProduceLegacyHmacValues"> <summary> Provides a workaround for the .NET Framework version 2.0 implementation of the <see cref="T:System.Security.Cryptography.HMACSHA384" /> algorithm, which is inconsistent with the .NET Framework version 2.0 Service Pack 1 implementation of the algorithm. </summary> </member> <member name="P:System.Security.Cryptography.HMACSHA512.ProduceLegacyHmacValues"> <summary> Provides a workaround for the .NET Framework version 2.0 implementation of the <see cref="T:System.Security.Cryptography.HMACSHA512" /> algorithm, which is inconsistent with the .NET Framework version 2.0 Service Pack 1 implementation. </summary> </member> <member name="M:System.Security.Cryptography.CryptoStream.Close"> <summary> Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream. </summary> <exception cref="T:System.NotSupportedException"> The current stream is not writable. </exception> </member> <member name="M:System.Security.Cryptography.CryptoStream.Finalize"></member> <member name="M:System.Security.Cryptography.CryptoStream.System#IDisposable#Dispose"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.CryptoStream" /> and optionally releases the managed resources. </summary> </member> <member name="P:System.Security.Cryptography.DSACryptoServiceProvider.LegalKeySizes"> <summary> Gets the key sizes that are supported by the asymmetric algorithm. </summary> <returns> Only key sizes that match an entry in this array are supported by the asymmetric algorithm. </returns> </member> <member name="M:System.Security.Cryptography.HMACSHA1.Dispose(System.Boolean)"></member> <member name="M:System.Security.Cryptography.HMACSHA1.Finalize"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.HMACSHA1" />. </summary> </member> <member name="M:System.Security.Cryptography.HMACSHA1.HashCore(System.Byte[],System.Int32,System.Int32)"></member> <member name="M:System.Security.Cryptography.HMACSHA1.HashFinal"></member> <member name="P:System.Security.Cryptography.HMACSHA1.HashName"></member> <member name="M:System.Security.Cryptography.HMACSHA1.Initialize"></member> <member name="P:System.Security.Cryptography.HMACSHA1.Key"></member> <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Finalize"></member> <member name="M:System.Security.Cryptography.MACTripleDES.Finalize"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.MACTripleDES" />. </summary> </member> <member name="M:System.Security.Cryptography.PasswordDeriveBytes.Finalize"></member> <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Finalize"></member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.DSACryptoServiceProvider" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.Security.Cryptography.DSACryptoServiceProvider.Finalize"></member> <member name="M:System.Security.Cryptography.MD5CryptoServiceProvider.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.MD5CryptoServiceProvider" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.Security.Cryptography.MD5CryptoServiceProvider.Finalize"></member> <member name="M:System.Security.Cryptography.MD5CryptoServiceProvider.HashCore(System.Byte[],System.Int32,System.Int32)"> <summary> Routes data written to the object into the <see cref="T:System.Security.Cryptography.MD5" /> hash algorithm for computing the hash value. </summary> <param name="rgb"> The array of data bytes. </param> <param name="ibStart"> The offset into the byte array from which to begin using data. </param> <param name="cbSize"> The number of bytes in the array to use as data. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. -or- The hash cannot be created. </exception> </member> <member name="M:System.Security.Cryptography.MD5CryptoServiceProvider.HashFinal"> <summary> Returns the computed <see cref="T:System.Security.Cryptography.MD5CryptoServiceProvider" /> hash value as an array of bytes after all data has been written to the object. </summary> <returns> The computed hash value. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The cryptographic service provider (CSP) cannot be acquired. -or- The hash cannot be created. </exception> </member> <member name="M:System.Security.Cryptography.RNGCryptoServiceProvider.Finalize"></member> <member name="T:System.Security.Cryptography.X509Certificates.X509Certificate"> <summary> Provides methods that help you use X.509 v.3 certificates. </summary> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class. </summary> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class defined from a sequence of bytes representing an X.509v3 certificate. </summary> <param name="data"> A byte array containing data from an X.509 certificate. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="rawData" /> parameter is null. -or- The length of the <paramref name="rawData" /> parameter is 0. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Byte[],System.Security.SecureString)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a byte array and a password. </summary> <param name="rawData"> A byte array that contains data from an X.509 certificate. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="rawData" /> parameter is null. -or- The length of the <paramref name="rawData" /> parameter is 0. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Byte[],System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a byte array, a password, and a key storage flag. </summary> <param name="rawData"> A byte array that contains data from an X.509 certificate. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <param name="keyStorageFlags"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> values that controls where and how to import the private key. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="rawData" /> parameter is null. -or- The length of the <paramref name="rawData" /> parameter is 0. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Byte[],System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a byte array and a password. </summary> <param name="rawData"> A byte array containing data from an X.509 certificate. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="rawData" /> parameter is null. -or- The length of the <paramref name="rawData" /> parameter is 0. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a byte array, a password, and a key storage flag. </summary> <param name="rawData"> A byte array containing data from an X.509 certificate. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <param name="keyStorageFlags"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> values. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="rawData" /> parameter is null. -or- The length of the <paramref name="rawData" /> parameter is 0. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.IntPtr)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a handle to an unmanaged PCCERT_CONTEXT structure. </summary> <param name="handle"> A handle to an unmanaged PCCERT_CONTEXT structure. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The handle parameter does not represent a valid PCCERT_CONTEXT structure. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object and a <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure. </summary> <param name="info"> A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that describes serialization information. </param> <param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that describes how serialization should be performed. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using another <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class. </summary> <param name="cert"> A <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class from which to initialize this class. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentNullException"> The value of the <paramref name="cert" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a using a certificate file name. </summary> <param name="fileName"> The name of a certificate file. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="fileName" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.String,System.Security.SecureString)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a certificate file name and a password. </summary> <param name="fileName"> The name of a certificate file. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="fileName" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.String,System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a certificate file name, a password, and a key storage flag. </summary> <param name="fileName"> The name of a certificate file. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <param name="keyStorageFlags"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> values that controls where and how to import the private key. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="fileName" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a using a certificate file name and a password used to access the certificate. </summary> <param name="fileName"> The name of a certificate file. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="fileName" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a certificate file name, a password used to access the certificate, and a key storage flag. </summary> <param name="fileName"> The name of a certificate file. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <param name="keyStorageFlags"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> values. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="fileName" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.CreateFromCertFile(System.String)"> <summary> Creates an X.509v3 certificate from the specified certification file. </summary> <returns> The newly created X.509 certificate. </returns> <param name="filename"> The path of the certification file from which to create the X.509 certificate. </param> <exception cref="T:System.ArgumentException"> The <paramref name="filename" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.CreateFromSignedFile(System.String)"> <summary> Creates an X.509v3 certificate from the specified signed file. </summary> <returns> The newly created X.509 certificate. </returns> <param name="filename"> The path of the signed file from which to create the X.509 certificate. </param> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Equals(System.Object)"> <summary> Compares two <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> objects for equality. </summary> <returns>true if the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object is equal to the object specified by the <paramref name="other" /> parameter; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object to compare to the current object. </param> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Equals(System.Security.Cryptography.X509Certificates.X509Certificate)"> <summary> Compares two <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> objects for equality. </summary> <returns>true if the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object is equal to the object specified by the <paramref name="other" /> parameter; otherwise, false. </returns> <param name="other"> An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object to compare to the current object. </param> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Export(System.Security.Cryptography.X509Certificates.X509ContentType)"> <summary> Exports the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object to a byte array in a format described by one of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> values. </summary> <returns> An array of bytes that represents the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object. </returns> <param name="contentType"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> values that describes how to format the output data. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> A value other than <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Cert" />, <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.SerializedCert" />, or <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12" /> was passed to the <paramref name="contentType" /> parameter. -or- The certificate could not be exported. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Open, Export" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Export(System.Security.Cryptography.X509Certificates.X509ContentType,System.Security.SecureString)"> <summary> Exports the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object to a byte array using the specified format and a password. </summary> <returns> A byte array that represents the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object. </returns> <param name="contentType"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> values that describes how to format the output data. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> A value other than <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Cert" />, <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.SerializedCert" />, or <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12" /> was passed to the <paramref name="contentType" /> parameter. -or- The certificate could not be exported. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Export(System.Security.Cryptography.X509Certificates.X509ContentType,System.String)"> <summary> Exports the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object to a byte array in a format described by one of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> values, and using the specified password. </summary> <returns> An array of bytes that represents the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object. </returns> <param name="contentType"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> values that describes how to format the output data. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <exception cref="T:System.Security.Cryptography.CryptographicException"> A value other than <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Cert" />, <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.SerializedCert" />, or <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12" /> was passed to the <paramref name="contentType" /> parameter. -or- The certificate could not be exported. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Open, Export" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetCertHash"> <summary> Returns the hash value for the X.509v3 certificate as an array of bytes. </summary> <returns> The hash value for the X.509 certificate. </returns> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetCertHashString"> <summary> Returns the hash value for the X.509v3 certificate as a hexadecimal string. </summary> <returns> The hexadecimal string representation of the X.509 certificate hash value. </returns> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetEffectiveDateString"> <summary> Returns the effective date of this X.509v3 certificate. </summary> <returns> The effective date for this X.509 certificate. </returns> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetExpirationDateString"> <summary> Returns the expiration date of this X.509v3 certificate. </summary> <returns> The expiration date for this X.509 certificate. </returns> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetFormat"> <summary> Returns the name of the format of this X.509v3 certificate. </summary> <returns> The format of this X.509 certificate. </returns> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetHashCode"> <summary> Returns the hash code for the X.509v3 certificate as an integer. </summary> <returns> The hash code for the X.509 certificate as an integer. </returns> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetIssuerName"> <summary> Returns the name of the certification authority that issued the X.509v3 certificate. </summary> <returns> The name of the certification authority that issued the X.509 certificate. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> An error with the certificate occurs. For example: The certificate file does not exist. The certificate is invalid. The certificate's password is incorrect. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetKeyAlgorithm"> <summary> Returns the key algorithm information for this X.509v3 certificate. </summary> <returns> The key algorithm information for this X.509 certificate as a string. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The certificate context is invalid. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetKeyAlgorithmParameters"> <summary> Returns the key algorithm parameters for the X.509v3 certificate. </summary> <returns> The key algorithm parameters for the X.509 certificate as an array of bytes. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The certificate context is invalid. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetKeyAlgorithmParametersString"> <summary> Returns the key algorithm parameters for the X.509v3 certificate. </summary> <returns> The key algorithm parameters for the X.509 certificate as a hexadecimal string. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The certificate context is invalid. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetName"> <summary> Returns the name of the principal to which the certificate was issued. </summary> <returns> The name of the principal to which the certificate was issued. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The certificate context is invalid. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetPublicKey"> <summary> Returns the public key for the X.509v3 certificate. </summary> <returns> The public key for the X.509 certificate as an array of bytes. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The certificate context is invalid. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetPublicKeyString"> <summary> Returns the public key for the X.509v3 certificate. </summary> <returns> The public key for the X.509 certificate as a hexadecimal string. </returns> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetRawCertData"> <summary> Returns the raw data for the entire X.509v3 certificate. </summary> <returns> A byte array containing the X.509 certificate data. </returns> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetRawCertDataString"> <summary> Returns the raw data for the entire X.509v3 certificate. </summary> <returns> The X.509 certificate data as a hexadecimal string. </returns> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetSerialNumber"> <summary> Returns the serial number of the X.509v3 certificate. </summary> <returns> The serial number of the X.509 certificate as an array of bytes. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The certificate context is invalid. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetSerialNumberString"> <summary> Returns the serial number of the X.509v3 certificate. </summary> <returns> The serial number of the X.509 certificate as a hexadecimal string. </returns> </member> <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate.Handle"> <summary> Gets a handle to a Microsoft Cryptographic API certificate context described by an unmanaged PCCERT_CONTEXT structure. </summary> <returns> An <see cref="T:System.IntPtr" /> structure that represents an unmanaged PCCERT_CONTEXT structure. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.Byte[])"> <summary> Populates the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object with data from a byte array. </summary> <param name="rawData"> A byte array containing data from an X.509 certificate. </param> <exception cref="T:System.ArgumentException"> The <paramref name="rawData" /> parameter is null. -or- The length of the <paramref name="rawData" /> parameter is 0. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.Byte[],System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)"> <summary> Populates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object using data from a byte array, a password, and a key storage flag. </summary> <param name="rawData"> A byte array that contains data from an X.509 certificate. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <param name="keyStorageFlags"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> values that controls where and how to import the private key. </param> <exception cref="T:System.ArgumentException"> The <paramref name="rawData" /> parameter is null. -or- The length of the <paramref name="rawData" /> parameter is 0. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)"> <summary> Populates the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object using data from a byte array, a password, and flags for determining how the private key is imported. </summary> <param name="rawData"> A byte array containing data from an X.509 certificate. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <param name="keyStorageFlags"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> values that controls where and how the private key is imported. </param> <exception cref="T:System.ArgumentException"> The <paramref name="rawData" /> parameter is null. -or- The length of the <paramref name="rawData" /> parameter is 0. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.String)"> <summary> Populates the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object with information from a certificate file. </summary> <param name="fileName"> The name of a certificate file represented as a string. </param> <exception cref="T:System.ArgumentException"> The <paramref name="fileName" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.String,System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)"> <summary> Populates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object with information from a certificate file, a password, and a key storage flag. </summary> <param name="fileName"> The name of a certificate file. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <param name="keyStorageFlags"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> values that controls where and how to import the private key. </param> <exception cref="T:System.ArgumentException"> The <paramref name="fileName" /> parameter is null. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)"> <summary> Populates the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object with information from a certificate file, a password, and a <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> value. </summary> <param name="fileName"> The name of a certificate file represented as a string. </param> <param name="password"> The password required to access the X.509 certificate data. </param> <param name="keyStorageFlags"> One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> values that controls where and how the private key is imported. </param> <exception cref="T:System.ArgumentException"> The <paramref name="fileName" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate.Issuer"> <summary> Gets the name of the certificate authority that issued the X.509v3 certificate. </summary> <returns> The name of the certificate authority that issued the X.509v3 certificate. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The certificate handle is invalid. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Reset"> <summary> Resets the state of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object. </summary> </member> <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate.Subject"> <summary> Gets the subject distinguished name from the certificate. </summary> <returns> The subject distinguished name from the certificate. </returns> <exception cref="T:System.Security.Cryptography.CryptographicException"> The certificate handle is invalid. </exception> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)"> <summary> Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and is called back by the deserialization event when deserialization is complete. </summary> <param name="sender"> The source of the deserialization event. </param> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Gets serialization information with all the data needed to recreate an instance of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object. </summary> <param name="info"> The object to populate with serialization information. </param> <param name="context"> The destination context of the serialization. </param> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.ToString"> <summary> Returns a string representation of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object. </summary> <returns> A string representation of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object. </returns> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.ToString(System.Boolean)"> <summary> Returns a string representation of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object, with extra information, if specified. </summary> <returns> A string representation of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object. </returns> <param name="fVerbose">true to produce the verbose form of the string representation; otherwise, false. </param> </member> <member name="T:System.Security.Cryptography.X509Certificates.X509ContentType"> <summary> Specifies the format of an X.509 certificate. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Unknown"> <summary> An unknown X.509 Certificate. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Cert"> <summary> A single X.509 Certificate. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.SerializedCert"> <summary> A single serialized X.509 Certificate. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pfx"> <summary> A PFX-formatted certificate. The <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pfx" /> value is identical to the <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12" /> value. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12"> <summary> A PKCS #12–formatted certificate. The <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12" /> value is identical to the <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pfx" /> value. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.SerializedStore"> <summary> A serialized store. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs7"> <summary> A PKCS #7–formatted certificate. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Authenticode"> <summary> An Authenticode X.509 certificate. </summary> </member> <member name="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags"> <summary> Defines where and how to export the private key of an X.509 certificate. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.DefaultKeySet"> <summary> The default key set is used. The user key set is usually the default. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.UserKeySet"> <summary> Private keys are stored in the current user store rather than the local computer store. This occurs even if the certificate specifies that the keys should go in the local computer store. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.MachineKeySet"> <summary> Private keys are stored in the local computer store rather than the current user store. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.Exportable"> <summary> Imported keys are marked as exportable. . </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.UserProtected"> <summary> Notify the user through a dialog box or other method that the key is accessed. The Cryptographic Service Provider (CSP) in use defines the precise behavior. </summary> </member> <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.PersistKeySet"> <summary> The key associated with a PFX file is persisted when importing a certificate. </summary> </member> <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.CreateHexString(System.Byte[])"> <summary> Creates a hex string from the specified byte array. </summary> <returns> A hex string. </returns> <param name="sArray"> A byte array. </param> </member> <member name="T:System.Security.Permissions.CodeAccessSecurityAttribute"> <summary> Specifies the base attribute class for code access security. </summary> </member> <member name="M:System.Security.Permissions.CodeAccessSecurityAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of <see cref="T:System.Security.Permissions.CodeAccessSecurityAttribute" /> with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="T:System.Security.Permissions.EnvironmentPermission"> <summary> Controls access to system and user environment variables. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.#ctor(System.Security.Permissions.EnvironmentPermissionAccess,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.EnvironmentPermission" /> class with the specified access to the specified environment variables. </summary> <param name="flag"> One of the <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" /> values. </param> <param name="pathList"> A list of environment variables (semicolon-separated) to which access is granted. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="pathList" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="flag" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" />. </exception> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.EnvironmentPermission" /> class with either restricted or unrestricted permission as specified. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.AddPathList(System.Security.Permissions.EnvironmentPermissionAccess,System.String)"> <summary> Adds access for the specified environment variables to the existing state of the permission. </summary> <param name="flag"> One of the <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" /> values. </param> <param name="pathList"> A list of environment variables (semicolon-separated). </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="pathList" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="flag" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" />. </exception> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not valid. </exception> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.GetPathList(System.Security.Permissions.EnvironmentPermissionAccess)"> <summary> Gets all environment variables with the specified <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" />. </summary> <returns> A list of environment variables (semicolon-separated) for the selected flag. </returns> <param name="flag"> One of the <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" /> values that represents a single type of environment variable access. </param> <exception cref="T:System.ArgumentException"> <paramref name="flag" /> is not a valid value of <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" />. -or- <paramref name="flag" /> is <see cref="F:System.Security.Permissions.EnvironmentPermissionAccess.AllAccess" />, which represents more than one type of environment variable access, or <see cref="F:System.Security.Permissions.EnvironmentPermissionAccess.NoAccess" />, which does not represent any type of environment variable access. </exception> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.IsUnrestricted"> <summary> Returns a value indicating whether the current permission is unrestricted. </summary> <returns>true if the current permission is unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.SetPathList(System.Security.Permissions.EnvironmentPermissionAccess,System.String)"> <summary> Sets the specified access to the specified environment variables to the existing state of the permission. </summary> <param name="flag"> One of the <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" /> values. </param> <param name="pathList"> A list of environment variables (semicolon-separated). </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="pathList" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="flag" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" />. </exception> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.EnvironmentPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="other"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="other" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="T:System.Security.Permissions.EnvironmentPermissionAccess"> <summary> Specifies access to environment variables. </summary> </member> <member name="F:System.Security.Permissions.EnvironmentPermissionAccess.NoAccess"> <summary> No access to environment variables. <see cref="F:System.Security.Permissions.EnvironmentPermissionAccess.NoAccess" /> represents no valid <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" /> values and causes an <see cref="T:System.ArgumentException" /> when used as the parameter for <see cref="M:System.Security.Permissions.EnvironmentPermission.GetPathList(System.Security.Permissions.EnvironmentPermissionAccess)" />, which expects a single value. </summary> </member> <member name="F:System.Security.Permissions.EnvironmentPermissionAccess.Read"> <summary> Only read access to environment variables is specified. Changing, deleting and creating environment variables is not included in this access level. </summary> </member> <member name="F:System.Security.Permissions.EnvironmentPermissionAccess.Write"> <summary> Only write access to environment variables is specified. Write access includes creating and deleting environment variables as well as changing existing values. Reading environment variables is not included in this access level. </summary> </member> <member name="F:System.Security.Permissions.EnvironmentPermissionAccess.AllAccess"> <summary> <see cref="F:System.Security.Permissions.EnvironmentPermissionAccess.Read" /> and <see cref="F:System.Security.Permissions.EnvironmentPermissionAccess.Write" /> access to environment variables. <see cref="F:System.Security.Permissions.EnvironmentPermissionAccess.AllAccess" /> represents multiple <see cref="T:System.Security.Permissions.EnvironmentPermissionAccess" /> values and causes an <see cref="T:System.ArgumentException" /> when used as the <paramref name="flag" /> parameter for the <see cref="M:System.Security.Permissions.EnvironmentPermission.GetPathList(System.Security.Permissions.EnvironmentPermissionAccess)" /> method, which expects a single value. </summary> </member> <member name="T:System.Security.Permissions.EnvironmentPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.EnvironmentPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.EnvironmentPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.EnvironmentPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="action" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.SecurityAction" />. </exception> </member> <member name="P:System.Security.Permissions.EnvironmentPermissionAttribute.All"> <summary> Sets full access for the environment variables specified by the string value. </summary> <returns> A list of environment variables for full access. </returns> <exception cref="T:System.NotSupportedException"> The get method is not supported for this property. </exception> </member> <member name="M:System.Security.Permissions.EnvironmentPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.EnvironmentPermission" />. </summary> <returns> An <see cref="T:System.Security.Permissions.EnvironmentPermission" /> that corresponds to this attribute. </returns> </member> <member name="P:System.Security.Permissions.EnvironmentPermissionAttribute.Read"> <summary> Gets or sets read access for the environment variables specified by the string value. </summary> <returns> A list of environment variables for read access. </returns> </member> <member name="P:System.Security.Permissions.EnvironmentPermissionAttribute.Write"> <summary> Gets or sets write access for the environment variables specified by the string value. </summary> <returns> A list of environment variables for write access. </returns> </member> <member name="T:System.Security.Permissions.FileDialogPermission"> <summary> Controls the ability to access files or folders through a File dialog box. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.FileDialogPermission.#ctor(System.Security.Permissions.FileDialogPermissionAccess)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.FileDialogPermission" /> class with the specified access. </summary> <param name="access"> A bitwise combination of the <see cref="T:System.Security.Permissions.FileDialogPermissionAccess" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid combination of the <see cref="T:System.Security.Permissions.FileDialogPermissionAccess" /> values. </exception> </member> <member name="M:System.Security.Permissions.FileDialogPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.FileDialogPermission" /> class with either restricted or unrestricted permission, as specified. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values (Unrestricted or None). </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="P:System.Security.Permissions.FileDialogPermission.Access"> <summary> Gets or sets the permitted access to files. </summary> <returns> The permitted access to files. </returns> <exception cref="T:System.ArgumentException"> An attempt is made to set the <paramref name="access" /> parameter to a value that is not a valid combination of the <see cref="T:System.Security.Permissions.FileDialogPermissionAccess" /> values. </exception> </member> <member name="M:System.Security.Permissions.FileDialogPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.FileDialogPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding used to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The version number of the <paramref name="esd" /> parameter is not supported. </exception> </member> <member name="M:System.Security.Permissions.FileDialogPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.FileDialogPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.FileDialogPermission.IsUnrestricted"> <summary> Returns a value indicating whether the current permission is unrestricted. </summary> <returns>true if the current permission is unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.FileDialogPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including state information. </returns> </member> <member name="M:System.Security.Permissions.FileDialogPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="T:System.Security.Permissions.FileDialogPermissionAccess"> <summary> Specifies the type of access to files allowed through the File dialog boxes. </summary> </member> <member name="F:System.Security.Permissions.FileDialogPermissionAccess.None"> <summary> No access to files through the File dialog boxes. </summary> </member> <member name="F:System.Security.Permissions.FileDialogPermissionAccess.Open"> <summary> Ability to open files through the File dialog boxes. </summary> </member> <member name="F:System.Security.Permissions.FileDialogPermissionAccess.Save"> <summary> Ability to save files through the File dialog boxes. </summary> </member> <member name="F:System.Security.Permissions.FileDialogPermissionAccess.OpenSave"> <summary> Ability to open and save files through the File dialog boxes. </summary> </member> <member name="T:System.Security.Permissions.FileDialogPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.FileDialogPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.FileDialogPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.FileDialogPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="M:System.Security.Permissions.FileDialogPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.FileDialogPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.FileDialogPermission" /> that corresponds to this attribute. </returns> </member> <member name="P:System.Security.Permissions.FileDialogPermissionAttribute.Open"> <summary> Gets or sets a value indicating whether permission to open files through the file dialog is declared. </summary> <returns>true if permission to open files through the file dialog is declared; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.FileDialogPermissionAttribute.Save"> <summary> Gets or sets a value indicating whether permission to save files through the file dialog is declared. </summary> <returns>true if permission to save files through the file dialog is declared; otherwise, false. </returns> </member> <member name="T:System.Security.Permissions.FileIOPermission"> <summary> Controls the ability to access files and folders. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.FileIOPermission" /> class with the specified access to the designated file or directory and the specified access rights to file control information. </summary> <param name="access"> A bitwise combination of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> enumeration values. </param> <param name="control"> A bitwise combination of the <see cref="T:System.Security.AccessControl.AccessControlActions" /> enumeration values. </param> <param name="path"> The absolute path of the file or directory. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.FileIOPermissionAccess" />. -or- The <paramref name="path" /> parameter is not a valid string. -or- The <paramref name="path" /> parameter does not specify the absolute path to the file or directory. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.FileIOPermission" /> class with the specified access to the designated files and directories and the specified access rights to file control information. </summary> <param name="access"> A bitwise combination of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> enumeration values. </param> <param name="control"> A bitwise combination of the <see cref="T:System.Security.AccessControl.AccessControlActions" /> enumeration values. </param> <param name="pathList"> An array containing the absolute paths of the files and directories. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.FileIOPermissionAccess" />. -or- An entry in the <paramref name="pathList" /> array is not a valid string. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.FileIOPermission" /> class with the specified access to the designated file or directory. </summary> <param name="access"> A bitwise combination of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> enumeration values. </param> <param name="path"> The absolute path of the file or directory. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.FileIOPermissionAccess" />. -or- The <paramref name="path" /> parameter is not a valid string. -or- The <paramref name="path" /> parameter does not specify the absolute path to the file or directory. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.FileIOPermissionAccess,System.String[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.FileIOPermission" /> class with the specified access to the designated files and directories. </summary> <param name="access"> A bitwise combination of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> enumeration values. </param> <param name="pathList"> An array containing the absolute paths of the files and directories. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.FileIOPermissionAccess" />. -or- An entry in the <paramref name="pathList" /> array is not a valid string. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.FileIOPermission" /> class with fully restricted or unrestricted permission as specified. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> enumeration values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.AddPathList(System.Security.Permissions.FileIOPermissionAccess,System.String)"> <summary> Adds access for the specified file or directory to the existing state of the permission. </summary> <param name="access"> A bitwise combination of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> values. </param> <param name="path"> The absolute path of a file or directory. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.FileIOPermissionAccess" />. -or- The <paramref name="path" /> parameter is not a valid string. -or- The <paramref name="path" /> parameter did not specify the absolute path to the file or directory. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="path" /> parameter is null. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.AddPathList(System.Security.Permissions.FileIOPermissionAccess,System.String[])"> <summary> Adds access for the specified files and directories to the existing state of the permission. </summary> <param name="access"> A bitwise combination of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> values. </param> <param name="pathList"> An array containing the absolute paths of the files and directories. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.FileIOPermissionAccess" />. -or- An entry in the <paramref name="pathList" /> array is not valid. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="pathList" /> parameter is null. </exception> </member> <member name="P:System.Security.Permissions.FileIOPermission.AllFiles"> <summary> Gets or sets the permitted access to all files. </summary> <returns> The set of file I/O flags for all files. </returns> </member> <member name="P:System.Security.Permissions.FileIOPermission.AllLocalFiles"> <summary> Gets or sets the permitted access to all local files. </summary> <returns> The set of file I/O flags for all local files. </returns> </member> <member name="M:System.Security.Permissions.FileIOPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.FileIOPermission.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Security.Permissions.FileIOPermission" /> object is equal to the current <see cref="T:System.Security.Permissions.FileIOPermission" />. </summary> <returns>true if the specified <see cref="T:System.Security.Permissions.FileIOPermission" /> is equal to the current <see cref="T:System.Security.Permissions.FileIOPermission" /> object; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Security.Permissions.FileIOPermission" /> object to compare with the current <see cref="T:System.Security.Permissions.FileIOPermission" />. </param> </member> <member name="M:System.Security.Permissions.FileIOPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding used to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not compatible. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.GetHashCode"> <summary> Gets a hash code for the <see cref="T:System.Security.Permissions.FileIOPermission" /> object that is suitable for use in hashing algorithms and data structures such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Security.Permissions.FileIOPermission" /> object. </returns> </member> <member name="M:System.Security.Permissions.FileIOPermission.GetPathList(System.Security.Permissions.FileIOPermissionAccess)"> <summary> Gets all files and directories with the specified <see cref="T:System.Security.Permissions.FileIOPermissionAccess" />. </summary> <returns> An array containing the paths of the files and directories to which access specified by the <paramref name="access" /> parameter is granted. </returns> <param name="access"> One of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> values that represents a single type of file access. </param> <exception cref="T:System.ArgumentException"> <paramref name="access" /> is not a valid value of <see cref="T:System.Security.Permissions.FileIOPermissionAccess" />. -or- <paramref name="access" /> is <see cref="F:System.Security.Permissions.FileIOPermissionAccess.AllAccess" />, which represents more than one type of file access, or <see cref="F:System.Security.Permissions.FileIOPermissionAccess.NoAccess" />, which does not represent any type of file access. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.IsUnrestricted"> <summary> Returns a value indicating whether the current permission is unrestricted. </summary> <returns>true if the current permission is unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.FileIOPermission.SetPathList(System.Security.Permissions.FileIOPermissionAccess,System.String)"> <summary> Sets the specified access to the specified file or directory, replacing the existing state of the permission. </summary> <param name="access"> A bitwise combination of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> values. </param> <param name="path"> The absolute path of the file or directory. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.FileIOPermissionAccess" />. -or- The <paramref name="path" /> parameter is not a valid string. -or- The <paramref name="path" /> parameter did not specify the absolute path to the file or directory. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.SetPathList(System.Security.Permissions.FileIOPermissionAccess,System.String[])"> <summary> Sets the specified access to the specified files and directories, replacing the current state for the specified access with the new set of paths. </summary> <param name="access"> A bitwise combination of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> values. </param> <param name="pathList"> An array containing the absolute paths of the files and directories. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.FileIOPermissionAccess" />. -or- An entry in the <paramref name="pathList" /> parameter is not a valid string. </exception> </member> <member name="M:System.Security.Permissions.FileIOPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.FileIOPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="other"> A permission to combine with the current permission. It must be the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="other" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="T:System.Security.Permissions.FileIOPermissionAccess"> <summary> Specifies the type of file access requested. </summary> </member> <member name="F:System.Security.Permissions.FileIOPermissionAccess.NoAccess"> <summary> No access to a file or directory. <see cref="F:System.Security.Permissions.FileIOPermissionAccess.NoAccess" /> represents no valid <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> values and causes an <see cref="T:System.ArgumentException" /> when used as the parameter for <see cref="M:System.Security.Permissions.FileIOPermission.GetPathList(System.Security.Permissions.FileIOPermissionAccess)" />, which expects a single value. </summary> </member> <member name="F:System.Security.Permissions.FileIOPermissionAccess.Read"> <summary> Access to read from a file or directory. </summary> </member> <member name="F:System.Security.Permissions.FileIOPermissionAccess.Write"> <summary> Access to write to or delete a file or directory. <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" /> access includes deleting and overwriting files or directories. </summary> </member> <member name="F:System.Security.Permissions.FileIOPermissionAccess.Append"> <summary> Access to append material to a file or directory. <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Append" /> access includes the ability to create a new file or directory. </summary> </member> <member name="F:System.Security.Permissions.FileIOPermissionAccess.PathDiscovery"> <summary> Access to the information in the path itself. This helps protect sensitive information in the path, such as user names, as well as information about the directory structure revealed in the path. This value does not grant access to files or folders represented by the path. </summary> </member> <member name="F:System.Security.Permissions.FileIOPermissionAccess.AllAccess"> <summary> <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Append" />, <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" />, <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />, and <see cref="F:System.Security.Permissions.FileIOPermissionAccess.PathDiscovery" /> access to a file or directory. <see cref="F:System.Security.Permissions.FileIOPermissionAccess.AllAccess" /> represents multiple <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> values and causes an <see cref="T:System.ArgumentException" /> when used as the <paramref name="access" /> parameter for the <see cref="M:System.Security.Permissions.FileIOPermission.GetPathList(System.Security.Permissions.FileIOPermissionAccess)" /> method, which expects a single value. </summary> </member> <member name="T:System.Security.Permissions.FileIOPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.FileIOPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.FileIOPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.FileIOPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="action" /> parameter is not a valid <see cref="T:System.Security.Permissions.SecurityAction" />. </exception> </member> <member name="P:System.Security.Permissions.FileIOPermissionAttribute.All"> <summary> Gets or sets full access for the file or directory that is specified by the string value. </summary> <returns> The absolute path of the file or directory for full access. </returns> <exception cref="T:System.NotSupportedException"> The get method is not supported for this property. </exception> </member> <member name="P:System.Security.Permissions.FileIOPermissionAttribute.AllFiles"> <summary> Gets or sets the permitted access to all files. </summary> <returns> A bitwise combination of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> values that represents the permissions for all files. The default is <see cref="F:System.Security.Permissions.FileIOPermissionAccess.NoAccess" />. </returns> </member> <member name="P:System.Security.Permissions.FileIOPermissionAttribute.AllLocalFiles"> <summary> Gets or sets the permitted access to all local files. </summary> <returns> A bitwise combination of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> values that represents the permissions for all local files. The default is <see cref="F:System.Security.Permissions.FileIOPermissionAccess.NoAccess" />. </returns> </member> <member name="P:System.Security.Permissions.FileIOPermissionAttribute.Append"> <summary> Gets or sets append access for the file or directory that is specified by the string value. </summary> <returns> The absolute path of the file or directory for append access. </returns> </member> <member name="P:System.Security.Permissions.FileIOPermissionAttribute.ChangeAccessControl"> <summary> Gets or sets the file or directory in which access control information can be changed. </summary> <returns> The absolute path of the file or directory in which access control information can be changed. </returns> </member> <member name="M:System.Security.Permissions.FileIOPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.FileIOPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.FileIOPermission" /> that corresponds to this attribute. </returns> <exception cref="T:System.ArgumentException"> The path information for a file or directory for which access is to be secured contains invalid characters or wildcard specifiers. </exception> </member> <member name="P:System.Security.Permissions.FileIOPermissionAttribute.PathDiscovery"> <summary> Gets or sets the file or directory to which to grant path discovery. </summary> <returns> The absolute path of the file or directory. </returns> </member> <member name="P:System.Security.Permissions.FileIOPermissionAttribute.Read"> <summary> Gets or sets read access for the file or directory specified by the string value. </summary> <returns> The absolute path of the file or directory for read access. </returns> </member> <member name="P:System.Security.Permissions.FileIOPermissionAttribute.ViewAccessControl"> <summary> Gets or sets the file or directory in which access control information can be viewed. </summary> <returns> The absolute path of the file or directory in which access control information can be viewed. </returns> </member> <member name="P:System.Security.Permissions.FileIOPermissionAttribute.ViewAndModify"> <summary> Gets or sets the file or directory in which file data can be viewed and modified. </summary> <returns> The absolute path of the file or directory in which file data can be viewed and modified. </returns> <exception cref="T:System.NotSupportedException"> The get accessor is called. The accessor is provided only for C# compiler compatibility. </exception> </member> <member name="P:System.Security.Permissions.FileIOPermissionAttribute.Write"> <summary> Gets or sets write access for the file or directory specified by the string value. </summary> <returns> The absolute path of the file or directory for write access. </returns> </member> <member name="T:System.Security.Permissions.GacIdentityPermission"> <summary> Defines the identity permission for files originating in the global assembly cache. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.GacIdentityPermission.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.GacIdentityPermission" /> class. </summary> </member> <member name="M:System.Security.Permissions.GacIdentityPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.GacIdentityPermission" /> class with fully restricted <see cref="T:System.Security.Permissions.PermissionState" />. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> <paramref name="state" /> is not a valid <see cref="T:System.Security.Permissions.PermissionState" /> value. </exception> </member> <member name="M:System.Security.Permissions.GacIdentityPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.GacIdentityPermission.FromXml(System.Security.SecurityElement)"> <summary> Creates a permission from an XML encoding. </summary> <param name="securityElement"> A <see cref="T:System.Security.SecurityElement" /> that contains the XML encoding to use to create the permission. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="securityElement" />is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="securityElement" /> is not a valid permission element. -or- The version number of <paramref name="securityElement" /> is not valid. </exception> </member> <member name="M:System.Security.Permissions.GacIdentityPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. The new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> <paramref name="target" /> is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.GacIdentityPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Indicates whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission object to test for the subset relationship. The permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> <paramref name="target" /> is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.GacIdentityPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> A <see cref="T:System.Security.SecurityElement" /> that represents the XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.GacIdentityPermission.Union(System.Security.IPermission)"> <summary> Creates and returns a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> <paramref name="target" /> is not null and is not of the same type as the current permission. </exception> </member> <member name="T:System.Security.Permissions.GacIdentityPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.GacIdentityPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.GacIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.GacIdentityPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" /> value. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="action" /> parameter is not a valid <see cref="T:System.Security.Permissions.SecurityAction" /> value. </exception> </member> <member name="M:System.Security.Permissions.GacIdentityPermissionAttribute.CreatePermission"> <summary> Creates a new <see cref="T:System.Security.Permissions.GacIdentityPermission" /> object. </summary> <returns> A <see cref="T:System.Security.Permissions.GacIdentityPermission" /> that corresponds to this attribute. </returns> </member> <member name="T:System.Security.Permissions.HostProtectionAttribute"> <summary> Allows the use of declarative security actions to determine host protection requirements. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.HostProtectionAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.HostProtectionAttribute" /> class with default values. </summary> </member> <member name="M:System.Security.Permissions.HostProtectionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.HostProtectionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" /> value. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> <exception cref="T:System.ArgumentException"> <paramref name="action" /> is not <see cref="F:System.Security.Permissions.SecurityAction.LinkDemand" />. </exception> </member> <member name="M:System.Security.Permissions.HostProtectionAttribute.CreatePermission"> <summary> Creates and returns a new host protection permission. </summary> <returns> An <see cref="T:System.Security.IPermission" /> that corresponds to the current attribute. </returns> </member> <member name="P:System.Security.Permissions.HostProtectionAttribute.ExternalProcessMgmt"> <summary> Gets or sets a value indicating whether external process management is exposed. </summary> <returns>true if external process management is exposed; otherwise, false. The default is false. </returns> </member> <member name="P:System.Security.Permissions.HostProtectionAttribute.ExternalThreading"> <summary> Gets or sets a value indicating whether external threading is exposed. </summary> <returns>true if external threading is exposed; otherwise, false. The default is false. </returns> </member> <member name="P:System.Security.Permissions.HostProtectionAttribute.MayLeakOnAbort"> <summary> Gets or sets a value indicating whether resources might leak memory if the operation is terminated. </summary> <returns>true if resources might leak memory on termination; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.HostProtectionAttribute.Resources"> <summary> Gets or sets flags specifying categories of functionality that are potentially harmful to the host. </summary> <returns> A bitwise combination of the <see cref="T:System.Security.Permissions.HostProtectionResource" /> values. The default is <see cref="F:System.Security.Permissions.HostProtectionResource.None" />. </returns> </member> <member name="P:System.Security.Permissions.HostProtectionAttribute.SecurityInfrastructure"> <summary> Gets or sets a value indicating whether the security infrastructure is exposed. </summary> <returns>true if the security infrastructure is exposed; otherwise, false. The default is false. </returns> </member> <member name="P:System.Security.Permissions.HostProtectionAttribute.SelfAffectingProcessMgmt"> <summary> Gets or sets a value indicating whether self-affecting process management is exposed. </summary> <returns>true if self-affecting process management is exposed; otherwise, false. The default is false. </returns> </member> <member name="P:System.Security.Permissions.HostProtectionAttribute.SelfAffectingThreading"> <summary> Gets or sets a value indicating whether self-affecting threading is exposed. </summary> <returns>true if self-affecting threading is exposed; otherwise, false. The default is false. </returns> </member> <member name="P:System.Security.Permissions.HostProtectionAttribute.SharedState"> <summary> Gets or sets a value indicating whether shared state is exposed. </summary> <returns>true if shared state is exposed; otherwise, false. The default is false. </returns> </member> <member name="P:System.Security.Permissions.HostProtectionAttribute.Synchronization"> <summary> Gets or sets a value indicating whether synchronization is exposed. </summary> <returns>true if synchronization is exposed; otherwise, false. The default is false. </returns> </member> <member name="P:System.Security.Permissions.HostProtectionAttribute.UI"> <summary> Gets or sets a value indicating whether the user interface is exposed. </summary> <returns>true if the user interface is exposed; otherwise, false. The default is false. </returns> </member> <member name="T:System.Security.Permissions.HostProtectionResource"> <summary> Specifies categories of functionality potentially harmful to the host if invoked by a method or class. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.None"> <summary> Exposes no host resources. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.Synchronization"> <summary> Exposes synchronization. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.SharedState"> <summary> Exposes state that might be shared between threads. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.ExternalProcessMgmt"> <summary> Might create or destroy other processes. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.SelfAffectingProcessMgmt"> <summary> Might exit the current process, terminating the server. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.ExternalThreading"> <summary> Creates or manipulates threads other than its own, which might be harmful to the host. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.SelfAffectingThreading"> <summary> Manipulates threads in a way that only affects user code. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.SecurityInfrastructure"> <summary> Exposes the security infrastructure. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.UI"> <summary> Exposes the user interface. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.MayLeakOnAbort"> <summary> Might cause a resource leak on termination, if not protected by a safe handle or some other means of ensuring the release of resources. </summary> </member> <member name="F:System.Security.Permissions.HostProtectionResource.All"> <summary> Exposes all host resources. </summary> </member> <member name="T:System.Security.Permissions.IsolatedStorageContainment"> <summary> Specifies the permitted use of isolated storage. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.None"> <summary> Use of isolated storage is not allowed. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByUser"> <summary> Storage is isolated first by user and then by domain and assembly. Storage is also isolated by computer. Data can only be accessed within the context of the same application and only when run by the same user. This is helpful when a third-party assembly wants to keep a private data store. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByUser"> <summary> Storage is isolated first by user and then by application. Storage is also isolated by computer. This provides a data store for the application that is accessible in any domain context. The per-application data compartment requires additional trust because it potentially provides a "tunnel" between applications that could compromise the data isolation of applications in particular Web sites. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByUser"> <summary> Storage is isolated first by user and then by code assembly. Storage is also isolated by computer. This provides a data store for the assembly that is accessible in any domain context. The per-assembly data compartment requires additional trust because it potentially provides a "tunnel" between applications that could compromise the data isolation of applications in particular Web sites. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByMachine"> <summary> Storage is isolated first by computer and then by domain and assembly. Data can only be accessed within the context of the same application and only when run on the same computer. This is helpful when a third-party assembly wants to keep a private data store. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByMachine"> <summary> Storage is isolated first by computer and then by code assembly. This provides a data store for the assembly that is accessible in any domain context. The per-assembly data compartment requires additional trust because it potentially provides a "tunnel" between applications that could compromise the data isolation of applications in particular Web sites. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByMachine"> <summary> Storage is isolated first by computer and then by application. This provides a data store for the application that is accessible in any domain context. The per-application data compartment requires additional trust because it potentially provides a "tunnel" between applications that could compromise the data isolation of applications in particular Web sites. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByRoamingUser"> <summary> Storage is isolated first by user and then by domain and assembly. Storage will roam if Windows user data roaming is enabled. Data can only be accessed within the context of the same application and only when run by the same user. This is helpful when a third-party assembly wants to keep a private data store. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByRoamingUser"> <summary> Storage is isolated first by user and then by assembly evidence. Storage will roam if Windows user data roaming is enabled. This provides a data store for the assembly that is accessible in any domain context. The per-assembly data compartment requires additional trust because it potentially provides a "tunnel" between applications that could compromise the data isolation of applications in particular Web sites. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByRoamingUser"> <summary> Storage is isolated first by user and then by application evidence. Storage will roam if Windows user data roaming is enabled. This provides a data store for the application that is accessible in any domain context. The per-application data compartment requires additional trust because it potentially provides a "tunnel" between applications that could compromise the data isolation of applications in particular Web sites. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.AdministerIsolatedStorageByUser"> <summary> Unlimited administration ability for the user store. Allows browsing and deletion of the entire user store, but not read access other than the user's own domain/assembly identity. </summary> </member> <member name="F:System.Security.Permissions.IsolatedStorageContainment.UnrestrictedIsolatedStorage"> <summary> Use of isolated storage is allowed without restriction. Code has full access to any part of the user store, regardless of the identity of the domain or assembly. This use of isolated storage includes the ability to enumerate the contents of the isolated storage data store. </summary> </member> <member name="T:System.Security.Permissions.IsolatedStorageFilePermission"> <summary> Specifies the allowed usage of a private virtual file system. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.IsolatedStorageFilePermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.IsolatedStorageFilePermission" /> class with either fully restricted or unrestricted permission as specified. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.IsolatedStorageFilePermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.IsolatedStorageFilePermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission object. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.IsolatedStorageFilePermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.IsolatedStorageFilePermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.IsolatedStorageFilePermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="T:System.Security.Permissions.IsolatedStorageFilePermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.IsolatedStorageFilePermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.IsolatedStorageFilePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.IsolatedStorageFilePermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="M:System.Security.Permissions.IsolatedStorageFilePermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.IsolatedStorageFilePermission" />. </summary> <returns> An <see cref="T:System.Security.Permissions.IsolatedStorageFilePermission" /> that corresponds to this attribute. </returns> </member> <member name="T:System.Security.Permissions.IsolatedStoragePermission"> <summary> Represents access to generic isolated storage capabilities. </summary> </member> <member name="M:System.Security.Permissions.IsolatedStoragePermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.IsolatedStoragePermission" /> class with either restricted or unrestricted permission as specified. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.IsolatedStoragePermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not valid. </exception> </member> <member name="M:System.Security.Permissions.IsolatedStoragePermission.IsUnrestricted"> <summary> Returns a value indicating whether the current permission is unrestricted. </summary> <returns>true if the current permission is unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.IsolatedStoragePermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="P:System.Security.Permissions.IsolatedStoragePermission.UsageAllowed"> <summary> Gets or sets the type of isolated storage containment allowed. </summary> <returns> One of the <see cref="T:System.Security.Permissions.IsolatedStorageContainment" /> values. </returns> </member> <member name="P:System.Security.Permissions.IsolatedStoragePermission.UserQuota"> <summary> Gets or sets the quota on the overall size of each user's total store. </summary> <returns> The size, in bytes, of the resource allocated to the user. </returns> </member> <member name="T:System.Security.Permissions.IsolatedStoragePermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.IsolatedStoragePermission" /> to be applied to code using declarative security. </summary> </member> <member name="M:System.Security.Permissions.IsolatedStoragePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.IsolatedStoragePermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="P:System.Security.Permissions.IsolatedStoragePermissionAttribute.UsageAllowed"> <summary> Gets or sets the level of isolated storage that should be declared. </summary> <returns> One of the <see cref="T:System.Security.Permissions.IsolatedStorageContainment" /> values. </returns> </member> <member name="P:System.Security.Permissions.IsolatedStoragePermissionAttribute.UserQuota"> <summary> Gets or sets the maximum user storage quota size. </summary> <returns> The maximum user storage quota size in bytes. </returns> </member> <member name="T:System.Security.Permissions.IUnrestrictedPermission"> <summary> Allows a permission to expose an unrestricted state. </summary> </member> <member name="M:System.Security.Permissions.IUnrestrictedPermission.IsUnrestricted"> <summary> Returns a value indicating whether unrestricted access to the resource protected by the permission is allowed. </summary> <returns>true if unrestricted use of the resource protected by the permission is allowed; otherwise, false. </returns> </member> <member name="T:System.Security.Permissions.KeyContainerPermission"> <summary> Controls the ability to access key containers. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.KeyContainerPermissionFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.KeyContainerPermission" /> class with the specified access. </summary> <param name="flags"> A bitwise combination of the <see cref="T:System.Security.Permissions.KeyContainerPermissionFlags" /> values. </param> <exception cref="T:System.ArgumentException"> <paramref name="flags" /> is not a valid combination of the <see cref="T:System.Security.Permissions.KeyContainerPermissionFlags" /> values. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.KeyContainerPermissionFlags,System.Security.Permissions.KeyContainerPermissionAccessEntry[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.KeyContainerPermission" /> class with the specified global access and specific key container access rights. </summary> <param name="flags"> A bitwise combination of the <see cref="T:System.Security.Permissions.KeyContainerPermissionFlags" /> values. </param> <param name="accessList"> An array of <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> objects identifying specific key container access rights. </param> <exception cref="T:System.ArgumentException"> <paramref name="flags" /> is not a valid combination of the <see cref="T:System.Security.Permissions.KeyContainerPermissionFlags" /> values. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="accessList" /> is null. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.KeyContainerPermission" /> class with either restricted or unrestricted permission. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> <paramref name="state" /> is not a valid <see cref="T:System.Security.Permissions.PermissionState" /> value. </exception> </member> <member name="P:System.Security.Permissions.KeyContainerPermission.AccessEntries"> <summary> Gets the collection of <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> objects associated with the current permission. </summary> <returns> A <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection" /> containing the <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> objects for this <see cref="T:System.Security.Permissions.KeyContainerPermission" />. </returns> </member> <member name="M:System.Security.Permissions.KeyContainerPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="P:System.Security.Permissions.KeyContainerPermission.Flags"> <summary> Gets the key container permission flags that apply to all key containers associated with the permission. </summary> <returns> A bitwise combination of the <see cref="T:System.Security.Permissions.KeyContainerPermissionFlags" /> values. </returns> </member> <member name="M:System.Security.Permissions.KeyContainerPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="securityElement"> A <see cref="T:System.Security.SecurityElement" /> that contains the XML encoding used to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="securityElement" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="securityElement" /> is not a valid permission element. -or- The version number of <paramref name="securityElement" /> is not supported. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> <paramref name="target" /> is not null and does not specify a permission of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission to test for the subset relationship. This permission must be the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> <paramref name="target" /> is not null and does not specify a permission of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermission.IsUnrestricted"> <summary> Determines whether the current permission is unrestricted. </summary> <returns>true if the current permission is unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.KeyContainerPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> A <see cref="T:System.Security.SecurityElement" /> that contains an XML encoding of the permission, including state information. </returns> </member> <member name="M:System.Security.Permissions.KeyContainerPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> <paramref name="target" /> is not null and does not specify a permission of the same type as the current permission. </exception> </member> <member name="T:System.Security.Permissions.KeyContainerPermissionAccessEntry"> <summary> Specifies access rights for specific key containers. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.Security.Cryptography.CspParameters,System.Security.Permissions.KeyContainerPermissionFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> class, using the specified cryptographic service provider (CSP) parameters and access permissions. </summary> <param name="parameters"> A <see cref="T:System.Security.Cryptography.CspParameters" /> object that contains the cryptographic service provider (CSP) parameters. </param> <param name="flags"> A bitwise combination of the <see cref="T:System.Security.Permissions.KeyContainerPermissionFlags" /> values. </param> <exception cref="T:System.ArgumentException"> The resulting entry would have unrestricted access. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.String,System.Security.Permissions.KeyContainerPermissionFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> class, using the specified key container name and access permissions. </summary> <param name="keyContainerName"> The name of the key container. </param> <param name="flags"> A bitwise combination of the <see cref="T:System.Security.Permissions.KeyContainerPermissionFlags" /> values. </param> <exception cref="T:System.ArgumentException"> The resulting entry would have unrestricted access. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntry.#ctor(System.String,System.String,System.Int32,System.String,System.Int32,System.Security.Permissions.KeyContainerPermissionFlags)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> class with the specified property values. </summary> <param name="keyStore"> The name of the key store. </param> <param name="providerName"> The name of the provider. </param> <param name="providerType"> The type code for the provider. See the <see cref="P:System.Security.Permissions.KeyContainerPermissionAccessEntry.ProviderType" /> property for values. </param> <param name="keyContainerName"> The name of the key container. </param> <param name="keySpec"> The key specification. See the <see cref="P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeySpec" /> property for values. </param> <param name="flags"> A bitwise combination of the <see cref="T:System.Security.Permissions.KeyContainerPermissionFlags" /> values. </param> <exception cref="T:System.ArgumentException"> The resulting entry would have unrestricted access. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntry.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object is equal to the current instance. </summary> <returns>true if the specified <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> is equal to the current <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object to compare with the currentinstance. </param> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntry.Flags"> <summary> Gets or sets the key container permissions. </summary> <returns> A bitwise combination of the <see cref="T:System.Security.Permissions.KeyContainerPermissionFlags" /> values. The default is <see cref="F:System.Security.Permissions.KeyContainerPermissionFlags.NoFlags" />. </returns> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntry.GetHashCode"> <summary> Gets a hash code for the current instance that is suitable for use in hashing algorithms and data structures such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object. </returns> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeyContainerName"> <summary> Gets or sets the key container name. </summary> <returns> The name of the key container. </returns> <exception cref="T:System.ArgumentException"> The resulting entry would have unrestricted access. </exception> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeySpec"> <summary> Gets or sets the key specification. </summary> <returns> One of the AT_ values defined in the Wincrypt.h header file. </returns> <exception cref="T:System.ArgumentException"> The resulting entry would have unrestricted access. </exception> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntry.KeyStore"> <summary> Gets or sets the name of the key store. </summary> <returns> The name of the key store. </returns> <exception cref="T:System.ArgumentException"> The resulting entry would have unrestricted access. </exception> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntry.ProviderName"> <summary> Gets or sets the provider name. </summary> <returns> The name of the provider. </returns> <exception cref="T:System.ArgumentException"> The resulting entry would have unrestricted access. </exception> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntry.ProviderType"> <summary> Gets or sets the provider type. </summary> <returns> One of the PROV_ values defined in the Wincrypt.h header file. </returns> <exception cref="T:System.ArgumentException"> The resulting entry would have unrestricted access. </exception> </member> <member name="T:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection"> <summary> Represents a collection of <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> objects. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Add(System.Security.Permissions.KeyContainerPermissionAccessEntry)"> <summary> Adds a <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object to the collection. </summary> <returns> The index at which the new element was inserted. </returns> <param name="accessEntry"> The <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object to add. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="accessEntry" /> is null. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Clear"> <summary> Removes all the <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> objects from the collection. </summary> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.CopyTo(System.Security.Permissions.KeyContainerPermissionAccessEntry[],System.Int32)"> <summary> Copies the elements of the collection to a compatible one-dimensional array, starting at the specified index of the target array. </summary> <param name="array"> The one-dimensional <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> array that is the destination of the elements copied from the current collection. </param> <param name="index"> The index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the collection is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Count"> <summary> Gets the number of items in the collection. </summary> <returns> The number of <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> objects in the collection. </returns> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.GetEnumerator"> <summary> Returns a <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator" /> object that can be used to iterate through the objects in the collection. </summary> <returns> A <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator" /> object that can be used to iterate through the collection. </returns> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.IndexOf(System.Security.Permissions.KeyContainerPermissionAccessEntry)"> <summary> Gets the index in the collection of the specified <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object, if it exists in the collection. </summary> <returns> The index of the specified <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object in the collection, or –1 if no match is found. </returns> <param name="accessEntry"> The <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object to locate. </param> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.IsSynchronized"> <summary> Gets a value indicating whether the collection is synchronized (thread safe). </summary> <returns>false in all cases. </returns> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Item(System.Int32)"> <summary> Gets the item at the specified index in the collection. </summary> <returns> The <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object at the specified index in the collection. </returns> <param name="index"> The zero-based index of the element to access. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is greater than or equal to the collection count. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="index" /> is negative. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.Remove(System.Security.Permissions.KeyContainerPermissionAccessEntry)"> <summary> Removes the specified <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object from thecollection. </summary> <param name="accessEntry"> The <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="accessEntry" /> is null. </exception> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.SyncRoot"> <summary> Gets an object that can be used to synchronize access to the collection. </summary> <returns> An object that can be used to synchronize access to the collection. </returns> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies the elements of the collection to a compatible one-dimensional array, starting at the specified index of the target array. </summary> <param name="array"> The one-dimensional array that is the destination of the elements copied from the current collection. </param> <param name="index"> The index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the collection is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns a <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator" /> object that can be used to iterate through the objects in the collection. </summary> <returns> A <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator" /> object that can be used to iterate through the collection. </returns> </member> <member name="T:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator"> <summary> Represents the enumerator for <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> objects in a <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntryCollection" />. </summary> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.Current"> <summary> Gets the current entry in the collection. </summary> <returns> The current <see cref="T:System.Security.Permissions.KeyContainerPermissionAccessEntry" /> object in the collection. </returns> <exception cref="T:System.InvalidOperationException"> The <see cref="P:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.Current" /> property is accessed before first calling the <see cref="M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.MoveNext" /> method. The cursor is located before the first object in the collection. -or- The <see cref="P:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.Current" /> property is accessed after a call to the <see cref="M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.MoveNext" /> method returns false, which indicates that the cursor is located after the last object in the collection. </exception> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.MoveNext"> <summary> Moves to the next element in the collection. </summary> <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. </returns> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.Reset"> <summary> Resets the enumerator to the beginning of the collection. </summary> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator.System#Collections#IEnumerator#Current"> <summary> Gets the current object in the collection. </summary> <returns> The current object in the collection. </returns> </member> <member name="T:System.Security.Permissions.KeyContainerPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.KeyContainerPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.KeyContainerPermissionAttribute" /> class with the specified security action. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="M:System.Security.Permissions.KeyContainerPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.KeyContainerPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.KeyContainerPermission" /> that corresponds to the attribute. </returns> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAttribute.Flags"> <summary> Gets or sets the key container permissions. </summary> <returns> A bitwise combination of the <see cref="T:System.Security.Permissions.KeyContainerPermissionFlags" /> values. The default is <see cref="F:System.Security.Permissions.KeyContainerPermissionFlags.NoFlags" />. </returns> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAttribute.KeyContainerName"> <summary> Gets or sets the name of the key container. </summary> <returns> The name of the key container. </returns> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAttribute.KeySpec"> <summary> Gets or sets the key specification. </summary> <returns> One of the AT_ values defined in the Wincrypt.h header file. </returns> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAttribute.KeyStore"> <summary> Gets or sets the name of the key store. </summary> <returns> The name of the key store. The default is "*". </returns> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAttribute.ProviderName"> <summary> Gets or sets the provider name. </summary> <returns> The name of the provider. </returns> </member> <member name="P:System.Security.Permissions.KeyContainerPermissionAttribute.ProviderType"> <summary> Gets or sets the provider type. </summary> <returns> One of the PROV_ values defined in the Wincrypt.h header file. </returns> </member> <member name="T:System.Security.Permissions.KeyContainerPermissionFlags"> <summary> Specifies the type of key container access allowed. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.NoFlags"> <summary> No access to a key container. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.Create"> <summary> Create a key container. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.Open"> <summary> Open a key container and use the public key. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.Delete"> <summary> Delete a key container. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.Import"> <summary> Import a key into a key container. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.Export"> <summary> Export a key from a key container. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.Sign"> <summary> Sign a file using a key. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.Decrypt"> <summary> Decrypt a key container. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.ViewAcl"> <summary> View the access control list (ACL) for a key container. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.ChangeAcl"> <summary> Change the access control list (ACL) for a key container. </summary> </member> <member name="F:System.Security.Permissions.KeyContainerPermissionFlags.AllFlags"> <summary> Create, decrypt, delete, and open a key container; export and import a key; sign files using a key; and view and change the access control list for a key container. </summary> </member> <member name="T:System.Security.Permissions.PermissionSetAttribute"> <summary> Allows security actions for a <see cref="T:System.Security.PermissionSet" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.PermissionSetAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.PermissionSetAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="M:System.Security.Permissions.PermissionSetAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.IPermission" />. </summary> <returns> A new <see cref="T:System.Security.IPermission" />. </returns> </member> <member name="M:System.Security.Permissions.PermissionSetAttribute.CreatePermissionSet"> <summary> Creates and returns a new <see cref="T:System.Security.PermissionSet" />. </summary> <returns> A new <see cref="T:System.Security.PermissionSet" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="P:System.Security.Permissions.PermissionSetAttribute.File"> <summary> Gets or sets a file containing the XML representation of a custom permission set to be declared. </summary> <returns> The physical path to the file containing the XML representation of the permission set. </returns> </member> <member name="P:System.Security.Permissions.PermissionSetAttribute.Hex"> <summary> Gets or sets the hexadecimal representation of the XML encoded permission set. </summary> <returns> The hexadecimal representation of the XML encoded permission set. </returns> </member> <member name="P:System.Security.Permissions.PermissionSetAttribute.Name"> <summary> Gets or sets the name of the permission set. </summary> <returns> The name of an immutable <see cref="T:System.Security.NamedPermissionSet" /> (one of several permission sets that are contained in the default policy and cannot be altered). </returns> </member> <member name="P:System.Security.Permissions.PermissionSetAttribute.UnicodeEncoded"> <summary> Gets or sets a value indicating whether the file specified by <see cref="P:System.Security.Permissions.PermissionSetAttribute.File" /> is Unicode or ASCII encoded. </summary> <returns>true if the file is Unicode encoded; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.PermissionSetAttribute.XML"> <summary> Gets or sets the XML representation of a permission set. </summary> <returns> The XML representation of a permission set. </returns> </member> <member name="T:System.Security.Permissions.PermissionState"> <summary> Specifies whether a permission should have all or no access to resources at creation. </summary> </member> <member name="F:System.Security.Permissions.PermissionState.Unrestricted"> <summary> Full access to the resource protected by the permission. </summary> </member> <member name="F:System.Security.Permissions.PermissionState.None"> <summary> No access to the resource protected by the permission. </summary> </member> <member name="T:System.Security.Permissions.PrincipalPermission"> <summary> Allows checks against the active principal (see <see cref="T:System.Security.Principal.IPrincipal" />) using the language constructs defined for both declarative and imperative security actions. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.PrincipalPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.PrincipalPermission" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" />. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.PrincipalPermission.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.PrincipalPermission" /> class for the specified <paramref name="name" /> and <paramref name="role" />. </summary> <param name="name"> The name of the <see cref="T:System.Security.Principal.IPrincipal" /> object's user. </param> <param name="role"> The role of the <see cref="T:System.Security.Principal.IPrincipal" /> object's user (for example, Administrator). </param> </member> <member name="M:System.Security.Permissions.PrincipalPermission.#ctor(System.String,System.String,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.PrincipalPermission" /> class for the specified <paramref name="name" />, <paramref name="role" />, and authentication status. </summary> <param name="name"> The name of the <see cref="T:System.Security.Principal.IPrincipal" /> object's user. </param> <param name="role"> The role of the <see cref="T:System.Security.Principal.IPrincipal" /> object's user (for example, Administrator). </param> <param name="isAuthenticated">true to signify that the user is authenticated; otherwise, false. </param> </member> <member name="M:System.Security.Permissions.PrincipalPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.PrincipalPermission.Demand"> <summary> Determines at run time whether the current principal matches the principal specified by the current permission. </summary> <exception cref="T:System.Security.SecurityException"> The current principal does not pass the security check for the principal specified by the current permission. -or- The current <see cref="T:System.Security.Principal.IPrincipal" /> is null. </exception> </member> <member name="M:System.Security.Permissions.PrincipalPermission.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Security.Permissions.PrincipalPermission" /> object is equal to the current <see cref="T:System.Security.Permissions.PrincipalPermission" />. </summary> <returns>true if the specified <see cref="T:System.Security.Permissions.PrincipalPermission" /> is equal to the current <see cref="T:System.Security.Permissions.PrincipalPermission" /> object; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Security.Permissions.PrincipalPermission" /> object to compare with the current <see cref="T:System.Security.Permissions.PrincipalPermission" />. </param> </member> <member name="M:System.Security.Permissions.PrincipalPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="elem"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="elem" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="elem" /> parameter is not a valid permission element. -or- The <paramref name="elem" /> parameter's version number is not valid. </exception> </member> <member name="M:System.Security.Permissions.PrincipalPermission.GetHashCode"> <summary> Gets a hash code for the <see cref="T:System.Security.Permissions.PrincipalPermission" /> object that is suitable for use in hashing algorithms and data structures such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Security.Permissions.PrincipalPermission" /> object. </returns> </member> <member name="M:System.Security.Permissions.PrincipalPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission will be null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not an instance of the same class as the current permission. </exception> </member> <member name="M:System.Security.Permissions.PrincipalPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is an object that is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.PrincipalPermission.IsUnrestricted"> <summary> Returns a value indicating whether the current permission is unrestricted. </summary> <returns>true if the current permission is unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.PrincipalPermission.ToString"> <summary> Creates and returns a string representing the current permission. </summary> <returns> A representation of the current permission. </returns> </member> <member name="M:System.Security.Permissions.PrincipalPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.PrincipalPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="other"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="other" /> parameter is an object that is not of the same type as the current permission. </exception> </member> <member name="T:System.Security.Permissions.PrincipalPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.PrincipalPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.PrincipalPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.PrincipalPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="P:System.Security.Permissions.PrincipalPermissionAttribute.Authenticated"> <summary> Gets or sets a value indicating whether the current principal has been authenticated by the underlying role-based security provider. </summary> <returns>true if the current principal has been authenticated; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.PrincipalPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.PrincipalPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.PrincipalPermission" /> that corresponds to this attribute. </returns> </member> <member name="P:System.Security.Permissions.PrincipalPermissionAttribute.Name"> <summary> Gets or sets the name of the identity associated with the current principal. </summary> <returns> A name to match against that provided by the underlying role-based security provider. </returns> </member> <member name="P:System.Security.Permissions.PrincipalPermissionAttribute.Role"> <summary> Gets or sets membership in a specified security role. </summary> <returns> The name of a role from the underlying role-based security provider. </returns> </member> <member name="T:System.Security.Permissions.PublisherIdentityPermission"> <summary> Represents the identity of a software publisher. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.PublisherIdentityPermission.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.PublisherIdentityPermission" /> class with the specified Authenticode X.509v3 certificate. </summary> <param name="certificate"> An X.509 certificate representing the software publisher's identity. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="certificate" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="certificate" /> parameter is not a valid certificate. </exception> </member> <member name="M:System.Security.Permissions.PublisherIdentityPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.PublisherIdentityPermission" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" />. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="P:System.Security.Permissions.PublisherIdentityPermission.Certificate"> <summary> Gets or sets an Authenticode X.509v3 certificate that represents the identity of the software publisher. </summary> <returns> An X.509 certificate representing the identity of the software publisher. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Permissions.PublisherIdentityPermission.Certificate" /> is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Permissions.PublisherIdentityPermission.Certificate" /> is not a valid certificate. </exception> <exception cref="T:System.NotSupportedException"> The property cannot be set because the identity is ambiguous. </exception> </member> <member name="M:System.Security.Permissions.PublisherIdentityPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.PublisherIdentityPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not valid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Permissions.PublisherIdentityPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.PublisherIdentityPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.PublisherIdentityPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.PublisherIdentityPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. -or- The two permissions are not equal. </exception> </member> <member name="T:System.Security.Permissions.PublisherIdentityPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.PublisherIdentityPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.PublisherIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.PublisherIdentityPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="P:System.Security.Permissions.PublisherIdentityPermissionAttribute.CertFile"> <summary> Gets or sets a certification file containing an Authenticode X.509v3 certificate. </summary> <returns> The file path of an X.509 certificate file (usually has the extension.cer). </returns> </member> <member name="M:System.Security.Permissions.PublisherIdentityPermissionAttribute.CreatePermission"> <summary> Creates and returns a new instance of <see cref="T:System.Security.Permissions.PublisherIdentityPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.PublisherIdentityPermission" /> that corresponds to this attribute. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="P:System.Security.Permissions.PublisherIdentityPermissionAttribute.SignedFile"> <summary> Gets or sets a signed file from which to extract an Authenticode X.509v3 certificate. </summary> <returns> The file path of a file signed with the Authenticode signature. </returns> </member> <member name="P:System.Security.Permissions.PublisherIdentityPermissionAttribute.X509Certificate"> <summary> Gets or sets an Authenticode X.509v3 certificate identifying the publisher of the calling code. </summary> <returns> A hexadecimal representation of the X.509 certificate. </returns> </member> <member name="T:System.Security.Permissions.ReflectionPermission"> <summary> Controls access to non-public types and members through the <see cref="N:System.Reflection" /> APIs. Controls some features of the <see cref="N:System.Reflection.Emit" /> APIs. </summary> </member> <member name="M:System.Security.Permissions.ReflectionPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.ReflectionPermission" /> class with either fully restricted or unrestricted permission as specified. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.ReflectionPermission.#ctor(System.Security.Permissions.ReflectionPermissionFlag)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.ReflectionPermission" /> class with the specified access. </summary> <param name="flag"> One of the <see cref="T:System.Security.Permissions.ReflectionPermissionFlag" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="flag" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.ReflectionPermissionFlag" />. </exception> </member> <member name="M:System.Security.Permissions.ReflectionPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="P:System.Security.Permissions.ReflectionPermission.Flags"> <summary> Gets or sets the type of reflection allowed for the current permission. </summary> <returns> The set flags for the current permission. </returns> <exception cref="T:System.ArgumentException"> An attempt is made to set this property to an invalid value. See <see cref="T:System.Security.Permissions.ReflectionPermissionFlag" /> for the valid values. </exception> </member> <member name="M:System.Security.Permissions.ReflectionPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not valid. </exception> </member> <member name="M:System.Security.Permissions.ReflectionPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.ReflectionPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.ReflectionPermission.IsUnrestricted"> <summary> Returns a value indicating whether the current permission is unrestricted. </summary> <returns>true if the current permission is unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.ReflectionPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.ReflectionPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="other"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="other" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="T:System.Security.Permissions.ReflectionPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.ReflectionPermission" /> to be applied to code using declarative security. </summary> </member> <member name="M:System.Security.Permissions.ReflectionPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.ReflectionPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="M:System.Security.Permissions.ReflectionPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.ReflectionPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.ReflectionPermission" /> that corresponds to this attribute. </returns> </member> <member name="P:System.Security.Permissions.ReflectionPermissionAttribute.Flags"> <summary> Gets or sets the current allowed uses of reflection. </summary> <returns> One or more of the <see cref="T:System.Security.Permissions.ReflectionPermissionFlag" /> values combined using a bitwise OR. </returns> <exception cref="T:System.ArgumentException"> An attempt is made to set this property to an invalid value. See <see cref="T:System.Security.Permissions.ReflectionPermissionFlag" /> for the valid values. </exception> </member> <member name="P:System.Security.Permissions.ReflectionPermissionAttribute.MemberAccess"> <summary> Gets or sets a value that indicates whether invocation of operations on non-public members is allowed. </summary> <returns>true if invocation of operations on non-public members is allowed; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.ReflectionPermissionAttribute.ReflectionEmit"> <summary> Gets or sets a value that indicates whether use of certain features in <see cref="N:System.Reflection.Emit" />, such as emitting debug symbols, is allowed. </summary> <returns>true if use of the affected features is allowed; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.ReflectionPermissionAttribute.TypeInformation"> <summary> Gets or sets a value that indicates whether reflection on members that are not visible is allowed. </summary> <returns>true if reflection on members that are not visible is allowed; otherwise, false. </returns> </member> <member name="T:System.Security.Permissions.ReflectionPermissionFlag"> <summary> Specifies the permitted use of the <see cref="N:System.Reflection" /> and <see cref="N:System.Reflection.Emit" /> namespaces. </summary> </member> <member name="F:System.Security.Permissions.ReflectionPermissionFlag.NoFlags"> <summary> Enumeration of types and members is allowed. Invocation operations are allowed on visible types and members. </summary> </member> <member name="F:System.Security.Permissions.ReflectionPermissionFlag.TypeInformation"> <summary> This flag is obsolete. No flags are necessary to enumerate types and members and to examine their metadata. Use <see cref="F:System.Security.Permissions.ReflectionPermissionFlag.NoFlags" /> instead. </summary> </member> <member name="F:System.Security.Permissions.ReflectionPermissionFlag.MemberAccess"> <summary> Invocation operations on all members are allowed, regardless of grant set. If this flag is not set, invocation operations are allowed only on visible members. </summary> </member> <member name="F:System.Security.Permissions.ReflectionPermissionFlag.ReflectionEmit"> <summary> Emitting debug symbols is allowed. Beginning with the .NET Framework version 2.0 Service Pack 1, this flag is no longer required to emit code. </summary> </member> <member name="F:System.Security.Permissions.ReflectionPermissionFlag.AllFlags"> <summary>TypeInformation, MemberAccess, and ReflectionEmit are set. <see cref="F:System.Security.Permissions.ReflectionPermissionFlag.AllFlags" /> does not include <see cref="F:System.Security.Permissions.ReflectionPermissionFlag.RestrictedMemberAccess" />. </summary> </member> <member name="F:System.Security.Permissions.ReflectionPermissionFlag.RestrictedMemberAccess"> <summary> Restricted member access is provided for partially trusted code. Partially trusted code can access nonpublic types and members, but only if the grant set of the partially trusted code includes all permissions in the grant set of the assembly that contains the nonpublic types and members being accessed. This flag is new in the .NET Framework 2.0 SP1. </summary> </member> <member name="T:System.Security.Permissions.RegistryPermission"> <summary> Controls the ability to access registry variables. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.RegistryPermission" /> class with either fully restricted or unrestricted permission as specified. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.RegistryPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.RegistryPermission" /> class with the specified access to the specified registry variables and the specified access rights to registry control information. </summary> <param name="access"> One of the <see cref="T:System.Security.Permissions.RegistryPermissionAccess" /> values. </param> <param name="control"> A bitwise combination of the <see cref="T:System.Security.AccessControl.AccessControlActions" /> values. </param> <param name="pathList"> A list of registry variables (semicolon-separated) to which access is granted. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.RegistryPermissionAccess" />. -or- The <paramref name="pathList" /> parameter is not a valid string. </exception> </member> <member name="M:System.Security.Permissions.RegistryPermission.#ctor(System.Security.Permissions.RegistryPermissionAccess,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.RegistryPermission" /> class with the specified access to the specified registry variables. </summary> <param name="access"> One of the <see cref="T:System.Security.Permissions.RegistryPermissionAccess" /> values. </param> <param name="pathList"> A list of registry variables (semicolon-separated) to which access is granted. </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.RegistryPermissionAccess" />. -or- The <paramref name="pathList" /> parameter is not a valid string. </exception> </member> <member name="M:System.Security.Permissions.RegistryPermission.AddPathList(System.Security.Permissions.RegistryPermissionAccess,System.Security.AccessControl.AccessControlActions,System.String)"> <summary> Adds access for the specified registry variables to the existing state of the permission, specifying registry permission access and access control actions. </summary> <param name="access"> One of the <see cref="T:System.Security.Permissions.RegistryPermissionAccess" /> values. </param> <param name="control"> One of the <see cref="T:System.Security.AccessControl.AccessControlActions" /> values. </param> <param name="pathList"> A list of registry variables (separated by semicolons). </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.RegistryPermissionAccess" />. -or- The <paramref name="pathList" /> parameter is not a valid string. </exception> </member> <member name="M:System.Security.Permissions.RegistryPermission.AddPathList(System.Security.Permissions.RegistryPermissionAccess,System.String)"> <summary> Adds access for the specified registry variables to the existing state of the permission. </summary> <param name="access"> One of the <see cref="T:System.Security.Permissions.RegistryPermissionAccess" /> values. </param> <param name="pathList"> A list of registry variables (semicolon-separated). </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.RegistryPermissionAccess" />. -or- The <paramref name="pathList" /> parameter is not a valid string. </exception> </member> <member name="M:System.Security.Permissions.RegistryPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.RegistryPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not valid. </exception> </member> <member name="M:System.Security.Permissions.RegistryPermission.GetPathList(System.Security.Permissions.RegistryPermissionAccess)"> <summary> Gets paths for all registry variables with the specified <see cref="T:System.Security.Permissions.RegistryPermissionAccess" />. </summary> <returns> A list of the registry variables (semicolon-separated) with the specified <see cref="T:System.Security.Permissions.RegistryPermissionAccess" />. </returns> <param name="access"> One of the <see cref="T:System.Security.Permissions.RegistryPermissionAccess" /> values that represents a single type of registry variable access. </param> <exception cref="T:System.ArgumentException"> <paramref name="access" /> is not a valid value of <see cref="T:System.Security.Permissions.RegistryPermissionAccess" />. -or- <paramref name="access" /> is <see cref="F:System.Security.Permissions.RegistryPermissionAccess.AllAccess" />, which represents more than one type of registry variable access, or <see cref="F:System.Security.Permissions.RegistryPermissionAccess.NoAccess" />, which does not represent any type of registry variable access. </exception> </member> <member name="M:System.Security.Permissions.RegistryPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.RegistryPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.RegistryPermission.IsUnrestricted"> <summary> Returns a value indicating whether the current permission is unrestricted. </summary> <returns>true if the current permission is unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.RegistryPermission.SetPathList(System.Security.Permissions.RegistryPermissionAccess,System.String)"> <summary> Sets new access for the specified registry variable names to the existing state of the permission. </summary> <param name="access"> One of the <see cref="T:System.Security.Permissions.RegistryPermissionAccess" /> values. </param> <param name="pathList"> A list of registry variables (semicolon-separated). </param> <exception cref="T:System.ArgumentException"> The <paramref name="access" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.RegistryPermissionAccess" />. -or- The <paramref name="pathList" /> parameter is not a valid string. </exception> </member> <member name="M:System.Security.Permissions.RegistryPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.RegistryPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="other"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="other" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="T:System.Security.Permissions.RegistryPermissionAccess"> <summary> Specifies the permitted access to registry keys and values. </summary> </member> <member name="F:System.Security.Permissions.RegistryPermissionAccess.NoAccess"> <summary> No access to registry variables. <see cref="F:System.Security.Permissions.RegistryPermissionAccess.NoAccess" /> represents no valid <see cref="T:System.Security.Permissions.RegistryPermissionAccess" /> values and causes an <see cref="T:System.ArgumentException" /> when used as the parameter for <see cref="M:System.Security.Permissions.RegistryPermission.GetPathList(System.Security.Permissions.RegistryPermissionAccess)" />, which expects a single value. </summary> </member> <member name="F:System.Security.Permissions.RegistryPermissionAccess.Read"> <summary> Read access to registry variables. </summary> </member> <member name="F:System.Security.Permissions.RegistryPermissionAccess.Write"> <summary> Write access to registry variables. </summary> </member> <member name="F:System.Security.Permissions.RegistryPermissionAccess.Create"> <summary> Create access to registry variables. </summary> </member> <member name="F:System.Security.Permissions.RegistryPermissionAccess.AllAccess"> <summary> <see cref="F:System.Security.Permissions.RegistryPermissionAccess.Create" />, <see cref="F:System.Security.Permissions.RegistryPermissionAccess.Read" />, and <see cref="F:System.Security.Permissions.RegistryPermissionAccess.Write" /> access to registry variables. <see cref="F:System.Security.Permissions.RegistryPermissionAccess.AllAccess" /> represents multiple <see cref="T:System.Security.Permissions.RegistryPermissionAccess" /> values and causes an <see cref="T:System.ArgumentException" /> when used as the <paramref name="access" /> parameter for the <see cref="M:System.Security.Permissions.RegistryPermission.GetPathList(System.Security.Permissions.RegistryPermissionAccess)" /> method, which expects a single value. </summary> </member> <member name="T:System.Security.Permissions.RegistryPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.RegistryPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.RegistryPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.RegistryPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="action" /> parameter is not a valid <see cref="T:System.Security.Permissions.SecurityAction" />. </exception> </member> <member name="P:System.Security.Permissions.RegistryPermissionAttribute.All"> <summary> Gets or sets full access for the specified registry keys. </summary> <returns> A semicolon-separated list of registry key paths, for full access. </returns> <exception cref="T:System.NotSupportedException"> The get accessor is called; it is only provided for C# compiler compatibility. </exception> </member> <member name="P:System.Security.Permissions.RegistryPermissionAttribute.ChangeAccessControl"> <summary> Gets or sets change access control for the specified registry keys. </summary> <returns> A semicolon-separated list of registry key paths, for change access control. . </returns> </member> <member name="P:System.Security.Permissions.RegistryPermissionAttribute.Create"> <summary> Gets or sets create-level access for the specified registry keys. </summary> <returns> A semicolon-separated list of registry key paths, for create-level access. </returns> </member> <member name="M:System.Security.Permissions.RegistryPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.RegistryPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.RegistryPermission" /> that corresponds to this attribute. </returns> </member> <member name="P:System.Security.Permissions.RegistryPermissionAttribute.Read"> <summary> Gets or sets read access for the specified registry keys. </summary> <returns> A semicolon-separated list of registry key paths, for read access. </returns> </member> <member name="P:System.Security.Permissions.RegistryPermissionAttribute.ViewAccessControl"> <summary> Gets or sets view access control for the specified registry keys. </summary> <returns> A semicolon-separated list of registry key paths, for view access control. </returns> </member> <member name="P:System.Security.Permissions.RegistryPermissionAttribute.ViewAndModify"> <summary> Gets or sets a specified set of registry keys that can be viewed and modified. </summary> <returns> A semicolon-separated list of registry key paths, for create, read, and write access. </returns> <exception cref="T:System.NotSupportedException"> The get accessor is called; it is only provided for C# compiler compatibility. </exception> </member> <member name="P:System.Security.Permissions.RegistryPermissionAttribute.Write"> <summary> Gets or sets write access for the specified registry keys. </summary> <returns> A semicolon-separated list of registry key paths, for write access. </returns> </member> <member name="T:System.Security.Permissions.SecurityAction"> <summary> Specifies the security actions that can be performed using declarative security. </summary> </member> <member name="F:System.Security.Permissions.SecurityAction.Demand"> <summary> All callers higher in the call stack are required to have been granted the permission specified by the current permission object (see Security Demands). </summary> </member> <member name="F:System.Security.Permissions.SecurityAction.Assert"> <summary> The calling code can access the resource identified by the current permission object, even if callers higher in the stack have not been granted permission to access the resource (see Using the Assert Method). </summary> </member> <member name="F:System.Security.Permissions.SecurityAction.Deny"> <summary> The ability to access the resource specified by the current permission object is denied to callers, even if they have been granted permission to access it (see Using the Deny Method). </summary> </member> <member name="F:System.Security.Permissions.SecurityAction.PermitOnly"> <summary> Only the resources specified by this permission object can be accessed, even if the code has been granted permission to access other resources (see Using the PermitOnly Method). </summary> </member> <member name="F:System.Security.Permissions.SecurityAction.LinkDemand"> <summary> The immediate caller is required to have been granted the specified permission. </summary> </member> <member name="F:System.Security.Permissions.SecurityAction.InheritanceDemand"> <summary> The derived class inheriting the class or overriding a method is required to have been granted the specified permission. For more information, see Inheritance Demands. </summary> </member> <member name="F:System.Security.Permissions.SecurityAction.RequestMinimum"> <summary> The request for the minimum permissions required for code to run. This action can only be used within the scope of the assembly. </summary> </member> <member name="F:System.Security.Permissions.SecurityAction.RequestOptional"> <summary> The request for additional permissions that are optional (not required to run). This request implicitly refuses all other permissions not specifically requested. This action can only be used within the scope of the assembly. </summary> </member> <member name="F:System.Security.Permissions.SecurityAction.RequestRefuse"> <summary> The request that permissions that might be misused will not be granted to the calling code. This action can only be used within the scope of the assembly. </summary> </member> <member name="T:System.Security.Permissions.SecurityAttribute"> <summary> Specifies the base attribute class for declarative security from which <see cref="T:System.Security.Permissions.CodeAccessSecurityAttribute" /> is derived. </summary> </member> <member name="M:System.Security.Permissions.SecurityAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of <see cref="T:System.Security.Permissions.SecurityAttribute" /> with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="P:System.Security.Permissions.SecurityAttribute.Action"> <summary> Gets or sets a security action. </summary> <returns> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </returns> </member> <member name="M:System.Security.Permissions.SecurityAttribute.CreatePermission"> <summary> When overridden in a derived class, creates a permission object that can then be serialized into binary form and persistently stored along with the <see cref="T:System.Security.Permissions.SecurityAction" /> in an assembly's metadata. </summary> <returns> A serializable permission object. </returns> </member> <member name="P:System.Security.Permissions.SecurityAttribute.Unrestricted"> <summary> Gets or sets a value indicating whether full (unrestricted) permission to the resource protected by the attribute is declared. </summary> <returns>true if full permission to the protected resource is declared; otherwise, false. </returns> </member> <member name="T:System.Security.Permissions.SecurityPermission"> <summary> Describes a set of security permissions applied to code. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.SecurityPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.SecurityPermission" /> class with either restricted or unrestricted permission as specified. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.SecurityPermission.#ctor(System.Security.Permissions.SecurityPermissionFlag)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.SecurityPermission" /> class with the specified initial set state of the flags. </summary> <param name="flag"> The initial state of the permission, represented by a bitwise OR combination of any permission bits defined by <see cref="T:System.Security.Permissions.SecurityPermissionFlag" />. </param> <exception cref="T:System.ArgumentException"> The <paramref name="flag" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.SecurityPermissionFlag" />. </exception> </member> <member name="M:System.Security.Permissions.SecurityPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermission.Flags"> <summary> Gets or sets the security permission flags. </summary> <returns> The state of the current permission, represented by a bitwise OR combination of any permission bits defined by <see cref="T:System.Security.Permissions.SecurityPermissionFlag" />. </returns> <exception cref="T:System.ArgumentException"> An attempt is made to set this property to an invalid value. See <see cref="T:System.Security.Permissions.SecurityPermissionFlag" /> for the valid values. </exception> </member> <member name="M:System.Security.Permissions.SecurityPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not supported. </exception> </member> <member name="M:System.Security.Permissions.SecurityPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission object that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.SecurityPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.SecurityPermission.IsUnrestricted"> <summary> Returns a value indicating whether the current permission is unrestricted. </summary> <returns>true if the current permission is unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.SecurityPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.SecurityPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="T:System.Security.Permissions.SecurityPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.SecurityPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.SecurityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.SecurityPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.Assertion"> <summary> Gets or sets a value indicating whether permission to assert that all this code's callers have the requisite permission for the operation is declared. </summary> <returns>true if permission to assert is declared; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.BindingRedirects"> <summary> Gets or sets a value that indicates whether code has permission to perform binding redirection in the application configuration file. </summary> <returns>true if code can perform binding redirects; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlAppDomain"> <summary> Gets or sets a value indicating whether permission to manipulate <see cref="T:System.AppDomain" /> is declared. </summary> <returns>true if permission to manipulate <see cref="T:System.AppDomain" /> is declared; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlDomainPolicy"> <summary> Gets or sets a value indicating whether permission to alter or manipulate domain security policy is declared. </summary> <returns>true if permission to alter or manipulate security policy in an application domain is declared; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlEvidence"> <summary> Gets or sets a value indicating whether permission to alter or manipulate evidence is declared. </summary> <returns>true if the ability to alter or manipulate evidence is declared; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlPolicy"> <summary> Gets or sets a value indicating whether permission to view and manipulate security policy is declared. </summary> <returns>true if permission to manipulate security policy is declared; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlPrincipal"> <summary> Gets or sets a value indicating whether permission to manipulate the current principal is declared. </summary> <returns>true if permission to manipulate the current principal is declared; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlThread"> <summary> Gets or sets a value indicating whether permission to manipulate threads is declared. </summary> <returns>true if permission to manipulate threads is declared; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.SecurityPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.SecurityPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.SecurityPermission" /> that corresponds to this attribute. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.Execution"> <summary> Gets or sets a value indicating whether permission to execute code is declared. </summary> <returns>true if permission to execute code is declared; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.Flags"> <summary> Gets or sets all permission flags comprising the <see cref="T:System.Security.Permissions.SecurityPermission" /> permissions. </summary> <returns> One or more of the <see cref="T:System.Security.Permissions.SecurityPermissionFlag" /> values combined using a bitwise OR. </returns> <exception cref="T:System.ArgumentException"> An attempt is made to set this property to an invalid value. See <see cref="T:System.Security.Permissions.SecurityPermissionFlag" /> for the valid values. </exception> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.Infrastructure"> <summary> Gets or sets a value indicating whether code can plug into the common language runtime infrastructure, such as adding Remoting Context Sinks, Envoy Sinks and Dynamic Sinks. </summary> <returns>true if code can plug into the common language runtime infrastructure; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.RemotingConfiguration"> <summary> Gets or sets a value indicating whether code can configure remoting types and channels. </summary> <returns>true if code can configure remoting types and channels; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.SerializationFormatter"> <summary> Gets or sets a value indicating whether code can use a serialization formatter to serialize or deserialize an object. </summary> <returns>true if code can use a serialization formatter to serialize or deserialize an object; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.SkipVerification"> <summary> Gets or sets a value indicating whether permission to bypass code verification is declared. </summary> <returns>true if permission to bypass code verification is declared; otherwise, false. </returns> </member> <member name="P:System.Security.Permissions.SecurityPermissionAttribute.UnmanagedCode"> <summary> Gets or sets a value indicating whether permission to call unmanaged code is declared. </summary> <returns>true if permission to call unmanaged code is declared; otherwise, false. </returns> </member> <member name="T:System.Security.Permissions.SecurityPermissionFlag"> <summary> Specifies access flags for the security permission object. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.NoFlags"> <summary> No security access. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.Assertion"> <summary> Ability to assert that all this code's callers have the requisite permission for the operation. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode"> <summary> Ability to call unmanaged code. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.SkipVerification"> <summary> Ability to skip verification of code in this assembly. Code that is unverifiable can be run if this permission is granted. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.Execution"> <summary> Permission for the code to run. Without this permission, managed code will not be executed. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlThread"> <summary> Ability to use certain advanced operations on threads. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlEvidence"> <summary> Ability to provide evidence, including the ability to alter the evidence provided by the common language runtime. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlPolicy"> <summary> Ability to view and modify policy. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter"> <summary> Ability to provide serialization services. Used by serialization formatters. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlDomainPolicy"> <summary> Ability to specify domain policy. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlPrincipal"> <summary> Ability to manipulate the principal object. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlAppDomain"> <summary> Ability to create and manipulate an <see cref="T:System.AppDomain" />. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.RemotingConfiguration"> <summary> Permission to configure Remoting types and channels. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.Infrastructure"> <summary> Permission to plug code into the common language runtime infrastructure, such as adding Remoting Context Sinks, Envoy Sinks and Dynamic Sinks. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.BindingRedirects"> <summary> Permission to perform explicit binding redirection in the application configuration file. This includes redirection of .NET Framework assemblies that have been unified as well as other assemblies found outside the .NET Framework. </summary> </member> <member name="F:System.Security.Permissions.SecurityPermissionFlag.AllFlags"> <summary> The unrestricted state of the permission. </summary> </member> <member name="T:System.Security.Permissions.SiteIdentityPermission"> <summary> Defines the identity permission for the Web site from which the code originates. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.SiteIdentityPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.SiteIdentityPermission" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" />. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.SiteIdentityPermission.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.SiteIdentityPermission" /> class to represent the specified site identity. </summary> <param name="site"> The site name or wildcard expression. </param> <exception cref="T:System.ArgumentException"> The <paramref name="site" /> parameter is not a valid string, or does not match a valid wildcard site name. </exception> </member> <member name="M:System.Security.Permissions.SiteIdentityPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.SiteIdentityPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not valid. </exception> </member> <member name="M:System.Security.Permissions.SiteIdentityPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.SiteIdentityPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="P:System.Security.Permissions.SiteIdentityPermission.Site"> <summary> Gets or sets the current site. </summary> <returns> The current site. </returns> <exception cref="T:System.NotSupportedException"> The site identity cannot be retrieved because it has an ambiguous identity. </exception> </member> <member name="M:System.Security.Permissions.SiteIdentityPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.SiteIdentityPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. -or- The permissions are not equal and one is not a subset of the other. </exception> </member> <member name="T:System.Security.Permissions.SiteIdentityPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.SiteIdentityPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.SiteIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.SiteIdentityPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="M:System.Security.Permissions.SiteIdentityPermissionAttribute.CreatePermission"> <summary> Creates and returns a new instance of <see cref="T:System.Security.Permissions.SiteIdentityPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.SiteIdentityPermission" /> that corresponds to this attribute. </returns> </member> <member name="P:System.Security.Permissions.SiteIdentityPermissionAttribute.Site"> <summary> Gets or sets the site name of the calling code. </summary> <returns> The site name to compare against the site name specified by the security provider. </returns> </member> <member name="T:System.Security.Permissions.StrongNameIdentityPermission"> <summary> Defines the identity permission for strong names. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.StrongNameIdentityPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.StrongNameIdentityPermission" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" />. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.StrongNameIdentityPermission.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.StrongNameIdentityPermission" /> class for the specified strong name identity. </summary> <param name="blob"> The public key defining the strong name identity namespace. </param> <param name="name"> The simple name part of the strong name identity. This corresponds to the name of the assembly. </param> <param name="version"> The version number of the identity. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="blob" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is an empty string (""). </exception> </member> <member name="M:System.Security.Permissions.StrongNameIdentityPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.StrongNameIdentityPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid permission element. -or- The <paramref name="e" /> parameter's version number is not valid. </exception> </member> <member name="M:System.Security.Permissions.StrongNameIdentityPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission, or null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.StrongNameIdentityPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="P:System.Security.Permissions.StrongNameIdentityPermission.Name"> <summary> Gets or sets the simple name portion of the strong name identity. </summary> <returns> The simple name of the identity. </returns> <exception cref="T:System.ArgumentException"> The value is an empty string (""). </exception> <exception cref="T:System.NotSupportedException"> The property value cannot be retrieved because it contains an ambiguous identity. </exception> </member> <member name="P:System.Security.Permissions.StrongNameIdentityPermission.PublicKey"> <summary> Gets or sets the public key blob that defines the strong name identity namespace. </summary> <returns> A <see cref="T:System.Security.Permissions.StrongNamePublicKeyBlob" /> that contains the public key of the identity, or null if there is no key. </returns> <exception cref="T:System.ArgumentNullException"> The property value is set to null. </exception> <exception cref="T:System.NotSupportedException"> The property value cannot be retrieved because it contains an ambiguous identity. </exception> </member> <member name="M:System.Security.Permissions.StrongNameIdentityPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.StrongNameIdentityPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. -or- The two permissions are not equal and one is a subset of the other. </exception> </member> <member name="P:System.Security.Permissions.StrongNameIdentityPermission.Version"> <summary> Gets or sets the version number of the identity. </summary> <returns> The version of the identity. </returns> <exception cref="T:System.NotSupportedException"> The property value cannot be retrieved because it contains an ambiguous identity. </exception> </member> <member name="T:System.Security.Permissions.StrongNameIdentityPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.StrongNameIdentityPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.StrongNameIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.StrongNameIdentityPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="M:System.Security.Permissions.StrongNameIdentityPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.StrongNameIdentityPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.StrongNameIdentityPermission" /> that corresponds to this attribute. </returns> <exception cref="T:System.ArgumentException"> The method failed because the key is null. </exception> </member> <member name="P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.Name"> <summary> Gets or sets the name of the strong name identity. </summary> <returns> A name to compare against the name specified by the security provider. </returns> </member> <member name="P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.PublicKey"> <summary> Gets or sets the public key value of the strong name identity expressed as a hexadecimal string. </summary> <returns> The public key value of the strong name identity expressed as a hexadecimal string. </returns> </member> <member name="P:System.Security.Permissions.StrongNameIdentityPermissionAttribute.Version"> <summary> Gets or sets the version of the strong name identity. </summary> <returns> The version number of the strong name identity. </returns> </member> <member name="T:System.Security.Permissions.StrongNamePublicKeyBlob"> <summary> Represents the public key information (called a blob) for a strong name. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.StrongNamePublicKeyBlob.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.StrongNamePublicKeyBlob" /> class with raw bytes of the public key blob. </summary> <param name="publicKey"> The array of bytes representing the raw public key data. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="publicKey" /> parameter is null. </exception> </member> <member name="M:System.Security.Permissions.StrongNamePublicKeyBlob.Equals(System.Object)"> <summary> Gets or sets a value indicating whether the current public key blob is equal to the specified public key blob. </summary> <returns>true if the public key blob of the current object is equal to the public key blob of the <paramref name="obj" /> parameter; otherwise, false. </returns> <param name="obj"> An object containing a public key blob. </param> </member> <member name="M:System.Security.Permissions.StrongNamePublicKeyBlob.GetHashCode"> <summary> Returns a hash code based on the public key. </summary> <returns> The hash code based on the public key. </returns> </member> <member name="M:System.Security.Permissions.StrongNamePublicKeyBlob.ToString"> <summary> Creates and returns a string representation of the public key blob. </summary> <returns> A hexadecimal version of the public key blob. </returns> </member> <member name="T:System.Security.Permissions.UIPermission"> <summary> Controls the permissions related to user interfaces and the clipboard. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.UIPermission" /> class with either fully restricted or unrestricted access, as specified. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionClipboard)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.UIPermission" /> class with the permissions for the clipboard, and no access to windows. </summary> <param name="clipboardFlag"> One of the <see cref="T:System.Security.Permissions.UIPermissionClipboard" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="clipboardFlag" /> parameter is not a valid <see cref="T:System.Security.Permissions.UIPermissionClipboard" /> value. </exception> </member> <member name="M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionWindow)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.UIPermission" /> class with the permissions for windows, and no access to the clipboard. </summary> <param name="windowFlag"> One of the <see cref="T:System.Security.Permissions.UIPermissionWindow" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="windowFlag" /> parameter is not a valid <see cref="T:System.Security.Permissions.UIPermissionWindow" /> value. </exception> </member> <member name="M:System.Security.Permissions.UIPermission.#ctor(System.Security.Permissions.UIPermissionWindow,System.Security.Permissions.UIPermissionClipboard)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.UIPermission" /> class with the specified permissions for windows and the clipboard. </summary> <param name="windowFlag"> One of the <see cref="T:System.Security.Permissions.UIPermissionWindow" /> values. </param> <param name="clipboardFlag"> One of the <see cref="T:System.Security.Permissions.UIPermissionClipboard" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="windowFlag" /> parameter is not a valid <see cref="T:System.Security.Permissions.UIPermissionWindow" /> value. -or- The <paramref name="clipboardFlag" /> parameter is not a valid <see cref="T:System.Security.Permissions.UIPermissionClipboard" /> value. </exception> </member> <member name="P:System.Security.Permissions.UIPermission.Clipboard"> <summary> Gets or sets the clipboard access represented by the permission. </summary> <returns> One of the <see cref="T:System.Security.Permissions.UIPermissionClipboard" /> values. </returns> </member> <member name="M:System.Security.Permissions.UIPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.UIPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding used to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not valid. </exception> </member> <member name="M:System.Security.Permissions.UIPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.UIPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission to test for the subset relationship. This permission must be the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.UIPermission.IsUnrestricted"> <summary> Returns a value indicating whether the current permission is unrestricted. </summary> <returns>true if the current permission is unrestricted; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.UIPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.UIPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="P:System.Security.Permissions.UIPermission.Window"> <summary> Gets or sets the window access represented by the permission. </summary> <returns> One of the <see cref="T:System.Security.Permissions.UIPermissionWindow" /> values. </returns> </member> <member name="T:System.Security.Permissions.UIPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.UIPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.UIPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.UIPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="P:System.Security.Permissions.UIPermissionAttribute.Clipboard"> <summary> Gets or sets the type of access to the clipboard that is permitted. </summary> <returns> One of the <see cref="T:System.Security.Permissions.UIPermissionClipboard" /> values. </returns> </member> <member name="M:System.Security.Permissions.UIPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.UIPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.UIPermission" /> that corresponds to this attribute. </returns> </member> <member name="P:System.Security.Permissions.UIPermissionAttribute.Window"> <summary> Gets or sets the type of access to the window resources that is permitted. </summary> <returns> One of the <see cref="T:System.Security.Permissions.UIPermissionWindow" /> values. </returns> </member> <member name="T:System.Security.Permissions.UIPermissionClipboard"> <summary> Specifies the type of clipboard access that is allowed to the calling code. </summary> </member> <member name="F:System.Security.Permissions.UIPermissionClipboard.NoClipboard"> <summary> Clipboard cannot be used. </summary> </member> <member name="F:System.Security.Permissions.UIPermissionClipboard.OwnClipboard"> <summary> The ability to put data on the clipboard (Copy, Cut) is unrestricted. Intrinsic controls that accept Paste, such as text box, can accept the clipboard data, but user controls that must programmatically read the clipboard cannot. </summary> </member> <member name="F:System.Security.Permissions.UIPermissionClipboard.AllClipboard"> <summary> Clipboard can be used without restriction. </summary> </member> <member name="T:System.Security.Permissions.UIPermissionWindow"> <summary> Specifies the type of windows that code is allowed to use. </summary> </member> <member name="F:System.Security.Permissions.UIPermissionWindow.NoWindows"> <summary> Users cannot use any windows or user interface events. No user interface can be used. </summary> </member> <member name="F:System.Security.Permissions.UIPermissionWindow.SafeSubWindows"> <summary> Users can only use <see cref="F:System.Security.Permissions.UIPermissionWindow.SafeSubWindows" /> for drawing, and can only use user input events for user interface within that subwindow. Examples of <see cref="F:System.Security.Permissions.UIPermissionWindow.SafeSubWindows" /> are a <see cref="T:System.Windows.Forms.MessageBox" />, common dialog controls, and a control displayed within a browser. </summary> </member> <member name="F:System.Security.Permissions.UIPermissionWindow.SafeTopLevelWindows"> <summary> Users can only use <see cref="F:System.Security.Permissions.UIPermissionWindow.SafeTopLevelWindows" /> and <see cref="F:System.Security.Permissions.UIPermissionWindow.SafeSubWindows" /> for drawing, and can only use user input events for the user interface within those top-level windows and subwindows. </summary> </member> <member name="F:System.Security.Permissions.UIPermissionWindow.AllWindows"> <summary> Users can use all windows and user input events without restriction. </summary> </member> <member name="T:System.Security.Permissions.UrlIdentityPermission"> <summary> Defines the identity permission for the URL from which the code originates. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.UrlIdentityPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.UrlIdentityPermission" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" />. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.UrlIdentityPermission.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.UrlIdentityPermission" /> class to represent the URL identity described by <paramref name="site" />. </summary> <param name="site"> A URL or wildcard expression. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="site" /> parameter is null. </exception> <exception cref="T:System.FormatException"> The length of the <paramref name="site" /> parameter is zero. </exception> <exception cref="T:System.ArgumentException"> The URL, directory, or site portion of the <paramref name="site" /> parameter is not valid. </exception> </member> <member name="M:System.Security.Permissions.UrlIdentityPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.UrlIdentityPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not valid. </exception> </member> <member name="M:System.Security.Permissions.UrlIdentityPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. -or- The Url property is not a valid URL. </exception> </member> <member name="M:System.Security.Permissions.UrlIdentityPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. -or- The Url property is not a valid URL. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Permissions.UrlIdentityPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.UrlIdentityPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. -or- The <see cref="P:System.Security.Permissions.UrlIdentityPermission.Url" /> property is not a valid URL. -or- The two permissions are not equal and one is not a subset of the other. </exception> </member> <member name="P:System.Security.Permissions.UrlIdentityPermission.Url"> <summary> Gets or sets a URL representing the identity of Internet code. </summary> <returns> A URL representing the identity of Internet code. </returns> <exception cref="T:System.NotSupportedException"> The URL cannot be retrieved because it has an ambiguous identity. </exception> </member> <member name="T:System.Security.Permissions.UrlIdentityPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.UrlIdentityPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.UrlIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.UrlIdentityPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="M:System.Security.Permissions.UrlIdentityPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.UrlIdentityPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.UrlIdentityPermission" /> that corresponds to this attribute. </returns> </member> <member name="P:System.Security.Permissions.UrlIdentityPermissionAttribute.Url"> <summary> Gets or sets the full URL of the calling code. </summary> <returns> The URL to match with the URL specified by the host. </returns> </member> <member name="T:System.Security.Permissions.ZoneIdentityPermission"> <summary> Defines the identity permission for the zone from which the code originates. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.ZoneIdentityPermission.#ctor(System.Security.Permissions.PermissionState)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.ZoneIdentityPermission" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" />. </summary> <param name="state"> One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param> <exception cref="T:System.ArgumentException"> The <paramref name="state" /> parameter is not a valid value of <see cref="T:System.Security.Permissions.PermissionState" />. </exception> </member> <member name="M:System.Security.Permissions.ZoneIdentityPermission.#ctor(System.Security.SecurityZone)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.ZoneIdentityPermission" /> class to represent the specified zone identity. </summary> <param name="zone"> The zone identifier. </param> </member> <member name="M:System.Security.Permissions.ZoneIdentityPermission.Copy"> <summary> Creates and returns an identical copy of the current permission. </summary> <returns> A copy of the current permission. </returns> </member> <member name="M:System.Security.Permissions.ZoneIdentityPermission.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a permission with a specified state from an XML encoding. </summary> <param name="esd"> The XML encoding to use to reconstruct the permission. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="esd" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="esd" /> parameter is not a valid permission element. -or- The <paramref name="esd" /> parameter's version number is not valid. </exception> </member> <member name="M:System.Security.Permissions.ZoneIdentityPermission.Intersect(System.Security.IPermission)"> <summary> Creates and returns a permission that is the intersection of the current permission and the specified permission. </summary> <returns> A new permission that represents the intersection of the current permission and the specified permission. This new permission is null if the intersection is empty. </returns> <param name="target"> A permission to intersect with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. </exception> </member> <member name="M:System.Security.Permissions.ZoneIdentityPermission.IsSubsetOf(System.Security.IPermission)"> <summary> Determines whether the current permission is a subset of the specified permission. </summary> <returns>true if the current permission is a subset of the specified permission; otherwise, false. </returns> <param name="target"> A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null, this permission does not represent the <see cref="F:System.Security.SecurityZone.NoZone" /> security zone, and the specified permission is not equal to the current permission. </exception> </member> <member name="P:System.Security.Permissions.ZoneIdentityPermission.SecurityZone"> <summary> Gets or sets the zone represented by the current <see cref="T:System.Security.Permissions.ZoneIdentityPermission" />. </summary> <returns> One of the <see cref="T:System.Security.SecurityZone" /> values. </returns> <exception cref="T:System.ArgumentException"> The parameter value is not a valid value of <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="M:System.Security.Permissions.ZoneIdentityPermission.ToXml"> <summary> Creates an XML encoding of the permission and its current state. </summary> <returns> An XML encoding of the permission, including any state information. </returns> </member> <member name="M:System.Security.Permissions.ZoneIdentityPermission.Union(System.Security.IPermission)"> <summary> Creates a permission that is the union of the current permission and the specified permission. </summary> <returns> A new permission that represents the union of the current permission and the specified permission. </returns> <param name="target"> A permission to combine with the current permission. It must be of the same type as the current permission. </param> <exception cref="T:System.ArgumentException"> The <paramref name="target" /> parameter is not null and is not of the same type as the current permission. -or- The two permissions are not equal and the current permission does not represent the <see cref="F:System.Security.SecurityZone.NoZone" /> security zone. </exception> </member> <member name="T:System.Security.Permissions.ZoneIdentityPermissionAttribute"> <summary> Allows security actions for <see cref="T:System.Security.Permissions.ZoneIdentityPermission" /> to be applied to code using declarative security. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Permissions.ZoneIdentityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Permissions.ZoneIdentityPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />. </summary> <param name="action"> One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param> </member> <member name="M:System.Security.Permissions.ZoneIdentityPermissionAttribute.CreatePermission"> <summary> Creates and returns a new <see cref="T:System.Security.Permissions.ZoneIdentityPermission" />. </summary> <returns> A <see cref="T:System.Security.Permissions.ZoneIdentityPermission" /> that corresponds to this attribute. </returns> </member> <member name="P:System.Security.Permissions.ZoneIdentityPermissionAttribute.Zone"> <summary> Gets or sets membership in the content zone specified by the property value. </summary> <returns> One of the <see cref="T:System.Security.SecurityZone" /> values. </returns> </member> <member name="P:System.Security.Permissions.ReflectionPermissionAttribute.RestrictedMemberAccess"> <summary> Gets or sets a value that indicates whether restricted invocation of non-public members is allowed. Restricted invocation means that the grant set of the assembly that contains the non-public member that is being invoked must be equal to, or a subset of, the grant set of the invoking assembly. </summary> <returns>true if restricted invocation of non-public members is allowed; otherwise, false. </returns> </member> <member name="M:System.Security.Permissions.FileDialogPermission.ToString"> <summary> Creates a string representation of the current permission. </summary> <returns> A string representation of the current permission. </returns> </member> <member name="T:System.Security.Policy.AllMembershipCondition"> <summary> Represents a membership condition that matches all code. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.AllMembershipCondition.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.AllMembershipCondition" /> class. </summary> </member> <member name="M:System.Security.Policy.AllMembershipCondition.Check(System.Security.Policy.Evidence)"> <summary> Determines whether the specified evidence satisfies the membership condition. </summary> <returns> Always true. </returns> <param name="evidence"> The evidence set against which to make the test. </param> </member> <member name="M:System.Security.Policy.AllMembershipCondition.Copy"> <summary> Creates an equivalent copy of the membership condition. </summary> <returns> A new, identical copy of the current membership condition. </returns> </member> <member name="M:System.Security.Policy.AllMembershipCondition.Equals(System.Object)"> <summary> Determines whether the specified membership condition is an <see cref="T:System.Security.Policy.AllMembershipCondition" />. </summary> <returns>true if the specified membership condition is an <see cref="T:System.Security.Policy.AllMembershipCondition" />; otherwise, false. </returns> <param name="o"> The object to compare to <see cref="T:System.Security.Policy.AllMembershipCondition" />. </param> </member> <member name="M:System.Security.Policy.AllMembershipCondition.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> </member> <member name="M:System.Security.Policy.AllMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The policy level context used to resolve named permission set references. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.AllMembershipCondition.GetHashCode"> <summary> Gets the hash code for the current membership condition. </summary> <returns> The hash code for the current membership condition. </returns> </member> <member name="M:System.Security.Policy.AllMembershipCondition.ToString"> <summary> Creates and returns a string representation of the membership condition. </summary> <returns> A representation of the membership condition. </returns> </member> <member name="M:System.Security.Policy.AllMembershipCondition.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> </member> <member name="M:System.Security.Policy.AllMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state with the specified <see cref="T:System.Security.Policy.PolicyLevel" />. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <param name="level"> The policy level context for resolving named permission set references. </param> </member> <member name="T:System.Security.Policy.ApplicationDirectory"> <summary> Provides the application directory as evidence for policy evaluation. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.ApplicationDirectory.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.ApplicationDirectory" /> class. </summary> <param name="name"> The path of the application directory. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Security.Policy.ApplicationDirectory.Copy"> <summary> Creates a new copy of the <see cref="T:System.Security.Policy.ApplicationDirectory" />. </summary> <returns> A new, identical copy of the <see cref="T:System.Security.Policy.ApplicationDirectory" />. </returns> </member> <member name="P:System.Security.Policy.ApplicationDirectory.Directory"> <summary> Gets the path of the application directory. </summary> <returns> The path of the application directory. </returns> </member> <member name="M:System.Security.Policy.ApplicationDirectory.Equals(System.Object)"> <summary> Determines whether instances of the same type of an evidence object are equivalent. </summary> <returns>true if the two instances are equivalent; otherwise, false. </returns> <param name="o"> An object of same type as the current evidence object. </param> </member> <member name="M:System.Security.Policy.ApplicationDirectory.GetHashCode"> <summary> Gets the hash code of the current application directory. </summary> <returns> The hash code of the current application directory. </returns> </member> <member name="M:System.Security.Policy.ApplicationDirectory.ToString"> <summary> Gets a string representation of the state of the <see cref="T:System.Security.Policy.ApplicationDirectory" /> evidence object. </summary> <returns> A representation of the state of the <see cref="T:System.Security.Policy.ApplicationDirectory" /> evidence object. </returns> </member> <member name="T:System.Security.Policy.ApplicationDirectoryMembershipCondition"> <summary> Determines whether an assembly belongs to a code group by testing its application directory. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.ApplicationDirectoryMembershipCondition.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.ApplicationDirectoryMembershipCondition" /> class. </summary> </member> <member name="M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Check(System.Security.Policy.Evidence)"> <summary> Determines whether the membership condition is satisfied by the specified evidence. </summary> <returns>true if the specified evidence satisfies the membership condition; otherwise, false. </returns> <param name="evidence"> The evidence set against which to make the test. </param> </member> <member name="M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Copy"> <summary> Creates an equivalent copy of the membership condition. </summary> <returns> A new, identical copy of the current membership condition. </returns> </member> <member name="M:System.Security.Policy.ApplicationDirectoryMembershipCondition.Equals(System.Object)"> <summary> Determines whether the specified membership condition is an <see cref="T:System.Security.Policy.ApplicationDirectoryMembershipCondition" />. </summary> <returns>true if the specified membership condition is an <see cref="T:System.Security.Policy.ApplicationDirectoryMembershipCondition" />; otherwise, false. </returns> <param name="o"> The object to compare to <see cref="T:System.Security.Policy.ApplicationDirectoryMembershipCondition" />. </param> </member> <member name="M:System.Security.Policy.ApplicationDirectoryMembershipCondition.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid application directory membership condition element. </exception> </member> <member name="M:System.Security.Policy.ApplicationDirectoryMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The policy level context, used to resolve named permission set references. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid application directory membership condition element. </exception> </member> <member name="M:System.Security.Policy.ApplicationDirectoryMembershipCondition.GetHashCode"> <summary> Gets the hash code for the current membership condition. </summary> <returns> The hash code for the current membership condition. </returns> </member> <member name="M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToString"> <summary> Creates and returns a string representation of the membership condition. </summary> <returns> A string representation of the state of the membership condition. </returns> </member> <member name="M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> </member> <member name="M:System.Security.Policy.ApplicationDirectoryMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state with the specified <see cref="T:System.Security.Policy.PolicyLevel" />. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <param name="level"> The policy level context for resolving named permission set references. </param> </member> <member name="T:System.Security.Policy.ApplicationSecurityInfo"> <summary> Holds the security evidence for an application. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.ApplicationSecurityInfo.#ctor(System.ActivationContext)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.ApplicationSecurityInfo" /> class using the provided activation context. </summary> <param name="activationContext"> An <see cref="T:System.ActivationContext" /> object that uniquely identifies the target application. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="activationContext" /> is null. </exception> </member> <member name="P:System.Security.Policy.ApplicationSecurityInfo.ApplicationEvidence"> <summary> Gets or sets the evidence for the application. </summary> <returns> An <see cref="T:System.Security.Policy.Evidence" /> object for the application. </returns> <exception cref="T:System.ArgumentNullException"> <see cref="P:System.Security.Policy.ApplicationSecurityInfo.ApplicationEvidence" /> is set to null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="P:System.Security.Policy.ApplicationSecurityInfo.ApplicationId"> <summary> Gets or sets the application identity information. </summary> <returns> An <see cref="T:System.ApplicationId" /> object. </returns> <exception cref="T:System.ArgumentNullException"> <see cref="P:System.Security.Policy.ApplicationSecurityInfo.ApplicationId" /> is set to null. </exception> </member> <member name="P:System.Security.Policy.ApplicationSecurityInfo.DefaultRequestSet"> <summary> Gets or sets the default permission set. </summary> <returns> A <see cref="T:System.Security.PermissionSet" /> object representing the default permissions for the application. The default is a <see cref="T:System.Security.PermissionSet" /> with a permission state of <see cref="F:System.Security.Permissions.PermissionState.None" /></returns> <exception cref="T:System.ArgumentNullException"> <see cref="P:System.Security.Policy.ApplicationSecurityInfo.DefaultRequestSet" /> is set to null. </exception> </member> <member name="P:System.Security.Policy.ApplicationSecurityInfo.DeploymentId"> <summary> Gets or sets the top element in the application, which is described in the deployment identity. </summary> <returns> An <see cref="T:System.ApplicationId" /> object describing the top element of the application. </returns> <exception cref="T:System.ArgumentNullException"> <see cref="P:System.Security.Policy.ApplicationSecurityInfo.DeploymentId" /> is set to null. </exception> </member> <member name="T:System.Security.Policy.ApplicationSecurityManager"> <summary> Manages trust decisions for manifest activated applications. </summary> </member> <member name="P:System.Security.Policy.ApplicationSecurityManager.ApplicationTrustManager"> <summary> Gets or sets the current application trust manager. </summary> <returns> An <see cref="T:System.Security.Policy.IApplicationTrustManager" /> that represents the current trust manager. </returns> <exception cref="T:System.Security.Policy.PolicyException"> The policy on this application does not have a trust manager. </exception> </member> <member name="M:System.Security.Policy.ApplicationSecurityManager.DetermineApplicationTrust(System.ActivationContext,System.Security.Policy.TrustManagerContext)"> <summary> Determines whether the user approves the specified application to execute with the requested permission set. </summary> <returns>true to execute the specified application; otherwise, false. </returns> <param name="activationContext"> An <see cref="T:System.ActivationContext" /> identifying the activation context for the application. </param> <param name="context"> A <see cref="T:System.Security.Policy.TrustManagerContext" /> identifying the trust manager context for the application. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="activationContext" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.Policy.ApplicationSecurityManager.UserApplicationTrusts"> <summary> Gets an application trust collection that contains the cached trust decisions for the user. </summary> <returns> An <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> that contains the cached trust decisions for the user. </returns> </member> <member name="T:System.Security.Policy.ApplicationTrust"> <summary> Encapsulates security decisions about an application. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.ApplicationTrust.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.ApplicationTrust" /> class. </summary> </member> <member name="M:System.Security.Policy.ApplicationTrust.#ctor(System.ApplicationIdentity)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.ApplicationTrust" /> class with an <see cref="T:System.ApplicationIdentity" />. </summary> <param name="applicationIdentity"> An <see cref="T:System.ApplicationIdentity" /> that uniquely identifies an application. </param> </member> <member name="P:System.Security.Policy.ApplicationTrust.ApplicationIdentity"> <summary> Gets or sets the application identity for the application trust object. </summary> <returns> An <see cref="T:System.ApplicationIdentity" /> for the application trust object. </returns> <exception cref="T:System.ArgumentNullException"> <see cref="T:System.ApplicationIdentity" /> cannot be set because it has a value of null. </exception> </member> <member name="P:System.Security.Policy.ApplicationTrust.DefaultGrantSet"> <summary> Gets or sets the policy statement defining the default grant set. </summary> <returns> A <see cref="T:System.Security.Policy.PolicyStatement" /> describing the default grants. </returns> </member> <member name="P:System.Security.Policy.ApplicationTrust.ExtraInfo"> <summary> Gets or sets extra security information about the application. </summary> <returns> An object containing additional security information about the application. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Policy.ApplicationTrust.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs an <see cref="T:System.Security.Policy.ApplicationTrust" /> object with a given state from an XML encoding. </summary> <param name="element"> The XML encoding to use to reconstruct the <see cref="T:System.Security.Policy.ApplicationTrust" /> object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="element" /> is null. </exception> <exception cref="T:System.ArgumentException"> The XML encoding used for <paramref name="element" /> is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" /> </PermissionSet> </member> <member name="P:System.Security.Policy.ApplicationTrust.IsApplicationTrustedToRun"> <summary> Gets or sets a value indicating whether the application has the required permission grants and is trusted to run. </summary> <returns>true if the application is trusted to run; otherwise, false. The default is false. </returns> </member> <member name="P:System.Security.Policy.ApplicationTrust.Persist"> <summary> Gets or sets a value indicating whether application trust information is persisted. </summary> <returns>true if application trust information is persisted; otherwise, false. The default is false. </returns> </member> <member name="M:System.Security.Policy.ApplicationTrust.ToXml"> <summary> Creates an XML encoding of the <see cref="T:System.Security.Policy.ApplicationTrust" /> object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Security.Policy.ApplicationTrustCollection"> <summary> Represents a collection of <see cref="T:System.Security.Policy.ApplicationTrust" /> objects. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.Add(System.Security.Policy.ApplicationTrust)"> <summary> Adds an element to the collection. </summary> <returns> The index at which the new element was inserted. </returns> <param name="trust"> The <see cref="T:System.Security.Policy.ApplicationTrust" /> object to add. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="trust" /> is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ApplicationTrust.ApplicationIdentity" /> property of the <see cref="T:System.Security.Policy.ApplicationTrust" /> specified in <paramref name="trust" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.AddRange(System.Security.Policy.ApplicationTrust[])"> <summary> Copies the elements of the specified <see cref="T:System.Security.Policy.ApplicationTrust" /> array to the end of the collection. </summary> <param name="trusts"> An array of type <see cref="T:System.Security.Policy.ApplicationTrust" /> containing the objects to add to the collection. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="trusts" /> is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ApplicationTrust.ApplicationIdentity" /> property of an <see cref="T:System.Security.Policy.ApplicationTrust" /> specified in <paramref name="trust" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.AddRange(System.Security.Policy.ApplicationTrustCollection)"> <summary> Copies the elements of the specified <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> to the end of the collection. </summary> <param name="trusts"> A <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> containing the objects to add to the collection. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="trusts" /> is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ApplicationTrust.ApplicationIdentity" /> property of an <see cref="T:System.Security.Policy.ApplicationTrust" /> specified in <paramref name="trust" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.Clear"> <summary> Removes all the application trusts from the collection. </summary> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ApplicationTrust.ApplicationIdentity" /> property of an item in the collection is null. </exception> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.CopyTo(System.Security.Policy.ApplicationTrust[],System.Int32)"> <summary> Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array. </summary> <param name="array"> The one-dimensional array of type <see cref="T:System.Security.Policy.ApplicationTrust" /> that is the destination of the elements copied from the current collection. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than the lower bound of <paramref name="array" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.Policy.ApplicationTrustCollection.Count"> <summary> Gets the number of items contained in the collection. </summary> <returns> The number of items contained in the collection. </returns> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.Find(System.ApplicationIdentity,System.Security.Policy.ApplicationVersionMatch)"> <summary> Gets the application trusts in the collection that match the specified application identity. </summary> <returns> An <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> containing all matching <see cref="T:System.Security.Policy.ApplicationTrust" /> objects. </returns> <param name="applicationIdentity"> An <see cref="T:System.ApplicationIdentity" /> object describing the application to find. </param> <param name="versionMatch"> One of the <see cref="T:System.Security.Policy.ApplicationVersionMatch" /> values. </param> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.GetEnumerator"> <summary> Returns an object that can be used to iterate over the collection. </summary> <returns> An <see cref="T:System.Security.Policy.ApplicationTrustEnumerator" /> that can be used to iterate over the collection. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.Policy.ApplicationTrustCollection.IsSynchronized"> <summary> Gets a value indicating whether access to the collection is synchronized (thread safe). </summary> <returns>false in all cases. </returns> </member> <member name="P:System.Security.Policy.ApplicationTrustCollection.Item(System.Int32)"> <summary> Gets the <see cref="T:System.Security.Policy.ApplicationTrust" /> object located at the specified index in the collection. </summary> <returns> The <see cref="T:System.Security.Policy.ApplicationTrust" /> object at the specified index in the collection. </returns> <param name="index"> The zero-based index of the object within the collection. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is greater than or equal to the count of objects in the collection. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="index" /> is negative. </exception> </member> <member name="P:System.Security.Policy.ApplicationTrustCollection.Item(System.String)"> <summary> Gets the <see cref="T:System.Security.Policy.ApplicationTrust" /> object for the specified application. </summary> <returns> The <see cref="T:System.Security.Policy.ApplicationTrust" /> object for the specified application, or null if the object cannot be found. </returns> <param name="appFullName"> The full name of the application. </param> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.Remove(System.ApplicationIdentity,System.Security.Policy.ApplicationVersionMatch)"> <summary> Removes all application trust objects that match the specified criteria from the collection. </summary> <param name="applicationIdentity"> The <see cref="T:System.ApplicationIdentity" /> of the <see cref="T:System.Security.Policy.ApplicationTrust" /> object to be removed. </param> <param name="versionMatch"> One of the <see cref="T:System.Security.Policy.ApplicationVersionMatch" /> values. </param> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.Remove(System.Security.Policy.ApplicationTrust)"> <summary> Removes the specified application trust from the collection. </summary> <param name="trust"> The <see cref="T:System.Security.Policy.ApplicationTrust" /> object to remove. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="trust" /> is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ApplicationTrust.ApplicationIdentity" /> property of the <see cref="T:System.Security.Policy.ApplicationTrust" /> object specified by <paramref name="trust" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.RemoveRange(System.Security.Policy.ApplicationTrust[])"> <summary> Removes the application trust objects in the specified array from the collection. </summary> <param name="trusts"> A one-dimensional array of type <see cref="T:System.Security.Policy.ApplicationTrust" /> that contains items to be removed from the current collection. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="trusts" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.RemoveRange(System.Security.Policy.ApplicationTrustCollection)"> <summary> Removes the application trust objects in the specified collection from the collection. </summary> <param name="trusts"> An <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> that contains items to be removed from the currentcollection. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="trusts" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.Policy.ApplicationTrustCollection.SyncRoot"> <summary> Gets an object that can be used to synchronize access to the collection. </summary> <returns> The object to use to synchronize access to the collection. </returns> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"> <summary> Copies the elements of the <see cref="T:System.Collections.ICollection" /> to the specified <see cref="T:System.Array" />, starting at the specified <see cref="T:System.Array" /> index. </summary> <param name="array"> The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing. </param> <param name="index"> The zero-based index in <paramref name="array" /> at which copying begins. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="array" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="array" /> is multidimensional. -or- <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />. -or- The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />. </exception> </member> <member name="M:System.Security.Policy.ApplicationTrustCollection.System#Collections#IEnumerable#GetEnumerator"> <summary> Returns an enumerator that iterates through the collection. </summary> <returns> An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection. </returns> </member> <member name="T:System.Security.Policy.ApplicationTrustEnumerator"> <summary> Represents the enumerator for <see cref="T:System.Security.Policy.ApplicationTrust" /> objects in the <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> collection. </summary> </member> <member name="P:System.Security.Policy.ApplicationTrustEnumerator.Current"> <summary> Gets the current <see cref="T:System.Security.Policy.ApplicationTrust" /> object in the <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> collection. </summary> <returns> The current <see cref="T:System.Security.Policy.ApplicationTrust" /> in the <see cref="T:System.Security.Policy.ApplicationTrustCollection" />. </returns> </member> <member name="M:System.Security.Policy.ApplicationTrustEnumerator.MoveNext"> <summary> Moves to the next element in the <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> collection. </summary> <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.ApplicationTrustEnumerator.Reset"> <summary> Resets the enumerator to the beginning of the <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> collection. </summary> </member> <member name="P:System.Security.Policy.ApplicationTrustEnumerator.System#Collections#IEnumerator#Current"> <summary> Gets the current <see cref="T:System.Object" /> in the <see cref="T:System.Security.Policy.ApplicationTrustCollection" /> collection. </summary> <returns> The current <see cref="T:System.Object" /> in the <see cref="T:System.Security.Policy.ApplicationTrustCollection" />. </returns> </member> <member name="T:System.Security.Policy.ApplicationVersionMatch"> <summary> Specifies how to match versions when locating application trusts in a collection. </summary> </member> <member name="F:System.Security.Policy.ApplicationVersionMatch.MatchExactVersion"> <summary> Match on the exact version. </summary> </member> <member name="F:System.Security.Policy.ApplicationVersionMatch.MatchAllVersions"> <summary> Match on all versions. </summary> </member> <member name="T:System.Security.Policy.CodeConnectAccess"> <summary> Specifies the network resource access that is granted to code. </summary> </member> <member name="M:System.Security.Policy.CodeConnectAccess.#ctor(System.String,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.CodeConnectAccess" /> class. </summary> <param name="allowScheme"> The URI scheme represented by the current instance. </param> <param name="allowPort"> The port represented by the current instance. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="allowScheme" /> is null. -or- <paramref name="allowScheme" /> is an empty string (""). -or- <paramref name="allowScheme" /> contains characters that are not permitted in schemes. -or- <paramref name="allowPort" /> is less than 0. -or- <paramref name="allowPort" /> is greater than 65,535. </exception> </member> <member name="F:System.Security.Policy.CodeConnectAccess.AnyScheme"> <summary> Contains the string value that represents the scheme wildcard. </summary> </member> <member name="M:System.Security.Policy.CodeConnectAccess.CreateAnySchemeAccess(System.Int32)"> <summary> Returns a <see cref="T:System.Security.Policy.CodeConnectAccess" /> instance that represents access to the specified port using any scheme. </summary> <returns> A <see cref="T:System.Security.Policy.CodeConnectAccess" /> instance for the specified port. </returns> <param name="allowPort"> The port represented by the returned instance. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="allowPort" /> is less than 0. -or- <paramref name="allowPort" /> is greater than 65,535. </exception> </member> <member name="M:System.Security.Policy.CodeConnectAccess.CreateOriginSchemeAccess(System.Int32)"> <summary> Returns a <see cref="T:System.Security.Policy.CodeConnectAccess" /> instance that represents access to the specified port using the code's scheme of origin. </summary> <returns> A <see cref="T:System.Security.Policy.CodeConnectAccess" /> instance for the specified port. </returns> <param name="allowPort"> The port represented by the returned instance. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="allowPort" /> is less than 0. -or- <paramref name="allowPort" /> is greater than 65,535. </exception> </member> <member name="F:System.Security.Policy.CodeConnectAccess.DefaultPort"> <summary> Contains the value used to represent the default port. </summary> </member> <member name="M:System.Security.Policy.CodeConnectAccess.Equals(System.Object)"> <summary> Returns a value indicating whether two <see cref="T:System.Security.Policy.CodeConnectAccess" /> objects represent the same scheme and port. </summary> <returns>true if the two objects represent the same scheme and port; otherwise, false. </returns> <param name="o"> The object to compare to the current <see cref="T:System.Security.Policy.CodeConnectAccess" /> object. </param> </member> <member name="M:System.Security.Policy.CodeConnectAccess.GetHashCode"></member> <member name="F:System.Security.Policy.CodeConnectAccess.OriginPort"> <summary> Contains the value used to represent the port value in the URI where code originated. </summary> </member> <member name="F:System.Security.Policy.CodeConnectAccess.OriginScheme"> <summary> Contains the value used to represent the scheme in the URL where the code originated. </summary> </member> <member name="P:System.Security.Policy.CodeConnectAccess.Port"> <summary> Gets the port represented by the current instance. </summary> <returns> A <see cref="T:System.Int32" /> value that identifies a computer port used in conjunction with the <see cref="P:System.Security.Policy.CodeConnectAccess.Scheme" /> property. </returns> </member> <member name="P:System.Security.Policy.CodeConnectAccess.Scheme"> <summary> Gets the URI scheme represented by the current instance. </summary> <returns> A <see cref="T:System.String" /> that identifies a URI scheme, converted to lowercase. </returns> </member> <member name="T:System.Security.Policy.CodeGroup"> <summary> Represents the abstract base class from which all implementations of code groups must derive. </summary> </member> <member name="M:System.Security.Policy.CodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)"> <summary> Initializes a new instance of <see cref="T:System.Security.Policy.CodeGroup" />. </summary> <param name="membershipCondition"> A membership condition that tests evidence to determine whether this code group applies policy. </param> <param name="policy"> The policy statement for the code group in the form of a permission set and attributes to grant code that matches the membership condition. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="membershipCondition" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The type of the <paramref name="membershipCondition" /> parameter is not valid. -or- The type of the <paramref name="policy" /> parameter is not valid. </exception> </member> <member name="M:System.Security.Policy.CodeGroup.AddChild(System.Security.Policy.CodeGroup)"> <summary> Adds a child code group to the current code group. </summary> <param name="group"> The code group to be added as a child. This new child code group is added to the end of the list. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="group" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="group" /> parameter is not a valid code group. </exception> </member> <member name="P:System.Security.Policy.CodeGroup.AttributeString"> <summary> Gets a string representation of the attributes of the policy statement for the code group. </summary> <returns> A string representation of the attributes of the policy statement for the code group. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Policy.CodeGroup.Children"> <summary> Gets or sets an ordered list of the child code groups of a code group. </summary> <returns> A list of child code groups. </returns> <exception cref="T:System.ArgumentNullException"> An attempt is made to set this property to null. </exception> <exception cref="T:System.ArgumentException"> An attempt is made to set this property with a list of children that are not <see cref="T:System.Security.Policy.CodeGroup" /> objects. </exception> </member> <member name="M:System.Security.Policy.CodeGroup.Copy"> <summary> When overridden in a derived class, makes a deep copy of the current code group. </summary> <returns> An equivalent copy of the current code group, including its membership conditions and child code groups. </returns> </member> <member name="M:System.Security.Policy.CodeGroup.CreateXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> When overridden in a derived class, serializes properties and internal state specific to a derived code group and adds the serialization to the specified <see cref="T:System.Security.SecurityElement" />. </summary> <param name="element"> The XML encoding to which to add the serialization. </param> <param name="level"> The policy level within which the code group exists. </param> </member> <member name="P:System.Security.Policy.CodeGroup.Description"> <summary> Gets or sets the description of the code group. </summary> <returns> The description of the code group. </returns> </member> <member name="M:System.Security.Policy.CodeGroup.Equals(System.Object)"> <summary> Determines whether the specified code group is equivalent to the current code group. </summary> <returns>true if the specified code group is equivalent to the current code group; otherwise, false. </returns> <param name="o"> The code group to compare with the current code group. </param> </member> <member name="M:System.Security.Policy.CodeGroup.Equals(System.Security.Policy.CodeGroup,System.Boolean)"> <summary> Determines whether the specified code group is equivalent to the current code group, checking the child code groups as well, if specified. </summary> <returns>true if the specified code group is equivalent to the current code group; otherwise, false. </returns> <param name="cg"> The code group to compare with the current code group. </param> <param name="compareChildren">true to compare child code groups, as well; otherwise, false. </param> </member> <member name="M:System.Security.Policy.CodeGroup.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a given state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> </member> <member name="M:System.Security.Policy.CodeGroup.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a given state and policy level from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The policy level within which the code group exists. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> </member> <member name="M:System.Security.Policy.CodeGroup.GetHashCode"> <summary> Gets the hash code of the current code group. </summary> <returns> The hash code of the current code group. </returns> </member> <member name="P:System.Security.Policy.CodeGroup.MembershipCondition"> <summary> Gets or sets the code group's membership condition. </summary> <returns> The membership condition that determines to which evidence the code group is applicable. </returns> <exception cref="T:System.ArgumentNullException"> An attempt is made to set this parameter to null. </exception> </member> <member name="P:System.Security.Policy.CodeGroup.MergeLogic"> <summary> When overridden in a derived class, gets the merge logic for the code group. </summary> <returns> A description of the merge logic for the code group. </returns> </member> <member name="P:System.Security.Policy.CodeGroup.Name"> <summary> Gets or sets the name of the code group. </summary> <returns> The name of the code group. </returns> </member> <member name="M:System.Security.Policy.CodeGroup.ParseXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> When overridden in a derived class, reconstructs properties and internal state specific to a derived code group from the specified <see cref="T:System.Security.SecurityElement" />. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The policy level within which the code group exists. </param> </member> <member name="P:System.Security.Policy.CodeGroup.PermissionSetName"> <summary> Gets the name of the named permission set for the code group. </summary> <returns> The name of a named permission set of the policy level. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Policy.CodeGroup.PolicyStatement"> <summary> Gets or sets the policy statement associated with the code group. </summary> <returns> The policy statement for the code group. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.CodeGroup.RemoveChild(System.Security.Policy.CodeGroup)"> <summary> Removes the specified child code group. </summary> <param name="group"> The code group to be removed as a child. </param> <exception cref="T:System.ArgumentException"> The <paramref name="group" /> parameter is not an immediate child code group of the current code group. </exception> </member> <member name="M:System.Security.Policy.CodeGroup.Resolve(System.Security.Policy.Evidence)"> <summary> When overridden in a derived class, resolves policy for the code group and its descendants for a set of evidence. </summary> <returns> A policy statement that consists of the permissions granted by the code group with optional attributes, or null if the code group does not apply (the membership condition does not match the specified evidence). </returns> <param name="evidence"> The evidence for the assembly. </param> </member> <member name="M:System.Security.Policy.CodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)"> <summary> When overridden in a derived class, resolves matching code groups. </summary> <returns> A <see cref="T:System.Security.Policy.CodeGroup" /> that is the root of the tree of matching code groups. </returns> <param name="evidence"> The evidence for the assembly. </param> </member> <member name="M:System.Security.Policy.CodeGroup.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.CodeGroup.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object, its current state, and the policy level within which the code exists. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <param name="level"> The policy level within which the code group exists. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="T:System.Security.Policy.Evidence"> <summary> Defines the set of information that constitutes input to security policy decisions. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.Evidence.#ctor"> <summary> Initializes a new empty instance of the <see cref="T:System.Security.Policy.Evidence" /> class. </summary> </member> <member name="M:System.Security.Policy.Evidence.#ctor(System.Object[],System.Object[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.Evidence" /> class from multiple sets of host and assembly evidence. </summary> <param name="hostEvidence"> The host evidence from which to create the new instance. </param> <param name="assemblyEvidence"> The assembly evidence from which to create the new instance. </param> </member> <member name="M:System.Security.Policy.Evidence.#ctor(System.Security.Policy.Evidence)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.Evidence" /> class from a shallow copy of an existing one. </summary> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> instance from which to create the new instance. This instance is not deep copied. </param> <exception cref="T:System.ArgumentException"> The <paramref name="evidence" /> parameter is not a valid instance of <see cref="T:System.Security.Policy.Evidence" />. </exception> </member> <member name="M:System.Security.Policy.Evidence.AddAssembly(System.Object)"> <summary> Adds the specified assembly evidence to the evidence set. </summary> <param name="id"> Any evidence object. </param> </member> <member name="M:System.Security.Policy.Evidence.AddHost(System.Object)"> <summary> Adds the specified evidence supplied by the host to the evidence set. </summary> <param name="id"> Any evidence object. </param> <exception cref="T:System.Security.SecurityException"> <see cref="P:System.Security.Policy.Evidence.Locked" /> is true and the code that calls this method does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.ControlEvidence" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.Evidence.Clear"> <summary> Removes the host and assembly evidence from the evidence set. </summary> </member> <member name="M:System.Security.Policy.Evidence.CopyTo(System.Array,System.Int32)"> <summary> Copies evidence objects to an <see cref="T:System.Array" />. </summary> <param name="array"> The target array to which to copy evidence objects. </param> <param name="index"> The zero-based position in the array to which to begin copying evidence objects. </param> </member> <member name="P:System.Security.Policy.Evidence.Count"> <summary> Gets the number of evidence objects in the evidence set. </summary> <returns> The number of evidence objects in the evidence set. </returns> </member> <member name="M:System.Security.Policy.Evidence.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Security.Policy.Evidence" /> object is equal to the current <see cref="T:System.Security.Policy.Evidence" />. </summary> <returns>true if the specified <see cref="T:System.Security.Policy.Evidence" /> object is equal to the current <see cref="T:System.Security.Policy.Evidence" />; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Security.Policy.Evidence" /> object to compare with the current <see cref="T:System.Security.Policy.Evidence" />. </param> </member> <member name="M:System.Security.Policy.Evidence.GetAssemblyEnumerator"> <summary> Enumerates evidence provided by the assembly. </summary> <returns> An enumerator for evidence added by the <see cref="M:System.Security.Policy.Evidence.AddAssembly(System.Object)" /> method. </returns> </member> <member name="M:System.Security.Policy.Evidence.GetEnumerator"> <summary> Enumerates all evidence in the set, both that provided by the host and that provided by the assembly. </summary> <returns> An enumerator for evidence added by both the <see cref="M:System.Security.Policy.Evidence.AddHost(System.Object)" /> method and the <see cref="M:System.Security.Policy.Evidence.AddAssembly(System.Object)" /> method. </returns> </member> <member name="M:System.Security.Policy.Evidence.GetHashCode"> <summary> Gets a hash code for the <see cref="T:System.Security.Policy.Evidence" /> object that is suitable for use in hashing algorithms and data structures such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Security.Policy.Evidence" /> object. </returns> </member> <member name="M:System.Security.Policy.Evidence.GetHostEnumerator"> <summary> Enumerates evidence supplied by the host. </summary> <returns> An enumerator for evidence added by the <see cref="M:System.Security.Policy.Evidence.AddHost(System.Object)" /> method. </returns> </member> <member name="P:System.Security.Policy.Evidence.IsReadOnly"> <summary> Gets a value indicating whether the evidence set is read-only. </summary> <returns> Always false because read-only evidence sets are not supported. </returns> </member> <member name="P:System.Security.Policy.Evidence.IsSynchronized"> <summary> Gets a value indicating whether the evidence set is thread-safe. </summary> <returns> Always false because thread-safe evidence sets are not supported. </returns> </member> <member name="P:System.Security.Policy.Evidence.Locked"> <summary> Gets or sets a value indicating whether the evidence is locked. </summary> <returns>true if the evidence is locked; otherwise, false. The default is false. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.Evidence.Merge(System.Security.Policy.Evidence)"> <summary> Merges the specified evidence set into the current evidence set. </summary> <param name="evidence"> The evidence set to be merged into the current evidence set. </param> <exception cref="T:System.ArgumentException"> The <paramref name="evidence" /> parameter is not a valid instance of <see cref="T:System.Security.Policy.Evidence" />. </exception> <exception cref="T:System.Security.SecurityException"> <see cref="P:System.Security.Policy.Evidence.Locked" /> is true, the code that calls this method does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.ControlEvidence" />, and the <paramref name="evidence" /> parameter has a host list that is not empty. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.Evidence.RemoveType(System.Type)"> <summary> Removes the evidence for a given type from the host and assembly enumerations. </summary> <param name="t"> The <see cref="T:System.Type" /> of the evidence to be removed. </param> </member> <member name="P:System.Security.Policy.Evidence.SyncRoot"> <summary> Gets the synchronization root. </summary> <returns> Always this (Me in Visual Basic) because synchronization of evidence sets is not supported. </returns> </member> <member name="T:System.Security.Policy.FileCodeGroup"> <summary> Grants permission to manipulate files located in the code assemblies to code assemblies that match the membership condition. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.FileCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Permissions.FileIOPermissionAccess)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.FileCodeGroup" /> class. </summary> <param name="membershipCondition"> A membership condition that tests evidence to determine whether this code group applies policy. </param> <param name="access"> One of the <see cref="T:System.Security.Permissions.FileIOPermissionAccess" /> values. This value is used to construct the <see cref="T:System.Security.Permissions.FileIOPermission" /> that is granted. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="membershipCondition" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The type of the <paramref name="membershipCondition" /> parameter is not valid. -or- The type of the <paramref name="access" /> parameter is not valid. </exception> </member> <member name="P:System.Security.Policy.FileCodeGroup.AttributeString"> <summary> Gets a string representation of the attributes of the policy statement for the code group. </summary> <returns> Always null. </returns> </member> <member name="M:System.Security.Policy.FileCodeGroup.Copy"> <summary> Makes a deep copy of the current code group. </summary> <returns> An equivalent copy of the current code group, including its membership conditions and child code groups. </returns> </member> <member name="M:System.Security.Policy.FileCodeGroup.Equals(System.Object)"> <summary> Determines whether the specified code group is equivalent to the current code group. </summary> <returns>true if the specified code group is equivalent to the current code group; otherwise, false. </returns> <param name="o"> The code group to compare with the current code group. </param> </member> <member name="M:System.Security.Policy.FileCodeGroup.GetHashCode"> <summary> Gets the hash code of the current code group. </summary> <returns> The hash code of the current code group. </returns> </member> <member name="P:System.Security.Policy.FileCodeGroup.MergeLogic"> <summary> Gets the merge logic. </summary> <returns> The string "Union". </returns> </member> <member name="P:System.Security.Policy.FileCodeGroup.PermissionSetName"> <summary> Gets the name of the named permission set for the code group. </summary> <returns> The concatenatation of the string "Same directory FileIO - " and the access type. </returns> </member> <member name="M:System.Security.Policy.FileCodeGroup.Resolve(System.Security.Policy.Evidence)"> <summary> Resolves policy for the code group and its descendants for a set of evidence. </summary> <returns> A policy statement consisting of the permissions granted by the code group with optional attributes, or null if the code group does not apply (the membership condition does not match the specified evidence). </returns> <param name="evidence"> The evidence for the assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="evidence" /> parameter is null. </exception> <exception cref="T:System.Security.Policy.PolicyException"> The current policy is null. -or- More than one code group (including the parent code group and all child code groups) is marked <see cref="F:System.Security.Policy.PolicyStatementAttribute.Exclusive" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" /> </PermissionSet> </member> <member name="M:System.Security.Policy.FileCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)"> <summary> Resolves matching code groups. </summary> <returns> A <see cref="T:System.Security.Policy.CodeGroup" /> that is the root of the tree of matching code groups. </returns> <param name="evidence"> The evidence for the assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="evidence" /> parameter is null. </exception> </member> <member name="T:System.Security.Policy.FirstMatchCodeGroup"> <summary> Allows security policy to be defined by the union of the policy statement of a code group and that of the first child code group that matches. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.FirstMatchCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.FirstMatchCodeGroup" /> class. </summary> <param name="membershipCondition"> A membership condition that tests evidence to determine whether this code group applies policy. </param> <param name="policy"> The policy statement for the code group in the form of a permission set and attributes to grant code that matches the membership condition. </param> <exception cref="T:System.ArgumentException"> The type of the <paramref name="membershipCondition" /> parameter is not valid. -or- The type of the <paramref name="policy" /> parameter is not valid. </exception> </member> <member name="M:System.Security.Policy.FirstMatchCodeGroup.Copy"> <summary> Makes a deep copy of the code group. </summary> <returns> An equivalent copy of the code group, including its membership conditions and child code groups. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Policy.FirstMatchCodeGroup.MergeLogic"> <summary> Gets the merge logic. </summary> <returns> The string "First Match". </returns> </member> <member name="M:System.Security.Policy.FirstMatchCodeGroup.Resolve(System.Security.Policy.Evidence)"> <summary> Resolves policy for the code group and its descendants for a set of evidence. </summary> <returns> A policy statement consisting of the permissions granted by the code group with optional attributes, or null if the code group does not apply (the membership condition does not match the specified evidence). </returns> <param name="evidence"> The evidence for the assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="evidence" /> parameter is null. </exception> <exception cref="T:System.Security.Policy.PolicyException"> More than one code group (including the parent code group and any child code groups) is marked <see cref="F:System.Security.Policy.PolicyStatementAttribute.Exclusive" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.FirstMatchCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)"> <summary> Resolves matching code groups. </summary> <returns> A <see cref="T:System.Security.Policy.CodeGroup" /> that is the root of the tree of matching code groups. </returns> <param name="evidence"> The evidence for the assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="evidence" /> parameter is null. </exception> </member> <member name="T:System.Security.Policy.GacInstalled"> <summary> Confirms that a code assembly originates in the global assembly cache (GAC) as evidence for policy evaluation. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.GacInstalled.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.GacInstalled" /> class. </summary> </member> <member name="M:System.Security.Policy.GacInstalled.Copy"> <summary> Creates an equivalent copy of the current object. </summary> <returns> A new <see cref="T:System.Security.Policy.GacInstalled" /> object. </returns> </member> <member name="M:System.Security.Policy.GacInstalled.CreateIdentityPermission(System.Security.Policy.Evidence)"> <summary> Creates a new identity permission that corresponds to the current object. </summary> <returns> A new <see cref="T:System.Security.Permissions.GacIdentityPermission" />. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> from which to construct the identity permission. </param> </member> <member name="M:System.Security.Policy.GacInstalled.Equals(System.Object)"> <summary> Indicates whether the current object is equivalent to the specified object. </summary> <returns>true if <paramref name="o" /> is a <see cref="T:System.Security.Policy.GacInstalled" /> object; otherwise, false. </returns> <param name="o"> The object to compare with the current object. </param> </member> <member name="M:System.Security.Policy.GacInstalled.GetHashCode"> <summary> Returns a hash code for the current object. </summary> <returns> 0 (zero). </returns> </member> <member name="M:System.Security.Policy.GacInstalled.ToString"> <summary> Returns a string representation of the current object. </summary> <returns> A string representation of the current object. </returns> </member> <member name="T:System.Security.Policy.GacMembershipCondition"> <summary> Determines whether an assembly belongs to a code group by testing its global assembly cache membership. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.GacMembershipCondition.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.GacMembershipCondition" /> class. </summary> </member> <member name="M:System.Security.Policy.GacMembershipCondition.Check(System.Security.Policy.Evidence)"> <summary> Indicates whether the specified evidence satisfies the membership condition. </summary> <returns>true if the specified evidence satisfies the membership condition; otherwise, false. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> against which to make the test. </param> </member> <member name="M:System.Security.Policy.GacMembershipCondition.Copy"> <summary> Creates an equivalent copy of the membership condition. </summary> <returns> A new <see cref="T:System.Security.Policy.GacMembershipCondition" /> object. </returns> </member> <member name="M:System.Security.Policy.GacMembershipCondition.Equals(System.Object)"> <summary> Indicates whether the current object is equivalent to the specified object. </summary> <returns>true if <paramref name="o" /> is a <see cref="T:System.Security.Policy.GacMembershipCondition" />; otherwise, false. </returns> <param name="o"> The object to compare with the current object. </param> </member> <member name="M:System.Security.Policy.GacMembershipCondition.FromXml(System.Security.SecurityElement)"> <summary> Uses the specified XML encoding to reconstruct a security object. </summary> <param name="e"> The <see cref="T:System.Security.SecurityElement" /> that contains the XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="e" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="e" /> is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.GacMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Uses the specified XML encoding to reconstruct a security object, using the specified policy level context. </summary> <param name="e"> The <see cref="T:System.Security.SecurityElement" /> that contains the XML encoding to use to reconstruct the security object. </param> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> context for resolving <see cref="T:System.Security.NamedPermissionSet" /> references. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="e" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="e" /> is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.GacMembershipCondition.GetHashCode"> <summary> Gets a hash code for the current membership condition. </summary> <returns> 0 (zero). </returns> </member> <member name="M:System.Security.Policy.GacMembershipCondition.ToString"> <summary> Returns a string representation of the membership condition. </summary> <returns> A string representation of the membership condition. </returns> </member> <member name="M:System.Security.Policy.GacMembershipCondition.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> A <see cref="T:System.Security.SecurityElement" /> that contains the XML encoding of the security object, including any state information. </returns> </member> <member name="M:System.Security.Policy.GacMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state, using the specified policy level context. </summary> <returns> A <see cref="T:System.Security.SecurityElement" /> that contains the XML encoding of the security object, including any state information. </returns> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> context for resolving <see cref="T:System.Security.NamedPermissionSet" /> references. </param> </member> <member name="T:System.Security.Policy.Hash"> <summary> Provides evidence about the hash value for an assembly. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.Hash.#ctor(System.Reflection.Assembly)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.Hash" /> class. </summary> <param name="assembly"> The <see cref="T:System.Reflection.Assembly" /> for which to compute the hash value. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="assembly" /> parameter is null. </exception> </member> <member name="M:System.Security.Policy.Hash.CreateMD5(System.Byte[])"> <summary> Creates a <see cref="T:System.Security.Policy.Hash" /> object containing an <see cref="T:System.Security.Cryptography.MD5" /> hash value. </summary> <returns> A <see cref="T:System.Security.Policy.Hash" /> object containing the hash value provided by the <paramref name="md5" /> parameter. </returns> <param name="md5"> A byte array containing an <see cref="T:System.Security.Cryptography.MD5" /> hash value. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="md5" /> parameter is null. </exception> </member> <member name="M:System.Security.Policy.Hash.CreateSHA1(System.Byte[])"> <summary> Creates a <see cref="T:System.Security.Policy.Hash" /> object containing an <see cref="T:System.Security.Cryptography.SHA1" /> hash value. </summary> <returns> A <see cref="T:System.Security.Policy.Hash" /> object containing the hash value provided by the <paramref name="sha1" /> parameter. </returns> <param name="sha1"> A byte array containing a <see cref="T:System.Security.Cryptography.SHA1" /> hash value. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="sha1" /> parameter is null. </exception> </member> <member name="M:System.Security.Policy.Hash.GenerateHash(System.Security.Cryptography.HashAlgorithm)"> <summary> Computes the hash value for the assembly using the specified hash algorithm. </summary> <returns> A byte array that represents the hash value for the assembly. </returns> <param name="hashAlg"> The hash algorithm to use to compute the hash value for the assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="hashAlg" /> parameter is null. </exception> <exception cref="T:System.Security.SecurityException"> The hash value for the assembly cannot be generated. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Policy.Hash.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Gets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the parameter name and additional exception information. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Policy.Hash.MD5"> <summary> Gets the <see cref="T:System.Security.Cryptography.MD5" /> hash value for the assembly. </summary> <returns> A byte array that represents the <see cref="T:System.Security.Cryptography.MD5" /> hash value for the assembly. </returns> </member> <member name="P:System.Security.Policy.Hash.SHA1"> <summary> Gets the <see cref="T:System.Security.Cryptography.SHA1" /> hash value for the assembly. </summary> <returns> A byte array that represents the <see cref="T:System.Security.Cryptography.SHA1" /> hash value for the assembly. </returns> </member> <member name="M:System.Security.Policy.Hash.ToString"> <summary> Returns a string representation of the current <see cref="T:System.Security.Policy.Hash" />. </summary> <returns> A representation of the current <see cref="T:System.Security.Policy.Hash" />. </returns> </member> <member name="T:System.Security.Policy.HashMembershipCondition"> <summary> Determines whether an assembly belongs to a code group by testing its hash value. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.HashMembershipCondition.#ctor(System.Security.Cryptography.HashAlgorithm,System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.HashMembershipCondition" /> class with the hash algorithm and hash value that determine membership. </summary> <param name="hashAlg"> The hash algorithm to use to compute the hash value for the assembly. </param> <param name="value"> The hash value for which to test. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="hashAlg" /> parameter is null. -or- The <paramref name="value" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="hashAlg" /> parameter is not a valid hash algorithm. </exception> </member> <member name="M:System.Security.Policy.HashMembershipCondition.Check(System.Security.Policy.Evidence)"> <summary> Determines whether the specified evidence satisfies the membership condition. </summary> <returns>true if the specified evidence satisfies the membership condition; otherwise, false. </returns> <param name="evidence"> The evidence set against which to make the test. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet> </member> <member name="M:System.Security.Policy.HashMembershipCondition.Copy"> <summary> Creates an equivalent copy of the membership condition. </summary> <returns> A new, identical copy of the current membership condition. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.HashMembershipCondition.Equals(System.Object)"> <summary> Determines whether the <see cref="P:System.Security.Policy.HashMembershipCondition.HashValue" /> and the <see cref="P:System.Security.Policy.HashMembershipCondition.HashAlgorithm" /> from the specified object are equivalent to the <see cref="P:System.Security.Policy.HashMembershipCondition.HashValue" /> and <see cref="P:System.Security.Policy.HashMembershipCondition.HashAlgorithm" /> contained in the current <see cref="T:System.Security.Policy.HashMembershipCondition" />. </summary> <returns>true if the <see cref="P:System.Security.Policy.HashMembershipCondition.HashValue" /> and <see cref="P:System.Security.Policy.HashMembershipCondition.HashAlgorithm" /> from the specified object is equivalent to the <see cref="P:System.Security.Policy.HashMembershipCondition.HashValue" /> and <see cref="P:System.Security.Policy.HashMembershipCondition.HashAlgorithm" /> contained in the current <see cref="T:System.Security.Policy.HashMembershipCondition" />; otherwise, false. </returns> <param name="o"> The object to compare to the current <see cref="T:System.Security.Policy.HashMembershipCondition" />. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.HashMembershipCondition.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> </member> <member name="M:System.Security.Policy.HashMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The policy level context, used to resolve named permission set references. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.HashMembershipCondition.GetHashCode"> <summary> Gets the hash code for the current membership condition. </summary> <returns> The hash code for the current membership condition. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Policy.HashMembershipCondition.HashAlgorithm"> <summary> Gets or sets the hash algorithm to use for the membership condition. </summary> <returns> The hash algorithm to use for the membership condition. </returns> <exception cref="T:System.ArgumentNullException"> An attempt is made to set <see cref="P:System.Security.Policy.HashMembershipCondition.HashAlgorithm" /> to null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Policy.HashMembershipCondition.HashValue"> <summary> Gets or sets the hash value for which the membership condition tests. </summary> <returns> The hash value for which the membership condition tests. </returns> <exception cref="T:System.ArgumentNullException"> An attempt is made to set <see cref="P:System.Security.Policy.HashMembershipCondition.HashValue" /> to null. </exception> </member> <member name="M:System.Security.Policy.HashMembershipCondition.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)"> <summary> Runs when the entire object graph has been deserialized. </summary> <param name="sender"> The object that initiated the callback. The functionality for this parameter is not currently implemented. </param> </member> <member name="M:System.Security.Policy.HashMembershipCondition.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data. </param> <param name="context"> The destination <see cref="T:System.Runtime.Serialization.StreamingContext" /> for this serialization. </param> </member> <member name="M:System.Security.Policy.HashMembershipCondition.ToString"> <summary> Creates and returns a string representation of the membership condition. </summary> <returns> A string representation of the state of the membership condition. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.HashMembershipCondition.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.HashMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state with the specified <see cref="T:System.Security.Policy.PolicyLevel" />. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <param name="level"> The policy level context for resolving named permission set references. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Security.Policy.IApplicationTrustManager"> <summary> Determines whether an application should be executed and which set of permissions should be granted to the application. </summary> </member> <member name="M:System.Security.Policy.IApplicationTrustManager.DetermineApplicationTrust(System.ActivationContext,System.Security.Policy.TrustManagerContext)"> <summary> Determines whether an application should be executed and which set of permissions should be granted to the application. </summary> <returns> An <see cref="T:System.Security.Policy.ApplicationTrust" />. </returns> <param name="activationContext"> An <see cref="T:System.ActivationContext" /> identifying the activation context for the application. </param> <param name="context"> A <see cref="T:System.Security.Policy.TrustManagerContext" /> identifying the trust manager context for the application. </param> </member> <member name="T:System.Security.Policy.IIdentityPermissionFactory"> <summary> Defines the method that creates a new identity permission. </summary> </member> <member name="M:System.Security.Policy.IIdentityPermissionFactory.CreateIdentityPermission(System.Security.Policy.Evidence)"> <summary> Creates a new identity permission for the specified evidence. </summary> <returns> The new identity permission. </returns> <param name="evidence"> The evidence from which to create the new identity permission. </param> </member> <member name="T:System.Security.Policy.IMembershipCondition"> <summary> Defines the test to determine whether a code assembly is a member of a code group. </summary> </member> <member name="M:System.Security.Policy.IMembershipCondition.Check(System.Security.Policy.Evidence)"> <summary> Determines whether the specified evidence satisfies the membership condition. </summary> <returns>true if the specified evidence satisfies the membership condition; otherwise, false. </returns> <param name="evidence"> The evidence set against which to make the test. </param> </member> <member name="M:System.Security.Policy.IMembershipCondition.Copy"> <summary> Creates an equivalent copy of the membership condition. </summary> <returns> A new, identical copy of the current membership condition. </returns> </member> <member name="M:System.Security.Policy.IMembershipCondition.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />. </summary> <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />. </param> </member> <member name="M:System.Security.Policy.IMembershipCondition.ToString"> <summary> Creates and returns a string representation of the membership condition. </summary> <returns> A string representation of the state of the current membership condition. </returns> </member> <member name="T:System.Security.Policy.NetCodeGroup"> <summary> Grants Web permission to the site from which the assembly was downloaded. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.NetCodeGroup.#ctor(System.Security.Policy.IMembershipCondition)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.NetCodeGroup" /> class. </summary> <param name="membershipCondition"> A membership condition that tests evidence to determine whether this code group applies code access security policy. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="membershipCondition" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The type of the <paramref name="membershipCondition" /> parameter is not valid. </exception> </member> <member name="F:System.Security.Policy.NetCodeGroup.AbsentOriginScheme"> <summary> Contains a value used to specify connection access for code with an unknown or unrecognized origin scheme. </summary> </member> <member name="M:System.Security.Policy.NetCodeGroup.AddConnectAccess(System.String,System.Security.Policy.CodeConnectAccess)"> <summary> Adds the specified connection access to the current code group. </summary> <param name="originScheme"> A <see cref="T:System.String" /> containing the scheme to match against the code's scheme. </param> <param name="connectAccess"> A <see cref="T:System.Security.Policy.CodeConnectAccess" /> that specifies the scheme and port code can use to connect back to its origin server. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="originScheme" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="originScheme" /> contains characters that are not permitted in schemes. -or- <paramref name="originScheme" /> = <see cref="F:System.Security.Policy.NetCodeGroup.AbsentOriginScheme" /> and <paramref name="connectAccess" /> specifies <see cref="F:System.Security.Policy.CodeConnectAccess.OriginScheme" /> as its scheme. </exception> </member> <member name="F:System.Security.Policy.NetCodeGroup.AnyOtherOriginScheme"> <summary> Contains a value used to specify any other unspecified origin scheme. </summary> </member> <member name="P:System.Security.Policy.NetCodeGroup.AttributeString"> <summary> Gets a string representation of the attributes of the policy statement for the code group. </summary> <returns> Always null. </returns> </member> <member name="M:System.Security.Policy.NetCodeGroup.Copy"> <summary> Makes a deep copy of the current code group. </summary> <returns> An equivalent copy of the current code group, including its membership conditions and child code groups. </returns> </member> <member name="M:System.Security.Policy.NetCodeGroup.Equals(System.Object)"> <summary> Determines whether the specified code group is equivalent to the current code group. </summary> <returns>true if the specified code group is equivalent to the current code group; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Security.Policy.NetCodeGroup" /> object to compare with the current code group. </param> </member> <member name="M:System.Security.Policy.NetCodeGroup.GetConnectAccessRules"> <summary> Gets the connection access information for the current code group. </summary> <returns> A <see cref="T:System.Collections.DictionaryEntry" /> array containing connection access information. </returns> </member> <member name="M:System.Security.Policy.NetCodeGroup.GetHashCode"> <returns> The hash code of the current code group. </returns> </member> <member name="P:System.Security.Policy.NetCodeGroup.MergeLogic"> <summary> Gets the logic to use for merging groups. </summary> <returns> The string "Union". </returns> </member> <member name="P:System.Security.Policy.NetCodeGroup.PermissionSetName"> <summary> Gets the name of the <see cref="T:System.Security.NamedPermissionSet" /> for the code group. </summary> <returns> Always the string "Same site Web." </returns> </member> <member name="M:System.Security.Policy.NetCodeGroup.ResetConnectAccess"> <summary> Removes all connection access information for the current code group. </summary> </member> <member name="M:System.Security.Policy.NetCodeGroup.Resolve(System.Security.Policy.Evidence)"> <summary> Resolves policy for the code group and its descendants for a set of evidence. </summary> <returns> A <see cref="T:System.Security.Policy.PolicyStatement" /> that consists of the permissions granted by the code group with optional attributes, or null if the code group does not apply (the membership condition does not match the specified evidence). </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> for the assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="evidence" /> parameter is null. </exception> <exception cref="T:System.Security.Policy.PolicyException"> More than one code group (including the parent code group and any child code groups) is marked <see cref="F:System.Security.Policy.PolicyStatementAttribute.Exclusive" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.NetCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)"> <summary> Resolves matching code groups. </summary> <returns> A <see cref="T:System.Security.Policy.CodeGroup" />. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> for the assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="evidence" /> parameter is null. </exception> </member> <member name="T:System.Security.Policy.PermissionRequestEvidence"> <summary> Defines evidence that represents permission requests. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.PermissionRequestEvidence.#ctor(System.Security.PermissionSet,System.Security.PermissionSet,System.Security.PermissionSet)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.PermissionRequestEvidence" /> class with the permission request of a code assembly. </summary> <param name="request"> The minimum permissions the code requires to run. </param> <param name="optional"> The permissions the code can use if they are granted, but that are not required. </param> <param name="denied"> The permissions the code explicitly asks not to be granted. </param> </member> <member name="M:System.Security.Policy.PermissionRequestEvidence.Copy"> <summary> Creates an equivalent copy of the current <see cref="T:System.Security.Policy.PermissionRequestEvidence" />. </summary> <returns> An equivalent copy of the current <see cref="T:System.Security.Policy.PermissionRequestEvidence" />. </returns> </member> <member name="P:System.Security.Policy.PermissionRequestEvidence.DeniedPermissions"> <summary> Gets the permissions the code explicitly asks not to be granted. </summary> <returns> The permissions the code explicitly asks not to be granted. </returns> </member> <member name="P:System.Security.Policy.PermissionRequestEvidence.OptionalPermissions"> <summary> Gets the permissions the code can use if they are granted, but are not required. </summary> <returns> The permissions the code can use if they are granted, but are not required. </returns> </member> <member name="P:System.Security.Policy.PermissionRequestEvidence.RequestedPermissions"> <summary> Gets the minimum permissions the code requires to run. </summary> <returns> The minimum permissions the code requires to run. </returns> </member> <member name="M:System.Security.Policy.PermissionRequestEvidence.ToString"> <summary> Gets a string representation of the state of the <see cref="T:System.Security.Policy.PermissionRequestEvidence" />. </summary> <returns> A representation of the state of the <see cref="T:System.Security.Policy.PermissionRequestEvidence" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Security.Policy.PolicyException"> <summary> The exception that is thrown when policy forbids code to run. </summary> </member> <member name="M:System.Security.Policy.PolicyException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.PolicyException" /> class with default properties. </summary> </member> <member name="M:System.Security.Policy.PolicyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.PolicyException" /> class with serialized data. </summary> <param name="info"> The object that holds the serialized object data. </param> <param name="context"> The contextual information about the source or destination. </param> </member> <member name="M:System.Security.Policy.PolicyException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.PolicyException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Security.Policy.PolicyException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.PolicyException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="exception"> The exception that is the cause of the current exception. If the <paramref name="exception" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Security.Policy.PolicyLevel"> <summary> Represents the security policy levels for the common language runtime. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.PolicyLevel.AddFullTrustAssembly(System.Security.Policy.StrongName)"> <summary> Adds a <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> corresponding to the specified <see cref="T:System.Security.Policy.StrongName" /> to the list of <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> objects used to determine whether an assembly is a member of the group of assemblies that should not be evaluated. </summary> <param name="sn"> The <see cref="T:System.Security.Policy.StrongName" /> used to create the <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> to add to the list of <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> objects used to determine whether an assembly is a member of the group of assemblies that should not be evaluated. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="sn" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="T:System.Security.Policy.StrongName" /> specified by the <paramref name="sn" /> parameter already has full trust. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.AddFullTrustAssembly(System.Security.Policy.StrongNameMembershipCondition)"> <summary> Adds the specified <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> to the list of <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> objects used to determine whether an assembly is a member of the group of assemblies that should not be evaluated. </summary> <param name="snMC"> The <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> to add to the list of <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> objects used to determine whether an assembly is a member of the group of assemblies that should not be evaluated. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="snMC" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> specified by the <paramref name="snMC" /> parameter already has full trust. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.AddNamedPermissionSet(System.Security.NamedPermissionSet)"> <summary> Adds a <see cref="T:System.Security.NamedPermissionSet" /> to the current policy level. </summary> <param name="permSet"> The <see cref="T:System.Security.NamedPermissionSet" /> to add to the current policy level. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="permSet" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="permSet" /> parameter has the same name as an existing <see cref="T:System.Security.NamedPermissionSet" /> in the <see cref="T:System.Security.Policy.PolicyLevel" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.ChangeNamedPermissionSet(System.String,System.Security.PermissionSet)"> <summary> Replaces a <see cref="T:System.Security.NamedPermissionSet" /> in the current policy level with the specified <see cref="T:System.Security.PermissionSet" />. </summary> <returns> A copy of the <see cref="T:System.Security.NamedPermissionSet" /> that was replaced. </returns> <param name="name"> The name of the <see cref="T:System.Security.NamedPermissionSet" /> to replace. </param> <param name="pSet"> The <see cref="T:System.Security.PermissionSet" /> that replaces the <see cref="T:System.Security.NamedPermissionSet" /> specified by the <paramref name="name" /> parameter. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. -or- The <paramref name="pSet" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is equal to the name of a reserved permission set. -or- The <see cref="T:System.Security.PermissionSet" /> specified by the <paramref name="pSet" /> parameter cannot be found. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.CreateAppDomainLevel"> <summary> Creates a new policy level for use at the application domain policy level. </summary> <returns> The newly created <see cref="T:System.Security.Policy.PolicyLevel" />. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a given state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="T:System.Security.SecurityElement" /> specified by the <paramref name="e" /> parameter is invalid. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Policy.PolicyLevel.FullTrustAssemblies"> <summary> Gets a list of <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> objects used to determine whether an assembly is a member of the group of assemblies used to evaluate security policy. </summary> <returns> A list of <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> objects used to determine whether an assembly is a member of the group of assemblies used to evaluate security policy. These assemblies are granted full trust during security policy evaluation of assemblies not in the list. </returns> </member> <member name="M:System.Security.Policy.PolicyLevel.GetNamedPermissionSet(System.String)"> <summary> Returns the <see cref="T:System.Security.NamedPermissionSet" /> in the current policy level with the specified name. </summary> <returns> The <see cref="T:System.Security.NamedPermissionSet" /> in the current policy level with the specified name, if found; otherwise, null. </returns> <param name="name"> The name of the <see cref="T:System.Security.NamedPermissionSet" /> to find. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="P:System.Security.Policy.PolicyLevel.Label"> <summary> Gets a descriptive label for the policy level. </summary> <returns> The label associated with the policy level. </returns> </member> <member name="P:System.Security.Policy.PolicyLevel.NamedPermissionSets"> <summary> Gets a list of named permission sets defined for the policy level. </summary> <returns> A list of named permission sets defined for the policy level. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.Recover"> <summary> Replaces the configuration file for this <see cref="T:System.Security.Policy.PolicyLevel" /> with the last backup (reflecting the state of policy prior to the last time it was saved) and returns it to the state of the last save. </summary> <exception cref="T:System.Security.Policy.PolicyException"> The policy level does not have a valid configuration file. </exception> </member> <member name="M:System.Security.Policy.PolicyLevel.RemoveFullTrustAssembly(System.Security.Policy.StrongName)"> <summary> Removes an assembly with the specified <see cref="T:System.Security.Policy.StrongName" /> from the list of assemblies the policy level uses to evaluate policy. </summary> <param name="sn"> The <see cref="T:System.Security.Policy.StrongName" /> of the assembly to remove from the list of assemblies used to evaluate policy. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="sn" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The assembly with the <see cref="T:System.Security.Policy.StrongName" /> specified by the <paramref name="sn" /> parameter does not have full trust. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.RemoveFullTrustAssembly(System.Security.Policy.StrongNameMembershipCondition)"> <summary> Removes an assembly with the specified <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> from the list of assemblies the policy level uses to evaluate policy. </summary> <param name="snMC"> The <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> of the assembly to remove from the list of assemblies used to evaluate policy. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="snMC" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> specified by the <paramref name="snMC" /> parameter does not have full trust. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.RemoveNamedPermissionSet(System.Security.NamedPermissionSet)"> <summary> Removes the specified <see cref="T:System.Security.NamedPermissionSet" /> from the current policy level. </summary> <returns> The <see cref="T:System.Security.NamedPermissionSet" /> that was removed. </returns> <param name="permSet"> The <see cref="T:System.Security.NamedPermissionSet" /> to remove from the current policy level. </param> <exception cref="T:System.ArgumentException"> The <see cref="T:System.Security.NamedPermissionSet" /> specified by the <paramref name="permSet" /> parameter was not found. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="permSet" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.RemoveNamedPermissionSet(System.String)"> <summary> Removes the <see cref="T:System.Security.NamedPermissionSet" /> with the specified name from the current policy level. </summary> <returns> The <see cref="T:System.Security.NamedPermissionSet" /> that was removed. </returns> <param name="name"> The name of the <see cref="T:System.Security.NamedPermissionSet" /> to remove. </param> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is equal to the name of a reserved permission set. -or- A <see cref="T:System.Security.NamedPermissionSet" /> with the specified name cannot be found. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.Reset"> <summary> Returns the current policy level to the default state. </summary> <PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.Resolve(System.Security.Policy.Evidence)"> <summary> Resolves policy based on evidence for the policy level, and returns the resulting <see cref="T:System.Security.Policy.PolicyStatement" />. </summary> <returns> The resulting <see cref="T:System.Security.Policy.PolicyStatement" />. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> used to resolve the <see cref="T:System.Security.Policy.PolicyLevel" />. </param> <exception cref="T:System.Security.Policy.PolicyException"> The policy level contains multiple matching code groups marked as exclusive. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="evidence" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyLevel.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)"> <summary> Resolves policy at the policy level and returns the root of a code group tree that matches the evidence. </summary> <returns> A <see cref="T:System.Security.Policy.CodeGroup" /> representing the root of a tree of code groups matching the specified evidence. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> used to resolve policy. </param> <exception cref="T:System.Security.Policy.PolicyException"> The policy level contains multiple matching code groups marked as exclusive. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="evidence" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="P:System.Security.Policy.PolicyLevel.RootCodeGroup"> <summary> Gets or sets the root code group for the policy level. </summary> <returns> The <see cref="T:System.Security.Policy.CodeGroup" /> that is the root of the tree of policy level code groups. </returns> <exception cref="T:System.ArgumentNullException"> The value for <see cref="P:System.Security.Policy.PolicyLevel.RootCodeGroup" /> is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="P:System.Security.Policy.PolicyLevel.StoreLocation"> <summary> Gets the path where the policy file is stored. </summary> <returns> The path where the policy file is stored, or null if the <see cref="T:System.Security.Policy.PolicyLevel" /> does not have a storage location. </returns> </member> <member name="M:System.Security.Policy.PolicyLevel.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="P:System.Security.Policy.PolicyLevel.Type"> <summary> Gets the type of the policy level. </summary> <returns> One of the <see cref="T:System.Security.PolicyLevelType" /> values. </returns> </member> <member name="T:System.Security.Policy.PolicyStatement"> <summary> Represents the statement of a <see cref="T:System.Security.Policy.CodeGroup" /> describing the permissions and other information that apply to code with a particular set of evidence. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.PolicyStatement.#ctor(System.Security.PermissionSet)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.PolicyStatement" /> class with the specified <see cref="T:System.Security.PermissionSet" />. </summary> <param name="permSet"> The <see cref="T:System.Security.PermissionSet" /> with which to initialize the new instance. </param> </member> <member name="M:System.Security.Policy.PolicyStatement.#ctor(System.Security.PermissionSet,System.Security.Policy.PolicyStatementAttribute)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.PolicyStatement" /> class with the specified <see cref="T:System.Security.PermissionSet" /> and attributes. </summary> <param name="permSet"> The <see cref="T:System.Security.PermissionSet" /> with which to initialize the new instance. </param> <param name="attributes"> A bitwise combination of the <see cref="T:System.Security.Policy.PolicyStatementAttribute" /> values. </param> </member> <member name="P:System.Security.Policy.PolicyStatement.Attributes"> <summary> Gets or sets the attributes of the policy statement. </summary> <returns> The attributes of the policy statement. </returns> </member> <member name="P:System.Security.Policy.PolicyStatement.AttributeString"> <summary> Gets a string representation of the attributes of the policy statement. </summary> <returns> A text string representing the attributes of the policy statement. </returns> </member> <member name="M:System.Security.Policy.PolicyStatement.Copy"> <summary> Creates an equivalent copy of the current policy statement. </summary> <returns> A new copy of the <see cref="T:System.Security.Policy.PolicyStatement" /> with <see cref="P:System.Security.Policy.PolicyStatement.PermissionSet" /> and <see cref="P:System.Security.Policy.PolicyStatement.Attributes" /> identical to those of the current <see cref="T:System.Security.Policy.PolicyStatement" />. </returns> </member> <member name="M:System.Security.Policy.PolicyStatement.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Security.Policy.PolicyStatement" /> object is equal to the current <see cref="T:System.Security.Policy.PolicyStatement" />. </summary> <returns>true if the specified <see cref="T:System.Security.Policy.PolicyStatement" /> is equal to the current <see cref="T:System.Security.Policy.PolicyStatement" /> object; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Security.Policy.PolicyStatement" /> object to compare with the current <see cref="T:System.Security.Policy.PolicyStatement" />. </param> </member> <member name="M:System.Security.Policy.PolicyStatement.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a given state from an XML encoding. </summary> <param name="et"> The XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="et" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="et" /> parameter is not a valid <see cref="T:System.Security.Policy.PolicyStatement" /> encoding. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyStatement.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a given state from an XML encoding. </summary> <param name="et"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> context for lookup of <see cref="T:System.Security.NamedPermissionSet" /> values. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="et" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="et" /> parameter is not a valid <see cref="T:System.Security.Policy.PolicyStatement" /> encoding. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyStatement.GetHashCode"> <summary> Gets a hash code for the <see cref="T:System.Security.Policy.PolicyStatement" /> object that is suitable for use in hashing algorithms and data structures such as a hash table. </summary> <returns> A hash code for the current <see cref="T:System.Security.Policy.PolicyStatement" /> object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Policy.PolicyStatement.PermissionSet"> <summary> Gets or sets the <see cref="T:System.Security.PermissionSet" /> of the policy statement. </summary> <returns> The <see cref="T:System.Security.PermissionSet" /> of the policy statement. </returns> </member> <member name="M:System.Security.Policy.PolicyStatement.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PolicyStatement.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> context for lookup of <see cref="T:System.Security.NamedPermissionSet" /> values. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Security.Policy.PolicyStatementAttribute"> <summary> Defines special attribute flags for security policy on code groups. </summary> </member> <member name="F:System.Security.Policy.PolicyStatementAttribute.Nothing"> <summary> No flags are set. </summary> </member> <member name="F:System.Security.Policy.PolicyStatementAttribute.Exclusive"> <summary> The exclusive code group flag. When a code group has this flag set, only the permissions associated with that code group are granted to code belonging to the code group. At most, one code group matching a given piece of code can be set as exclusive. </summary> </member> <member name="F:System.Security.Policy.PolicyStatementAttribute.LevelFinal"> <summary> The flag representing a policy statement that causes lower policy levels to not be evaluated as part of the resolve operation, effectively allowing the policy level to override lower levels. </summary> </member> <member name="F:System.Security.Policy.PolicyStatementAttribute.All"> <summary> All attribute flags are set. </summary> </member> <member name="T:System.Security.Policy.Publisher"> <summary> Provides the Authenticode X.509v3 digital signature of a code assembly as evidence for policy evaluation. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.Publisher.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.Publisher" /> class with the Authenticode X.509v3 certificate containing the publisher's public key. </summary> <param name="cert"> An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> that contains the software publisher's public key. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="cert" /> parameter is null. </exception> </member> <member name="P:System.Security.Policy.Publisher.Certificate"> <summary> Gets the publisher's Authenticode X.509v3 certificate. </summary> <returns> The publisher's <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" />. </returns> </member> <member name="M:System.Security.Policy.Publisher.Copy"> <summary> Creates an equivalent copy of the <see cref="T:System.Security.Policy.Publisher" />. </summary> <returns> A new, identical copy of the <see cref="T:System.Security.Policy.Publisher" />. </returns> </member> <member name="M:System.Security.Policy.Publisher.CreateIdentityPermission(System.Security.Policy.Evidence)"> <summary> Creates an identity permission that corresponds to the current instance of the <see cref="T:System.Security.Policy.Publisher" /> class. </summary> <returns> A <see cref="T:System.Security.Permissions.PublisherIdentityPermission" /> for the specified <see cref="T:System.Security.Policy.Publisher" />. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> from which to construct the identity permission. </param> </member> <member name="M:System.Security.Policy.Publisher.Equals(System.Object)"> <summary> Compares the current <see cref="T:System.Security.Policy.Publisher" /> to the specified object for equivalence. </summary> <returns>true if the two instances of the <see cref="T:System.Security.Policy.Publisher" /> class are equal; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Security.Policy.Publisher" /> to test for equivalence with the current object. </param> <exception cref="T:System.ArgumentException"> The <paramref name="o" /> parameter is not a <see cref="T:System.Security.Policy.Publisher" /> object. </exception> </member> <member name="M:System.Security.Policy.Publisher.GetHashCode"> <summary> Gets the hash code of the current <see cref="P:System.Security.Policy.Publisher.Certificate" />. </summary> <returns> The hash code of the current <see cref="P:System.Security.Policy.Publisher.Certificate" />. </returns> </member> <member name="M:System.Security.Policy.Publisher.ToString"> <summary> Returns a string representation of the current <see cref="T:System.Security.Policy.Publisher" />. </summary> <returns> A representation of the current <see cref="T:System.Security.Policy.Publisher" />. </returns> </member> <member name="T:System.Security.Policy.PublisherMembershipCondition"> <summary> Determines whether an assembly belongs to a code group by testing its software publisher's Authenticode X.509v3 certificate. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.PublisherMembershipCondition.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.PublisherMembershipCondition" /> class with the Authenticode X.509v3 certificate that determines membership. </summary> <param name="certificate"> An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> that contains the software publisher's public key. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="certificate" /> parameter is null. </exception> </member> <member name="P:System.Security.Policy.PublisherMembershipCondition.Certificate"> <summary> Gets or sets the Authenticode X.509v3 certificate for which the membership condition tests. </summary> <returns> The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> for which the membership condition tests. </returns> <exception cref="T:System.ArgumentNullException"> The property value is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PublisherMembershipCondition.Check(System.Security.Policy.Evidence)"> <summary> Determines whether the specified evidence satisfies the membership condition. </summary> <returns>true if the specified evidence satisfies the membership condition; otherwise, false. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> against which to make the test. </param> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.PublisherMembershipCondition.Certificate" /> property is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PublisherMembershipCondition.Copy"> <summary> Creates an equivalent copy of the membership condition. </summary> <returns> A new, identical copy of the current membership condition. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.PublisherMembershipCondition.Certificate" /> property is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PublisherMembershipCondition.Equals(System.Object)"> <summary> Determines whether the publisher certificate from the specified object is equivalent to the publisher certificate contained in the current <see cref="T:System.Security.Policy.PublisherMembershipCondition" />. </summary> <returns>true if the publisher certificate from the specified object is equivalent to the publisher certificate contained in the current <see cref="T:System.Security.Policy.PublisherMembershipCondition" />; otherwise, false. </returns> <param name="o"> The object to compare to the current <see cref="T:System.Security.Policy.PublisherMembershipCondition" />. </param> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.PublisherMembershipCondition.Certificate" /> property is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PublisherMembershipCondition.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.PublisherMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> context, used to resolve <see cref="T:System.Security.NamedPermissionSet" /> references. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.PublisherMembershipCondition.GetHashCode"> <summary> Gets the hash code for the current membership condition. </summary> <returns> The hash code for the current membership condition. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.PublisherMembershipCondition.Certificate" /> property is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PublisherMembershipCondition.ToString"> <summary> Creates and returns a string representation of the <see cref="T:System.Security.Policy.PublisherMembershipCondition" />. </summary> <returns> A representation of the <see cref="T:System.Security.Policy.PublisherMembershipCondition" />. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.PublisherMembershipCondition.Certificate" /> property is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PublisherMembershipCondition.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.PublisherMembershipCondition.Certificate" /> property is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="M:System.Security.Policy.PublisherMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state with the specified <see cref="T:System.Security.Policy.PolicyLevel" />. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> context, which is used to resolve <see cref="T:System.Security.NamedPermissionSet" /> references. </param> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.PublisherMembershipCondition.Certificate" /> property is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.KeyContainerPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Create" /> </PermissionSet> </member> <member name="T:System.Security.Policy.Site"> <summary> Provides the Web site from which a code assembly originates as evidence for policy evaluation. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.Site.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.Site" /> class with the Web site from which a code assembly originates. </summary> <param name="name"> The Web site of origin for the associated code assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Security.Policy.Site.Copy"> <summary> Creates an equivalent copy of the <see cref="T:System.Security.Policy.Site" />. </summary> <returns> A new, identical copy of the <see cref="T:System.Security.Policy.Site" />. </returns> </member> <member name="M:System.Security.Policy.Site.CreateFromUrl(System.String)"> <summary> Creates a new <see cref="T:System.Security.Policy.Site" /> from the specified URL. </summary> <returns> The new <see cref="T:System.Security.Policy.Site" />. </returns> <param name="url"> The URL from which to create the new <see cref="T:System.Security.Policy.Site" />. </param> <exception cref="T:System.ArgumentException"> The <paramref name="url" /> parameter is not a valid URL. -or- The <paramref name="url" /> parameter is a file name. </exception> </member> <member name="M:System.Security.Policy.Site.CreateIdentityPermission(System.Security.Policy.Evidence)"> <summary> Creates an identity permission that corresponds to the current <see cref="T:System.Security.Policy.Site" />. </summary> <returns> A <see cref="T:System.Security.Permissions.SiteIdentityPermission" /> for the specified <see cref="T:System.Security.Policy.Site" />. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> from which to construct the identity permission. </param> </member> <member name="M:System.Security.Policy.Site.Equals(System.Object)"> <summary> Compares the current <see cref="T:System.Security.Policy.Site" /> to the specified object for equivalence. </summary> <returns>true if the two instances of the <see cref="T:System.Security.Policy.Site" /> class are equal; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Security.Policy.Site" /> to test for equivalence with the current object. </param> </member> <member name="M:System.Security.Policy.Site.GetHashCode"> <summary> Returns the hash code of the current Web site name. </summary> <returns> The hash code of the current Web site name. </returns> </member> <member name="P:System.Security.Policy.Site.Name"> <summary> Gets the site from which the code assembly originates. </summary> <returns> The name of the site from which the code assembly originates. </returns> </member> <member name="M:System.Security.Policy.Site.ToString"> <summary> Returns a string representation of the current <see cref="T:System.Security.Policy.Site" />. </summary> <returns> A representation the current <see cref="T:System.Security.Policy.Site" />. </returns> </member> <member name="T:System.Security.Policy.SiteMembershipCondition"> <summary> Determines whether an assembly belongs to a code group by testing the site from which it originated. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.SiteMembershipCondition.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.SiteMembershipCondition" /> class with name of the site that determines membership. </summary> <param name="site"> The site name or wildcard expression. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="site" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="site" /> parameter is not a valid <see cref="T:System.Security.Policy.Site" />. </exception> </member> <member name="M:System.Security.Policy.SiteMembershipCondition.Check(System.Security.Policy.Evidence)"> <summary> Determines whether the specified evidence satisfies the membership condition. </summary> <returns>true if the specified evidence satisfies the membership condition; otherwise, false. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> against which to make the test. </param> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.SiteMembershipCondition.Site" /> property is null. </exception> </member> <member name="M:System.Security.Policy.SiteMembershipCondition.Copy"> <summary> Creates an equivalent copy of the membership condition. </summary> <returns> A new, identical copy of the current membership condition. </returns> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.SiteMembershipCondition.Site" /> property is null. </exception> </member> <member name="M:System.Security.Policy.SiteMembershipCondition.Equals(System.Object)"> <summary> Determines whether the site from the specified <see cref="T:System.Security.Policy.SiteMembershipCondition" /> object is equivalent to the site contained in the current <see cref="T:System.Security.Policy.SiteMembershipCondition" />. </summary> <returns>true if the site from the specified <see cref="T:System.Security.Policy.SiteMembershipCondition" /> object is equivalent to the site contained in the current <see cref="T:System.Security.Policy.SiteMembershipCondition" />; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Security.Policy.SiteMembershipCondition" /> object to compare to the current <see cref="T:System.Security.Policy.SiteMembershipCondition" />. </param> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.SiteMembershipCondition.Site" /> property for the current object or the specified object is null. </exception> </member> <member name="M:System.Security.Policy.SiteMembershipCondition.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.SiteMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> context, used to resolve <see cref="T:System.Security.NamedPermissionSet" /> references. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.SiteMembershipCondition.GetHashCode"> <summary> Gets the hash code for the current membership condition. </summary> <returns> The hash code for the current membership condition. </returns> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.SiteMembershipCondition.Site" /> property is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Policy.SiteMembershipCondition.Site"> <summary> Gets or sets the site for which the membership condition tests. </summary> <returns> The site for which the membership condition tests. </returns> <exception cref="T:System.ArgumentNullException"> An attempt is made to set <see cref="P:System.Security.Policy.SiteMembershipCondition.Site" /> to null. </exception> <exception cref="T:System.ArgumentException"> An attempt is made to set <see cref="P:System.Security.Policy.SiteMembershipCondition.Site" /> to an invalid <see cref="T:System.Security.Policy.Site" />. </exception> </member> <member name="M:System.Security.Policy.SiteMembershipCondition.ToString"> <summary> Creates and returns a string representation of the membership condition. </summary> <returns> A string representation of the membership condition. </returns> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.SiteMembershipCondition.Site" /> property is null. </exception> </member> <member name="M:System.Security.Policy.SiteMembershipCondition.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.SiteMembershipCondition.Site" /> property is null. </exception> </member> <member name="M:System.Security.Policy.SiteMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state with the specified <see cref="T:System.Security.Policy.PolicyLevel" />. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> context, used to resolve <see cref="T:System.Security.NamedPermissionSet" /> references. </param> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.SiteMembershipCondition.Site" /> property is null. </exception> </member> <member name="T:System.Security.Policy.StrongName"> <summary> Provides the strong name of a code assembly as evidence for policy evaluation. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.StrongName.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.StrongName" /> class with the strong name public key blob, name, and version. </summary> <param name="blob"> The <see cref="T:System.Security.Permissions.StrongNamePublicKeyBlob" /> of the software publisher. </param> <param name="name"> The simple name section of the strong name. </param> <param name="version"> The <see cref="T:System.Version" /> of the strong name. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="blob" /> parameter is null. -or- The <paramref name="name" /> parameter is null. -or- The <paramref name="version" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is an empty string (""). </exception> </member> <member name="M:System.Security.Policy.StrongName.Copy"> <summary> Creates an equivalent copy of the current <see cref="T:System.Security.Policy.StrongName" />. </summary> <returns> A new, identical copy of the current <see cref="T:System.Security.Policy.StrongName" />. </returns> </member> <member name="M:System.Security.Policy.StrongName.CreateIdentityPermission(System.Security.Policy.Evidence)"> <summary> Creates a <see cref="T:System.Security.Permissions.StrongNameIdentityPermission" /> that corresponds to the current <see cref="T:System.Security.Policy.StrongName" />. </summary> <returns> A <see cref="T:System.Security.Permissions.StrongNameIdentityPermission" /> for the specified <see cref="T:System.Security.Policy.StrongName" />. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> from which to construct the <see cref="T:System.Security.Permissions.StrongNameIdentityPermission" />. </param> </member> <member name="M:System.Security.Policy.StrongName.Equals(System.Object)"> <summary> Determines whether the specified strong name is equal to the current strong name. </summary> <returns>true if the specified strong name is equal to the current strong name; otherwise, false. </returns> <param name="o"> The strong name to compare against the current strong name. </param> </member> <member name="M:System.Security.Policy.StrongName.GetHashCode"> <summary> Gets the hash code of the current <see cref="T:System.Security.Policy.StrongName" />. </summary> <returns> The hash code of the current <see cref="T:System.Security.Policy.StrongName" />. </returns> </member> <member name="P:System.Security.Policy.StrongName.Name"> <summary> Gets the simple name of the current <see cref="T:System.Security.Policy.StrongName" />. </summary> <returns> The simple name part of the <see cref="T:System.Security.Policy.StrongName" />. </returns> </member> <member name="P:System.Security.Policy.StrongName.PublicKey"> <summary> Gets the <see cref="T:System.Security.Permissions.StrongNamePublicKeyBlob" /> of the current <see cref="T:System.Security.Policy.StrongName" />. </summary> <returns> The <see cref="T:System.Security.Permissions.StrongNamePublicKeyBlob" /> of the current <see cref="T:System.Security.Policy.StrongName" />. </returns> </member> <member name="M:System.Security.Policy.StrongName.ToString"> <summary> Creates a string representation of the current <see cref="T:System.Security.Policy.StrongName" />. </summary> <returns> A representation of the current <see cref="T:System.Security.Policy.StrongName" />. </returns> </member> <member name="P:System.Security.Policy.StrongName.Version"> <summary> Gets the <see cref="T:System.Version" /> of the current <see cref="T:System.Security.Policy.StrongName" />. </summary> <returns> The <see cref="T:System.Version" /> of the current <see cref="T:System.Security.Policy.StrongName" />. </returns> </member> <member name="T:System.Security.Policy.StrongNameMembershipCondition"> <summary> Determines whether an assembly belongs to a code group by testing its strong name. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.StrongNameMembershipCondition.#ctor(System.Security.Permissions.StrongNamePublicKeyBlob,System.String,System.Version)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /> class with the strong name public key blob, name, and version number that determine membership. </summary> <param name="blob"> The strong name public key blob of the software publisher. </param> <param name="name"> The simple name section of the strong name. </param> <param name="version"> The version number of the strong name. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="blob" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="name" /> parameter is null. -or- The <paramref name="name" /> parameter is an empty string (""). </exception> </member> <member name="M:System.Security.Policy.StrongNameMembershipCondition.Check(System.Security.Policy.Evidence)"> <summary> Determines whether the specified evidence satisfies the membership condition. </summary> <returns>true if the specified evidence satisfies the membership condition; otherwise, false. </returns> <param name="evidence"> The <see cref="T:System.Security.Policy.Evidence" /> against which to make the test. </param> </member> <member name="M:System.Security.Policy.StrongNameMembershipCondition.Copy"> <summary> Creates an equivalent copy of the current <see cref="T:System.Security.Policy.StrongNameMembershipCondition" />. </summary> <returns> A new, identical copy of the current <see cref="T:System.Security.Policy.StrongNameMembershipCondition" /></returns> </member> <member name="M:System.Security.Policy.StrongNameMembershipCondition.Equals(System.Object)"> <summary> Determines whether the <see cref="T:System.Security.Policy.StrongName" /> from the specified object is equivalent to the <see cref="T:System.Security.Policy.StrongName" /> contained in the current <see cref="T:System.Security.Policy.StrongNameMembershipCondition" />. </summary> <returns>true if the <see cref="T:System.Security.Policy.StrongName" /> from the specified object is equivalent to the <see cref="T:System.Security.Policy.StrongName" /> contained in the current <see cref="T:System.Security.Policy.StrongNameMembershipCondition" />; otherwise, false. </returns> <param name="o"> The object to compare to the current <see cref="T:System.Security.Policy.StrongNameMembershipCondition" />. </param> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.StrongNameMembershipCondition.PublicKey" /> property of the current object or the specified object is null. </exception> </member> <member name="M:System.Security.Policy.StrongNameMembershipCondition.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> </member> <member name="M:System.Security.Policy.StrongNameMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> context, used to resolve <see cref="T:System.Security.NamedPermissionSet" /> references. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.StrongNameMembershipCondition.GetHashCode"> <summary> Returns the hash code for the current <see cref="T:System.Security.Policy.StrongNameMembershipCondition" />. </summary> <returns> The hash code for the current <see cref="T:System.Security.Policy.StrongNameMembershipCondition" />. </returns> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.StrongNameMembershipCondition.PublicKey" /> property is null. </exception> </member> <member name="P:System.Security.Policy.StrongNameMembershipCondition.Name"> <summary> Gets or sets the simple name of the <see cref="T:System.Security.Policy.StrongName" /> for which the membership condition tests. </summary> <returns> The simple name of the <see cref="T:System.Security.Policy.StrongName" /> for which the membership condition tests. </returns> <exception cref="T:System.ArgumentException"> The value is null. -or- The value is an empty string (""). </exception> </member> <member name="P:System.Security.Policy.StrongNameMembershipCondition.PublicKey"> <summary> Gets or sets the <see cref="T:System.Security.Permissions.StrongNamePublicKeyBlob" /> of the <see cref="T:System.Security.Policy.StrongName" /> for which the membership condition tests. </summary> <returns> The <see cref="T:System.Security.Permissions.StrongNamePublicKeyBlob" /> of the <see cref="T:System.Security.Policy.StrongName" /> for which the membership condition tests. </returns> <exception cref="T:System.ArgumentNullException"> An attempt is made to set the <see cref="P:System.Security.Policy.StrongNameMembershipCondition.PublicKey" /> to null. </exception> </member> <member name="M:System.Security.Policy.StrongNameMembershipCondition.ToString"> <summary> Creates and returns a string representation of the current <see cref="T:System.Security.Policy.StrongNameMembershipCondition" />. </summary> <returns> A representation of the current <see cref="T:System.Security.Policy.StrongNameMembershipCondition" />. </returns> </member> <member name="M:System.Security.Policy.StrongNameMembershipCondition.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> </member> <member name="M:System.Security.Policy.StrongNameMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state with the specified <see cref="T:System.Security.Policy.PolicyLevel" />. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <param name="level"> The <see cref="T:System.Security.Policy.PolicyLevel" /> context, which is used to resolve <see cref="T:System.Security.NamedPermissionSet" /> references. </param> </member> <member name="P:System.Security.Policy.StrongNameMembershipCondition.Version"> <summary> Gets or sets the <see cref="T:System.Version" /> of the <see cref="T:System.Security.Policy.StrongName" /> for which the membership condition tests. </summary> <returns> The <see cref="T:System.Version" /> of the <see cref="T:System.Security.Policy.StrongName" /> for which the membership condition tests. </returns> </member> <member name="T:System.Security.Policy.TrustManagerContext"> <summary> Represents the context for the trust manager to consider when making the decision to run an application, and when setting up the security on a new <see cref="T:System.AppDomain" /> in which to run an application. </summary> </member> <member name="M:System.Security.Policy.TrustManagerContext.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.TrustManagerContext" /> class. </summary> </member> <member name="M:System.Security.Policy.TrustManagerContext.#ctor(System.Security.Policy.TrustManagerUIContext)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.TrustManagerContext" /> class using the specified <see cref="T:System.Security.Policy.TrustManagerUIContext" /> object. </summary> <param name="uiContext"> One of the <see cref="T:System.Security.Policy.TrustManagerUIContext" /> values that specifies the type of trust manager user interface to use. </param> </member> <member name="P:System.Security.Policy.TrustManagerContext.IgnorePersistedDecision"> <summary> Gets or sets a value indicating whether the application security manager should ignore any persisted decisions and call the trust manager. </summary> <returns>true to call the trust manager; otherwise, false. </returns> </member> <member name="P:System.Security.Policy.TrustManagerContext.KeepAlive"> <summary> Gets or sets a value indicating whether the trust manager should cache state for this application, to facilitate future requests to determine application trust. </summary> <returns>true to cache state data; otherwise, false. The default is false. </returns> </member> <member name="P:System.Security.Policy.TrustManagerContext.NoPrompt"> <summary> Gets or sets a value indicating whether the trust manager should prompt the user for trust decisions. </summary> <returns>true to not prompt the user; false to prompt the user. The default is false. </returns> </member> <member name="P:System.Security.Policy.TrustManagerContext.Persist"> <summary> Gets or sets a value indicating whether the user's response to the consent dialog should be persisted. </summary> <returns>true to cache state data; otherwise, false. The default is true. </returns> </member> <member name="P:System.Security.Policy.TrustManagerContext.PreviousApplicationIdentity"> <summary> Gets or sets the identity of the previous application identity. </summary> <returns> An <see cref="T:System.ApplicationIdentity" /> object representing the previous <see cref="T:System.ApplicationIdentity" />. </returns> </member> <member name="P:System.Security.Policy.TrustManagerContext.UIContext"> <summary> Gets or sets the type of user interface the trust manager should display. </summary> <returns> One of the <see cref="T:System.Security.Policy.TrustManagerUIContext" /> values. The default is <see cref="F:System.Security.Policy.TrustManagerUIContext.Run" />. </returns> </member> <member name="T:System.Security.Policy.TrustManagerUIContext"> <summary> Specifies the type of user interface (UI) the trust manager should use for trust decisions. </summary> </member> <member name="F:System.Security.Policy.TrustManagerUIContext.Install"> <summary> An Install UI. </summary> </member> <member name="F:System.Security.Policy.TrustManagerUIContext.Upgrade"> <summary> An Upgrade UI. </summary> </member> <member name="F:System.Security.Policy.TrustManagerUIContext.Run"> <summary> A Run UI. </summary> </member> <member name="T:System.Security.Policy.UnionCodeGroup"> <summary> Represents a code group whose policy statement is the union of the current code group's policy statement and the policy statement of all its matching child code groups. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.UnionCodeGroup.#ctor(System.Security.Policy.IMembershipCondition,System.Security.Policy.PolicyStatement)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.UnionCodeGroup" /> class. </summary> <param name="membershipCondition"> A membership condition that tests evidence to determine whether this code group applies policy. </param> <param name="policy"> The policy statement for the code group in the form of a permission set and attributes to grant code that matches the membership condition. </param> <exception cref="T:System.ArgumentException"> The type of the <paramref name="membershipCondition" /> parameter is not valid. -or- The type of the <paramref name="policy" /> parameter is not valid. </exception> </member> <member name="M:System.Security.Policy.UnionCodeGroup.Copy"> <summary> Makes a deep copy of the current code group. </summary> <returns> An equivalent copy of the current code group, including its membership conditions and child code groups. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="P:System.Security.Policy.UnionCodeGroup.MergeLogic"> <summary> Gets the merge logic. </summary> <returns> Always the string "Union". </returns> </member> <member name="M:System.Security.Policy.UnionCodeGroup.Resolve(System.Security.Policy.Evidence)"> <summary> Resolves policy for the code group and its descendants for a set of evidence. </summary> <returns> A policy statement consisting of the permissions granted by the code group with optional attributes, or null if the code group does not apply (the membership condition does not match the specified evidence). </returns> <param name="evidence"> The evidence for the assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="evidence" /> parameter is null. </exception> <exception cref="T:System.Security.Policy.PolicyException"> More than one code group (including the parent code group and any child code groups) is marked <see cref="F:System.Security.Policy.PolicyStatementAttribute.Exclusive" />. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.UnionCodeGroup.ResolveMatchingCodeGroups(System.Security.Policy.Evidence)"> <summary> Resolves matching code groups. </summary> <returns> A <see cref="T:System.Security.Policy.CodeGroup" />. </returns> <param name="evidence"> The evidence for the assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="evidence" /> parameter is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Security.Policy.Url"> <summary> Provides the URL from which a code assembly originates as evidence for policy evaluation. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.Url.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.Url" /> class with the URL from which a code assembly originates. </summary> <param name="name"> The URL of origin for the associated code assembly. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Security.Policy.Url.Copy"> <summary> Creates a new copy of the evidence object. </summary> <returns> A new, identical copy of the evidence object. </returns> </member> <member name="M:System.Security.Policy.Url.CreateIdentityPermission(System.Security.Policy.Evidence)"> <summary> Creates an identity permission corresponding to the current instance of the <see cref="T:System.Security.Policy.Url" /> evidence class. </summary> <returns> A <see cref="T:System.Security.Permissions.UrlIdentityPermission" /> for the specified <see cref="T:System.Security.Policy.Url" /> evidence. </returns> <param name="evidence"> The evidence set from which to construct the identity permission. </param> </member> <member name="M:System.Security.Policy.Url.Equals(System.Object)"> <summary> Compares the current <see cref="T:System.Security.Policy.Url" /> evidence object to the specified object for equivalence. </summary> <returns>true if the two <see cref="T:System.Security.Policy.Url" /> objects are equal; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Security.Policy.Url" /> evidence object to test for equivalence with the current object. </param> </member> <member name="M:System.Security.Policy.Url.GetHashCode"> <summary> Gets the hash code of the current URL. </summary> <returns> The hash code of the current URL. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.Url.ToString"> <summary> Returns a string representation of the current <see cref="T:System.Security.Policy.Url" />. </summary> <returns> A representation of the current <see cref="T:System.Security.Policy.Url" />. </returns> </member> <member name="P:System.Security.Policy.Url.Value"> <summary> Gets the URL from which the code assembly originates. </summary> <returns> The URL from which the code assembly originates. </returns> </member> <member name="T:System.Security.Policy.UrlMembershipCondition"> <summary> Determines whether an assembly belongs to a code group by testing its URL. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.UrlMembershipCondition.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.UrlMembershipCondition" /> class with the URL that determines membership. </summary> <param name="url"> The URL for which to test. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="url" /> parameter is null. </exception> </member> <member name="M:System.Security.Policy.UrlMembershipCondition.Check(System.Security.Policy.Evidence)"> <summary> Determines whether the specified evidence satisfies the membership condition. </summary> <returns>true if the specified evidence satisfies the membership condition; otherwise, false. </returns> <param name="evidence"> The evidence set against which to make the test. </param> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.UrlMembershipCondition.Url" /> property is null. </exception> </member> <member name="M:System.Security.Policy.UrlMembershipCondition.Copy"> <summary> Creates an equivalent copy of the membership condition. </summary> <returns> A new, identical copy of the current membership condition. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.UrlMembershipCondition.Url" /> property is null. </exception> </member> <member name="M:System.Security.Policy.UrlMembershipCondition.Equals(System.Object)"> <summary> Determines whether the URL from the specified object is equivalent to the URL contained in the current <see cref="T:System.Security.Policy.UrlMembershipCondition" />. </summary> <returns>true if the URL from the specified object is equivalent to the URL contained in the current <see cref="T:System.Security.Policy.UrlMembershipCondition" />; otherwise, false. </returns> <param name="o"> The object to compare to the current <see cref="T:System.Security.Policy.UrlMembershipCondition" />. </param> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.UrlMembershipCondition.Url" /> property of the current object or the specified object is null. </exception> </member> <member name="M:System.Security.Policy.UrlMembershipCondition.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.UrlMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The policy level context, used to resolve named permission set references. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.UrlMembershipCondition.GetHashCode"> <summary> Gets the hash code for the current membership condition. </summary> <returns> The hash code for the current membership condition. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.UrlMembershipCondition.Url" /> property is null. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Security.Policy.UrlMembershipCondition.ToString"> <summary> Creates and returns a string representation of the membership condition. </summary> <returns> A string representation of the state of the membership condition. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.UrlMembershipCondition.Url" /> property is null. </exception> </member> <member name="M:System.Security.Policy.UrlMembershipCondition.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> </member> <member name="M:System.Security.Policy.UrlMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state with the specified <see cref="T:System.Security.Policy.PolicyLevel" />. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <param name="level"> The policy level context for resolving named permission set references. </param> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.UrlMembershipCondition.Url" /> property is null. </exception> </member> <member name="P:System.Security.Policy.UrlMembershipCondition.Url"> <summary> Gets or sets the URL for which the membership condition tests. </summary> <returns> The URL for which the membership condition tests. </returns> <exception cref="T:System.ArgumentNullException"> An attempt is made to set <see cref="P:System.Security.Policy.UrlMembershipCondition.Url" /> to null. </exception> </member> <member name="T:System.Security.Policy.Zone"> <summary> Provides the security zone of a code assembly as evidence for policy evaluation. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.Zone.#ctor(System.Security.SecurityZone)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.Zone" /> class with the zone from which a code assembly originates. </summary> <param name="zone"> The zone of origin for the associated code assembly. </param> <exception cref="T:System.ArgumentException"> The <paramref name="zone" /> parameter is not a valid <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="M:System.Security.Policy.Zone.Copy"> <summary> Creates an equivalent copy of the evidence object. </summary> <returns> A new, identical copy of the evidence object. </returns> </member> <member name="M:System.Security.Policy.Zone.CreateFromUrl(System.String)"> <summary> Creates a new zone with the specified URL. </summary> <returns> A new zone with the specified URL. </returns> <param name="url"> The URL from which to create the zone. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="url" /> parameter is null. </exception> </member> <member name="M:System.Security.Policy.Zone.CreateIdentityPermission(System.Security.Policy.Evidence)"> <summary> Creates an identity permission that corresponds to the current instance of the <see cref="T:System.Security.Policy.Zone" /> evidence class. </summary> <returns> A <see cref="T:System.Security.Permissions.ZoneIdentityPermission" /> for the specified <see cref="T:System.Security.Policy.Zone" /> evidence. </returns> <param name="evidence"> The evidence set from which to construct the identity permission. </param> </member> <member name="M:System.Security.Policy.Zone.Equals(System.Object)"> <summary> Compares the current <see cref="T:System.Security.Policy.Zone" /> evidence object to the specified object for equivalence. </summary> <returns>true if the two <see cref="T:System.Security.Policy.Zone" /> objects are equal; otherwise, false. </returns> <param name="o"> The <see cref="T:System.Security.Policy.Zone" /> evidence object to test for equivalence with the current object. </param> <exception cref="T:System.ArgumentException"> The <paramref name="o" /> parameter is not a <see cref="T:System.Security.Policy.Zone" /> object. </exception> </member> <member name="M:System.Security.Policy.Zone.GetHashCode"> <summary> Gets the hash code of the current zone. </summary> <returns> The hash code of the current zone. </returns> </member> <member name="P:System.Security.Policy.Zone.SecurityZone"> <summary> Gets the zone from which the code assembly originates. </summary> <returns> The zone from which the code assembly originates. </returns> </member> <member name="M:System.Security.Policy.Zone.ToString"> <summary> Returns a string representation of the current <see cref="T:System.Security.Policy.Zone" />. </summary> <returns> A representation of the current <see cref="T:System.Security.Policy.Zone" />. </returns> </member> <member name="T:System.Security.Policy.ZoneMembershipCondition"> <summary> Determines whether an assembly belongs to a code group by testing its zone of origin. This class cannot be inherited. </summary> </member> <member name="M:System.Security.Policy.ZoneMembershipCondition.#ctor(System.Security.SecurityZone)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Policy.ZoneMembershipCondition" /> class with the zone that determines membership. </summary> <param name="zone"> The <see cref="T:System.Security.SecurityZone" /> for which to test. </param> <exception cref="T:System.ArgumentException"> The <paramref name="zone" /> parameter is not a valid <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="M:System.Security.Policy.ZoneMembershipCondition.Check(System.Security.Policy.Evidence)"> <summary> Determines whether the specified evidence satisfies the membership condition. </summary> <returns>true if the specified evidence satisfies the membership condition; otherwise, false. </returns> <param name="evidence"> The evidence set against which to make the test. </param> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is not a valid <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="M:System.Security.Policy.ZoneMembershipCondition.Copy"> <summary> Creates an equivalent copy of the membership condition. </summary> <returns> A new, identical copy of the current membership condition. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is not a valid <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="M:System.Security.Policy.ZoneMembershipCondition.Equals(System.Object)"> <summary> Determines whether the zone from the specified object is equivalent to the zone contained in the current <see cref="T:System.Security.Policy.ZoneMembershipCondition" />. </summary> <returns>true if the zone from the specified object is equivalent to the zone contained in the current <see cref="T:System.Security.Policy.ZoneMembershipCondition" />; otherwise, false. </returns> <param name="o"> The object to compare to the current <see cref="T:System.Security.Policy.ZoneMembershipCondition" />. </param> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property for the current object or the specified object is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property for the current object or the specified object is not a valid <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="M:System.Security.Policy.ZoneMembershipCondition.FromXml(System.Security.SecurityElement)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.ZoneMembershipCondition.FromXml(System.Security.SecurityElement,System.Security.Policy.PolicyLevel)"> <summary> Reconstructs a security object with a specified state from an XML encoding. </summary> <param name="e"> The XML encoding to use to reconstruct the security object. </param> <param name="level"> The policy level context used to resolve named permission set references. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="e" /> parameter is null. </exception> <exception cref="T:System.ArgumentException"> The <paramref name="e" /> parameter is not a valid membership condition element. </exception> </member> <member name="M:System.Security.Policy.ZoneMembershipCondition.GetHashCode"> <summary> Gets the hash code for the current membership condition. </summary> <returns> The hash code for the current membership condition. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is not a valid <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone"> <summary> Gets or sets the zone for which the membership condition tests. </summary> <returns> The zone for which the membership condition tests. </returns> <exception cref="T:System.ArgumentNullException"> The value is null. </exception> <exception cref="T:System.ArgumentException"> An attempt is made to set <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> to an invalid <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="M:System.Security.Policy.ZoneMembershipCondition.ToString"> <summary> Creates and returns a string representation of the membership condition. </summary> <returns> A string representation of the state of the membership condition. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is not a valid <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="M:System.Security.Policy.ZoneMembershipCondition.ToXml"> <summary> Creates an XML encoding of the security object and its current state. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is not a valid <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="M:System.Security.Policy.ZoneMembershipCondition.ToXml(System.Security.Policy.PolicyLevel)"> <summary> Creates an XML encoding of the security object and its current state with the specified <see cref="T:System.Security.Policy.PolicyLevel" />. </summary> <returns> An XML encoding of the security object, including any state information. </returns> <param name="level"> The policy level context for resolving named permission set references. </param> <exception cref="T:System.ArgumentNullException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is null. </exception> <exception cref="T:System.ArgumentException"> The <see cref="P:System.Security.Policy.ZoneMembershipCondition.SecurityZone" /> property is not a valid <see cref="T:System.Security.SecurityZone" />. </exception> </member> <member name="T:System.Security.Principal.GenericIdentity"> <summary> Represents a generic user. </summary> </member> <member name="M:System.Security.Principal.GenericIdentity.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.GenericIdentity" /> class representing the user with the specified name. </summary> <param name="name"> The name of the user on whose behalf the code is running. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. </exception> </member> <member name="M:System.Security.Principal.GenericIdentity.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.GenericIdentity" /> class representing the user with the specified name and authentication type. </summary> <param name="name"> The name of the user on whose behalf the code is running. </param> <param name="type"> The type of authentication used to identify the user. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="name" /> parameter is null. -or- The <paramref name="type" /> parameter is null. </exception> </member> <member name="P:System.Security.Principal.GenericIdentity.AuthenticationType"> <summary> Gets the type of authentication used to identify the user. </summary> <returns> The type of authentication used to identify the user. </returns> </member> <member name="P:System.Security.Principal.GenericIdentity.IsAuthenticated"> <summary> Gets a value indicating whether the user has been authenticated. </summary> <returns>true if the user was has been authenticated; otherwise, false. </returns> </member> <member name="P:System.Security.Principal.GenericIdentity.Name"> <summary> Gets the user's name. </summary> <returns> The name of the user on whose behalf the code is being run. </returns> </member> <member name="T:System.Security.Principal.GenericPrincipal"> <summary> Represents a generic principal. </summary> </member> <member name="M:System.Security.Principal.GenericPrincipal.#ctor(System.Security.Principal.IIdentity,System.String[])"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.GenericPrincipal" /> class from a user identity and an array of role names to which the user represented by that identity belongs. </summary> <param name="identity"> A basic implementation of <see cref="T:System.Security.Principal.IIdentity" /> that represents any user. </param> <param name="roles"> An array of role names to which the user represented by the <paramref name="identity" /> parameter belongs. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="identity" /> parameter is null. </exception> </member> <member name="P:System.Security.Principal.GenericPrincipal.Identity"> <summary> Gets the <see cref="T:System.Security.Principal.GenericIdentity" /> of the user represented by the current <see cref="T:System.Security.Principal.GenericPrincipal" />. </summary> <returns> The <see cref="T:System.Security.Principal.GenericIdentity" /> of the user represented by the <see cref="T:System.Security.Principal.GenericPrincipal" />. </returns> </member> <member name="M:System.Security.Principal.GenericPrincipal.IsInRole(System.String)"> <summary> Determines whether the current <see cref="T:System.Security.Principal.GenericPrincipal" /> belongs to the specified role. </summary> <returns>true if the current <see cref="T:System.Security.Principal.GenericPrincipal" /> is a member of the specified role; otherwise, false. </returns> <param name="role"> The name of the role for which to check membership. </param> </member> <member name="T:System.Security.Principal.IdentityNotMappedException"> <summary> Represents an exception for a principal whose identity could not be mapped to a known identity. </summary> </member> <member name="M:System.Security.Principal.IdentityNotMappedException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.IdentityNotMappedException" /> class. </summary> </member> <member name="M:System.Security.Principal.IdentityNotMappedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.IdentityNotMappedException" /> class by using the specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Security.Principal.IdentityNotMappedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.IdentityNotMappedException" /> class by using the specified error message and inner exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If <paramref name="inner" /> is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Security.Principal.IdentityNotMappedException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Gets serialization information with the data needed to create an instance of this <see cref="T:System.Security.Principal.IdentityNotMappedException" /> object. </summary> <param name="serializationInfo"> The <see cref="T:System.Runtime.Serialization." /><see cref="SerializationInfo" /> object that holds the serialized object data about the exception being thrown. </param> <param name="streamingContext"> The <see cref="T:System.Runtime.SerializationInfo." /><see cref="StreamingContext" /> object that contains contextual information about the source or destination. </param> </member> <member name="P:System.Security.Principal.IdentityNotMappedException.UnmappedIdentities"> <summary> Represents the collection of unmapped identities for an <see cref="T:System.Security.Principal.IdentityNotMappedException" /> exception. </summary> <returns> The collection of unmapped identities. </returns> </member> <member name="T:System.Security.Principal.IdentityReference"> <summary> Represents an identity and is the base class for the <see cref="T:System.Security.Principal.NTAccount" /> and <see cref="T:System.Security.Principal.SecurityIdentifier" /> classes. This class does not provide a public constructor, and therefore cannot be inherited. </summary> </member> <member name="M:System.Security.Principal.IdentityReference.Equals(System.Object)"> <summary> Returns a value that indicates whether the specified object equals this instance of the <see cref="T:System.Security.Principal.IdentityReference" /> class. </summary> <returns>true if <paramref name="o" /> is an object with the same underlying type and value as this <see cref="T:System.Security.Principal.IdentityReference" /> instance; otherwise, false. </returns> <param name="o"> An object to compare with this <see cref="T:System.Security.Principal.IdentityReference" /> instance, or a null reference. </param> </member> <member name="M:System.Security.Principal.IdentityReference.GetHashCode"> <summary> Serves as a hash function for <see cref="T:System.Security.Principal.IdentityReference" />. <see cref="M:System.Security.Principal.IdentityReference.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table. </summary> <returns> The hash code for this <see cref="T:System.Security.Principal.IdentityReference" /> object. </returns> </member> <member name="M:System.Security.Principal.IdentityReference.IsValidTargetType(System.Type)"> <summary> Returns a value that indicates whether the specified type is a valid translation type for the <see cref="T:System.Security.Principal.IdentityReference" /> class. </summary> <returns>true if <paramref name="targetType" /> is a valid translation type for the <see cref="T:System.Security.Principal.IdentityReference" /> class; otherwise, false. </returns> <param name="targetType"> The type being queried for validity to serve as a conversion from <see cref="T:System.Security.Principal.IdentityReference" />. The following target types are valid: <see cref="T:System.Security.Principal.NTAccount" /><see cref="T:System.Security.Principal.SecurityIdentifier" /></param> </member> <member name="M:System.Security.Principal.IdentityReference.op_Equality(System.Security.Principal.IdentityReference,System.Security.Principal.IdentityReference)"> <summary> Compares two <see cref="T:System.Security.Principal.IdentityReference" /> objects to determine whether they are equal. They are considered equal if they have the same canonical name representation as the one returned by the <see cref="P:System.Security.Principal.IdentityReference.Value" /> property or if they are both null. </summary> <returns>true if <paramref name="left" /> and <paramref name="right" /> are equal; otherwise, false. </returns> <param name="left"> The left <see cref="T:System.Security.Principal.IdentityReference" /> operand to use for the equality comparison. This parameter can be null. </param> <param name="right"> The right <see cref="T:System.Security.Principal.IdentityReference" /> operand to use for the equality comparison. This parameter can be null. </param> </member> <member name="M:System.Security.Principal.IdentityReference.op_Inequality(System.Security.Principal.IdentityReference,System.Security.Principal.IdentityReference)"> <summary> Compares two <see cref="T:System.Security.Principal.IdentityReference" /> objects to determine whether they are not equal. They are considered not equal if they have different canonical name representations than the one returned by the <see cref="P:System.Security.Principal.IdentityReference.Value" /> property or if one of the objects is null and the other is not. </summary> <returns>true if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, false. </returns> <param name="left"> The left <see cref="T:System.Security.Principal.IdentityReference" /> operand to use for the inequality comparison. This parameter can be null. </param> <param name="right"> The right <see cref="T:System.Security.Principal.IdentityReference" /> operand to use for the inequality comparison. This parameter can be null. </param> </member> <member name="M:System.Security.Principal.IdentityReference.ToString"> <summary> Returns the string representation of the identity represented by the <see cref="T:System.Security.Principal.IdentityReference" /> object. </summary> <returns> The identity in string format. </returns> </member> <member name="M:System.Security.Principal.IdentityReference.Translate(System.Type)"> <summary> Translates the account name represented by the <see cref="T:System.Security.Principal.IdentityReference" /> object into another <see cref="T:System.Security.Principal.IdentityReference" />-derived type. </summary> <returns> The converted identity. </returns> <param name="targetType"> The target type for the conversion from <see cref="T:System.Security.Principal.IdentityReference" />. </param> </member> <member name="P:System.Security.Principal.IdentityReference.Value"> <summary> Gets the string value of the identity represented by the <see cref="T:System.Security.Principal.IdentityReference" /> object. </summary> <returns> The string value of the identity represented by the <see cref="T:System.Security.Principal.IdentityReference" /> object. </returns> </member> <member name="T:System.Security.Principal.IdentityReferenceCollection"> <summary> Represents a collection of <see cref="T:System.Security.Principal.IdentityReference" /> objects and provides a means of converting sets of <see cref="T:System.Security.Principal.IdentityReference" />-derived objects to <see cref="T:System.Security.Principal.IdentityReference" />-derived types. </summary> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> class with zero items in the collection. </summary> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> class by using the specified initial size. </summary> <param name="capacity"> The initial number of items in the collection. The value of <paramref name="capacity" /> is a hint only; it is not necessarily the maximum number of items created. </param> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.Add(System.Security.Principal.IdentityReference)"> <summary> Adds an <see cref="T:System.Security.Principal.IdentityReference" /> object to the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection. </summary> <param name="identity"> The <see cref="T:System.Security.Principal.IdentityReference" /> object to add to the collection. </param> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.Clear"> <summary> Clears all <see cref="T:System.Security.Principal.IdentityReference" /> objects from the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection. </summary> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.Contains(System.Security.Principal.IdentityReference)"> <summary> Indicates whether the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection contains the specified <see cref="T:System.Security.Principal.IdentityReference" /> object. </summary> <returns>true if the collection contains the specified object. </returns> <param name="identity"> The <see cref="T:System.Security.Principal.IdentityReference" /> object to check for. </param> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.CopyTo(System.Security.Principal.IdentityReference[],System.Int32)"> <summary> Copies the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection to an <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> array, starting at the specified index. </summary> <param name="array"> An <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> array object to which the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection is to be copied. </param> <param name="offset"> The zero-based index in <paramref name="array" /> where the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection is to be copied. </param> </member> <member name="P:System.Security.Principal.IdentityReferenceCollection.Count"> <summary> Gets the number of items in the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection. </summary> <returns> The number of <see cref="T:System.Security.Principal.IdentityReference" /> objects in the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection. </returns> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.GetEnumerator"> <summary> Gets an enumerator that can be used to iterate through the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection. </summary> <returns> An enumerator for the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection. </returns> </member> <member name="P:System.Security.Principal.IdentityReferenceCollection.IsReadOnly"> <summary> Gets a value that indicates whether the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection is read-only. </summary> <returns>true if the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection is read-only. </returns> </member> <member name="P:System.Security.Principal.IdentityReferenceCollection.Item(System.Int32)"> <summary> Sets or gets the node at the specified index of the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection. </summary> <returns> The <see cref="T:System.Security.Principal.IdentityReference" /> at the specified index in the collection. If <paramref name="index" /> is greater than or equal to the number of nodes in the collection, the return value is null. </returns> <param name="index"> The zero-based index in the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection. </param> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.Remove(System.Security.Principal.IdentityReference)"> <summary> Removes the specified <see cref="T:System.Security.Principal.IdentityReference" /> object from the collection. </summary> <returns>true if the specified object was removed from the collection. </returns> <param name="identity"> The <see cref="T:System.Security.Principal.IdentityReference" /> object to remove. </param> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.System#Collections#IEnumerable#GetEnumerator"> <summary> Gets an enumerator that can be used to iterate through the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection. </summary> <returns> An enumerator for the <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection. </returns> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.Translate(System.Type)"> <summary> Converts the objects in the collection to the specified type. Calling this method is the same as calling <see cref="M:System.Security.Principal.IdentityReferenceCollection.Translate(System.Type,System.Boolean)" /> with the second parameter set to false, which means that exceptions will not be thrown for items that fail conversion. </summary> <returns> A <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection that represents the converted contents of the original collection. </returns> <param name="targetType"> The type to which items in the collection are being converted. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.Principal.IdentityReferenceCollection.Translate(System.Type,System.Boolean)"> <summary> Converts the objects in the collection to the specified type and uses the specified fault tolerance to handle or ignore errors associated with a type not having a conversion mapping. </summary> <returns> A <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> collection that represents the converted contents of the original collection. </returns> <param name="targetType"> The type to which items in the collection are being converted. </param> <param name="forceSuccess"> A Boolean value that determines how conversion errors are handled. If <paramref name="forceSuccess" /> is true, conversion errors due to a mapping not being found for the translation result in a failed conversion and exceptions being thrown. If <paramref name="forceSuccess" /> is false, types that failed to convert due to a mapping not being found for the translation are copied without being converted into the collection being returned. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="T:System.Security.Principal.IIdentity"> <summary> Defines the basic functionality of an identity object. </summary> </member> <member name="P:System.Security.Principal.IIdentity.AuthenticationType"> <summary> Gets the type of authentication used. </summary> <returns> The type of authentication used to identify the user. </returns> </member> <member name="P:System.Security.Principal.IIdentity.IsAuthenticated"> <summary> Gets a value that indicates whether the user has been authenticated. </summary> <returns>true if the user was authenticated; otherwise, false. </returns> </member> <member name="P:System.Security.Principal.IIdentity.Name"> <summary> Gets the name of the current user. </summary> <returns> The name of the user on whose behalf the code is running. </returns> </member> <member name="T:System.Security.Principal.IPrincipal"> <summary> Defines the basic functionality of a principal object. </summary> </member> <member name="P:System.Security.Principal.IPrincipal.Identity"> <summary> Gets the identity of the current principal. </summary> <returns> The <see cref="T:System.Security.Principal.IIdentity" /> object associated with the current principal. </returns> </member> <member name="M:System.Security.Principal.IPrincipal.IsInRole(System.String)"> <summary> Determines whether the current principal belongs to the specified role. </summary> <returns>true if the current principal is a member of the specified role; otherwise, false. </returns> <param name="role"> The name of the role for which to check membership. </param> </member> <member name="T:System.Security.Principal.NTAccount"> <summary> Represents a user or group account. </summary> </member> <member name="M:System.Security.Principal.NTAccount.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.NTAccount" /> class by using the specified name. </summary> <param name="name"> The name used to create the <see cref="T:System.Security.Principal.NTAccount" /> object. This parameter cannot be null or an empty string. </param> </member> <member name="M:System.Security.Principal.NTAccount.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.NTAccount" /> class by using the specified domain name and account name. </summary> <param name="domainName"> The name of the domain. This parameter can be null or an empty string. Domain names that are null values are treated like an empty string. </param> <param name="accountName"> The name of the account. This parameter cannot be null or an empty string. </param> </member> <member name="M:System.Security.Principal.NTAccount.Equals(System.Object)"> <summary> Returns a value that indicates whether this <see cref="T:System.Security.Principal.NTAccount" /> object is equal to a specified object. </summary> <returns>true if <paramref name="o" /> is an object with the same underlying type and value as this <see cref="T:System.Security.Principal.NTAccount" /> object; otherwise, false. </returns> <param name="o"> An object to compare with this <see cref="T:System.Security.Principal.NTAccount" /> object, or null. </param> </member> <member name="M:System.Security.Principal.NTAccount.GetHashCode"> <summary> Serves as a hash function for the current <see cref="T:System.Security.Principal.NTAccount" /> object. The <see cref="M:System.Security.Principal.NTAccount.GetHashCode" /> method is suitable for hashing algorithms and data structures like a hash table. </summary> <returns> A hash value for the current <see cref="T:System.Security.Principal.NTAccount" /> object. </returns> </member> <member name="M:System.Security.Principal.NTAccount.IsValidTargetType(System.Type)"> <summary> Returns a value that indicates whether the specified type is a valid translation type for the <see cref="T:System.Security.Principal.NTAccount" /> class. </summary> <returns>true if <paramref name="targetType" /> is a valid translation type for the <see cref="T:System.Security.Principal.NTAccount" /> class; otherwise false. </returns> <param name="targetType"> The type being queried for validity to serve as a conversion from <see cref="T:System.Security.Principal.NTAccount" />. The following target types are valid: <see cref="T:System.Security.Principal.NTAccount" /><see cref="T:System.Security.Principal.SecurityIdentifier" /></param> </member> <member name="M:System.Security.Principal.NTAccount.op_Equality(System.Security.Principal.NTAccount,System.Security.Principal.NTAccount)"> <summary> Compares two <see cref="T:System.Security.Principal.NTAccount" /> objects to determine whether they are equal. They are considered equal if they have the same canonical name representation as the one returned by the <see cref="P:System.Security.Principal.NTAccount.Value" /> property or if they are both null. </summary> <returns>true if <paramref name="left" /> and <paramref name="right" /> are equal; otherwise false. </returns> <param name="left"> The left <see cref="T:System.Security.Principal.NTAccount" /> operand to use for the equality comparison. This parameter can be null. </param> <param name="right"> The right <see cref="T:System.Security.Principal.NTAccount" /> operand to use for the equality comparison. This parameter can be null. </param> </member> <member name="M:System.Security.Principal.NTAccount.op_Inequality(System.Security.Principal.NTAccount,System.Security.Principal.NTAccount)"> <summary> Compares two <see cref="T:System.Security.Principal.NTAccount" /> objects to determine whether they are not equal. They are considered not equal if they have different canonical name representations than the one returned by the <see cref="P:System.Security.Principal.NTAccount.Value" /> property or if one of the objects is null and the other is not. </summary> <returns>true if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise false. </returns> <param name="left"> The left <see cref="T:System.Security.Principal.NTAccount" /> operand to use for the inequality comparison. This parameter can be null. </param> <param name="right"> The right <see cref="T:System.Security.Principal.NTAccount" /> operand to use for the inequality comparison. This parameter can be null. </param> </member> <member name="M:System.Security.Principal.NTAccount.ToString"> <summary> Returns the account name, in Domain\Account format, for the account represented by the <see cref="T:System.Security.Principal.NTAccount" /> object. </summary> <returns> The account name, in Domain\Account format. </returns> </member> <member name="M:System.Security.Principal.NTAccount.Translate(System.Type)"> <summary> Translates the account name represented by the <see cref="T:System.Security.Principal.NTAccount" /> object into another <see cref="T:System.Security.Principal.IdentityReference" />-derived type. </summary> <returns> The converted identity. </returns> <param name="targetType"> The target type for the conversion from <see cref="T:System.Security.Principal.NTAccount" />. The target type must be a type that is considered valid by the <see cref="M:System.Security.Principal.NTAccount.IsValidTargetType(System.Type)" /> method. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="P:System.Security.Principal.NTAccount.Value"> <summary> Returns an uppercase string representation of this <see cref="T:System.Security.Principal.NTAccount" /> object. </summary> <returns> The uppercase string representation of this <see cref="T:System.Security.Principal.NTAccount" /> object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Security.Principal.PrincipalPolicy"> <summary> Specifies how principal and identity objects should be created for an application domain. The default is UnauthenticatedPrincipal. </summary> </member> <member name="F:System.Security.Principal.PrincipalPolicy.UnauthenticatedPrincipal"> <summary> Principal and identity objects for the unauthenticated entity should be created. An unauthenticated entity has <see cref="P:System.Security.Principal.GenericIdentity.Name" /> set to the empty string ("") and <see cref="P:System.Security.Principal.GenericIdentity.IsAuthenticated" /> set to false. </summary> </member> <member name="F:System.Security.Principal.PrincipalPolicy.NoPrincipal"> <summary> No principal or identity objects should be created. </summary> </member> <member name="F:System.Security.Principal.PrincipalPolicy.WindowsPrincipal"> <summary> Principal and identity objects that reflect the operating system token associated with the current execution thread should be created, and the associated operating system groups should be mapped into roles. </summary> </member> <member name="T:System.Security.Principal.SecurityIdentifier"> <summary> Represents a security identifier (SID) and provides marshaling and comparison operations for SIDs. </summary> </member> <member name="M:System.Security.Principal.SecurityIdentifier.#ctor(System.Byte[],System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.SecurityIdentifier" /> class by using a specified binary representation of a security identifier (SID). </summary> <param name="binaryForm"> The byte array that represents the SID. </param> <param name="offset"> The byte offset to use as the starting index in <paramref name="binaryForm" />. </param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.#ctor(System.IntPtr)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.SecurityIdentifier" /> class by using an integer that represents the binary form of a security identifier (SID). </summary> <param name="binaryForm"> An integer that represents the binary form of a SID. </param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.#ctor(System.Security.Principal.WellKnownSidType,System.Security.Principal.SecurityIdentifier)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.SecurityIdentifier" /> class by using the specified well known security identifier (SID) type and domain SID. </summary> <param name="sidType"> A <see cref="T:System.Security.Principal.WellKnownSidType" /> value. This value must not be <see cref="F:System.Security.Principal.WellKnownSidType.WinLogonIdsSid" />. </param> <param name="domainSid"> The domain SID. This value is required for the following <see cref="T:System.Security.Principal.WellKnownSidType" /> values. This parameter is ignored for any other <see cref="T:System.Security.Principal.WellKnownSidType" /> values. <see cref="F:System.Security.Principal.WellKnownSidType.WinAccountAdministratorSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountGuestSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountKrbtgtSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountDomainAdminsSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountDomainUsersSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountDomainGuestsSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountComputersSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountControllersSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountCertAdminsSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountSchemaAdminsSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountEnterpriseAdminsSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountPolicyAdminsSid" /><see cref="F:System.Security.Principal.WellKnownSidType.WinAccountRasAndIasServersSid" /></param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.SecurityIdentifier" /> class by using the specified security identifier (SID) in Security Descriptor Definition Language (SDDL) format. </summary> <param name="sddlForm"> SDDL string for the SID used to created the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </param> </member> <member name="P:System.Security.Principal.SecurityIdentifier.AccountDomainSid"> <summary> Returns the account domain security identifier (SID) portion from the SID represented by the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object if the SID represents a Windows account SID. If the SID does not represent a Windows account SID, this property returns <see cref="T:System.ArgumentNullException" />. </summary> <returns> The account domain SID portion from the SID represented by the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object if the SID represents a Windows account SID; otherwise, it returns <see cref="T:System.ArgumentNullException" />. </returns> </member> <member name="P:System.Security.Principal.SecurityIdentifier.BinaryLength"> <summary> Returns the length, in bytes, of the security identifier (SID) represented by the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <returns> The length, in bytes, of the SID represented by the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </returns> </member> <member name="M:System.Security.Principal.SecurityIdentifier.CompareTo(System.Security.Principal.SecurityIdentifier)"> <summary> Compares the current <see cref="T:System.Security.Principal.SecurityIdentifier" /> object with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <returns> A signed number indicating the relative values of this instance and <paramref name="sid" />. Return Value Description Less than zero This instance is less than <paramref name="sid" />. Zero This instance is equal to <paramref name="sid" />. Greater than zero This instance is greater than <paramref name="sid" />. </returns> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> object with which to compare the current <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.Equals(System.Object)"> <summary> Returns a value that indicates whether this <see cref="T:System.Security.Principal.SecurityIdentifier" /> object is equal to a specified object. </summary> <returns>true if <paramref name="o" /> is an object with the same underlying type and value as this <see cref="T:System.Security.Principal.SecurityIdentifier" /> object; otherwise, false. </returns> <param name="o"> An object to compare with this <see cref="T:System.Security.Principal.SecurityIdentifier" /> object, or null. </param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.Equals(System.Security.Principal.SecurityIdentifier)"> <summary> Indicates whether the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object is equal to the current <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <returns>true if the value of <paramref name="sid" /> is equal to the value of the current <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </returns> <param name="sid"> The <see cref="T:System.Security.Principal.SecurityIdentifier" /> object to compare. </param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.GetBinaryForm(System.Byte[],System.Int32)"> <summary> Copies the binary representation of the specified security identifier (SID) represented by the <see cref="T:System.Security.Principal.SecurityIdentifier" /> class to a byte array. </summary> <param name="binaryForm"> The byte array to receive the copied SID. </param> <param name="offset"> The byte offset to use as the starting index in <paramref name="binaryForm" />. </param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.GetHashCode"> <summary> Serves as a hash function for the current <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. The <see cref="M:System.Security.Principal.SecurityIdentifier.GetHashCode" /> method is suitable for hashing algorithms and data structures like a hash table. </summary> <returns> A hash value for the current <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </returns> </member> <member name="M:System.Security.Principal.SecurityIdentifier.IsAccountSid"> <summary> Returns a value that indicates whether the security identifier (SID) represented by this <see cref="T:System.Security.Principal.SecurityIdentifier" /> object is a valid Windows account SID. </summary> <returns>true if the SID represented by this <see cref="T:System.Security.Principal.SecurityIdentifier" /> object is a valid Windows account SID; otherwise, false. </returns> </member> <member name="M:System.Security.Principal.SecurityIdentifier.IsEqualDomainSid(System.Security.Principal.SecurityIdentifier)"> <summary> Returns a value that indicates whether the security identifier (SID) represented by this <see cref="T:System.Security.Principal.SecurityIdentifier" /> object is from the same domain as the specified SID. </summary> <returns>true if the SID represented by this <see cref="T:System.Security.Principal.SecurityIdentifier" /> object is in the same domain as the <paramref name="sid" /> SID; otherwise, false. </returns> <param name="sid"> The SID to compare with this <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.IsValidTargetType(System.Type)"> <summary> Returns a value that indicates whether the specified type is a valid translation type for the <see cref="T:System.Security.Principal.SecurityIdentifier" /> class. </summary> <returns>true if <paramref name="targetType" /> is a valid translation type for the <see cref="T:System.Security.Principal.SecurityIdentifier" /> class; otherwise, false. </returns> <param name="targetType"> The type being queried for validity to serve as a conversion from <see cref="T:System.Security.Principal.SecurityIdentifier" />. The following target types are valid: <see cref="T:System.Security.Principal.NTAccount" /><see cref="T:System.Security.Principal.SecurityIdentifier" /></param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.IsWellKnown(System.Security.Principal.WellKnownSidType)"> <summary> Returns a value that indicates whether the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object matches the specified well known security identifier (SID) type. </summary> <returns>true if <paramref name="type" /> is the SID type for the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object; otherwise, false. </returns> <param name="type"> A <see cref="T:System.Security.Principal.WellKnownSidType" /> value to compare with the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </param> </member> <member name="F:System.Security.Principal.SecurityIdentifier.MaxBinaryLength"> <summary> Returns the maximum size, in bytes, of the binary representation of the security identifier. </summary> <returns> The maximum size, in bytes, of the binary representation of the security identifier. </returns> </member> <member name="F:System.Security.Principal.SecurityIdentifier.MinBinaryLength"> <summary> Returns the minimum size, in bytes, of the binary representation of the security identifier. </summary> <returns> The minimum size, in bytes, of the binary representation of the security identifier. </returns> </member> <member name="M:System.Security.Principal.SecurityIdentifier.op_Equality(System.Security.Principal.SecurityIdentifier,System.Security.Principal.SecurityIdentifier)"> <summary> Compares two <see cref="T:System.Security.Principal.SecurityIdentifier" /> objects to determine whether they are equal. They are considered equal if they have the same canonical representation as the one returned by the <see cref="P:System.Security.Principal.SecurityIdentifier.Value" /> property or if they are both null. </summary> <returns>true if <paramref name="left" /> and <paramref name="right" /> are equal; otherwise, false. </returns> <param name="left"> The left <see cref="T:System.Security.Principal.SecurityIdentifier" /> operand to use for the equality comparison. This parameter can be null. </param> <param name="right"> The right <see cref="T:System.Security.Principal.SecurityIdentifier" /> operand to use for the equality comparison. This parameter can be null. </param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.op_Inequality(System.Security.Principal.SecurityIdentifier,System.Security.Principal.SecurityIdentifier)"> <summary> Compares two <see cref="T:System.Security.Principal.SecurityIdentifier" /> objects to determine whether they are not equal. They are considered not equal if they have different canonical name representations than the one returned by the <see cref="P:System.Security.Principal.SecurityIdentifier.Value" /> property or if one of the objects is null and the other is not. </summary> <returns>true if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, false. </returns> <param name="left"> The left <see cref="T:System.Security.Principal.SecurityIdentifier" /> operand to use for the inequality comparison. This parameter can be null. </param> <param name="right"> The right <see cref="T:System.Security.Principal.SecurityIdentifier" /> operand to use for the inequality comparison. This parameter can be null. </param> </member> <member name="M:System.Security.Principal.SecurityIdentifier.ToString"> <summary> Returns the security identifier (SID), in Security Descriptor Definition Language (SDDL) format, for the account represented by the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. An example of the SDDL format is S-1-5-9. </summary> <returns> The SID, in SDDL format, for the account represented by the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </returns> </member> <member name="M:System.Security.Principal.SecurityIdentifier.Translate(System.Type)"> <summary> Translates the account name represented by the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object into another <see cref="T:System.Security.Principal.IdentityReference" />-derived type. </summary> <returns> The converted identity. </returns> <param name="targetType"> The target type for the conversion from <see cref="T:System.Security.Principal.SecurityIdentifier" />. The target type must be a type that is considered valid by the <see cref="M:System.Security.Principal.SecurityIdentifier.IsValidTargetType(System.Type)" /> method. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="P:System.Security.Principal.SecurityIdentifier.Value"> <summary> Returns an uppercase Security Descriptor Definition Language (SDDL) string for the security identifier (SID) represented by this <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </summary> <returns> An uppercase SDDL string for the SID represented by the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. </returns> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Security.Principal.TokenAccessLevels"> <summary> Defines the privileges of the user account associated with the access token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.AssignPrimary"> <summary> The user can attach a primary token to a process. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.Duplicate"> <summary> The user can duplicate the token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.Impersonate"> <summary> The user can impersonate a client. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.Query"> <summary> The user can query the token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.QuerySource"> <summary> The user can query the source of the token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.AdjustPrivileges"> <summary> The user can enable or disable privileges in the token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.AdjustGroups"> <summary> The user can change the attributes of the groups in the token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.AdjustDefault"> <summary> The user can change the default owner, primary group, or discretionary access control list (DACL) of the token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.AdjustSessionId"> <summary> The user can adjust the session identifier of the token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.Read"> <summary> The user has standard read rights and the <see cref="F:System.Security.Principal.TokenAccessLevels.Query" /> privilege for the token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.Write"> <summary> The user has standard write rights and the <see cref="F:System.Security.Principal.TokenAccessLevels.AdjustPrivileges, F:System.Security.Principal.TokenAccessLevels.AdjustGroups" />, and <see cref="F:System.Security.Principal.TokenAccessLevels.AdjustDefault" /> privileges for the token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.AllAccess"> <summary> The user has all possible access to the token. </summary> </member> <member name="F:System.Security.Principal.TokenAccessLevels.MaximumAllowed"> <summary> The maximum value that can be assigned for the <see cref="T:System.Security.Principal.TokenAccessLevels" /> enumeration. </summary> </member> <member name="T:System.Security.Principal.TokenImpersonationLevel"> <summary> Defines security impersonation levels. Security impersonation levels govern the degree to which a server process can act on behalf of a client process. </summary> </member> <member name="F:System.Security.Principal.TokenImpersonationLevel.None"> <summary> An impersonation level is not assigned. </summary> </member> <member name="F:System.Security.Principal.TokenImpersonationLevel.Anonymous"> <summary> The server process cannot obtain identification information about the client, and it cannot impersonate the client. </summary> </member> <member name="F:System.Security.Principal.TokenImpersonationLevel.Identification"> <summary> The server process can obtain information about the client, such as security identifiers and privileges, but it cannot impersonate the client. This is useful for servers that export their own objects, for example, database products that export tables and views. Using the retrieved client-security information, the server can make access-validation decisions without being able to use other services that are using the client's security context. </summary> </member> <member name="F:System.Security.Principal.TokenImpersonationLevel.Impersonation"> <summary> The server process can impersonate the client's security context on its local system. The server cannot impersonate the client on remote systems. </summary> </member> <member name="F:System.Security.Principal.TokenImpersonationLevel.Delegation"> <summary> The server process can impersonate the client's security context on remote systems. </summary> </member> <member name="T:System.Security.Principal.WellKnownSidType"> <summary> Defines a set of commonly used security identifiers (SIDs). </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.NullSid"> <summary> Indicates a null SID. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.WorldSid"> <summary> Indicates a SID that matches everyone. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.LocalSid"> <summary> Indicates a local SID. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.CreatorOwnerSid"> <summary> Indicates a SID that matches the owner or creator of an object. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.CreatorGroupSid"> <summary> Indicates a SID that matches the creator group of an object. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.CreatorOwnerServerSid"> <summary> Indicates a creator owner server SID. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.CreatorGroupServerSid"> <summary> Indicates a creator group server SID. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.NTAuthoritySid"> <summary> Indicates a SID for the Windows NT authority. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.DialupSid"> <summary> Indicates a SID for a dial-up account. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.NetworkSid"> <summary> Indicates a SID for a network account. This SID is added to the process of a token when it logs on across a network. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BatchSid"> <summary> Indicates a SID for a batch process. This SID is added to the process of a token when it logs on as a batch job. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.InteractiveSid"> <summary> Indicates a SID for an interactive account. This SID is added to the process of a token when it logs on interactively. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.ServiceSid"> <summary> Indicates a SID for a service. This SID is added to the process of a token when it logs on as a service. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AnonymousSid"> <summary> Indicates a SID for the anonymous account. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.ProxySid"> <summary> Indicates a proxy SID. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.EnterpriseControllersSid"> <summary> Indicates a SID for an enterprise controller. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.SelfSid"> <summary> Indicates a SID for self. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AuthenticatedUserSid"> <summary> Indicates a SID for an authenticated user. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.RestrictedCodeSid"> <summary> Indicates a SID for restricted code. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.TerminalServerSid"> <summary> Indicates a SID that matches a terminal server account. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.RemoteLogonIdSid"> <summary> Indicates a SID that matches remote logons. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.LogonIdsSid"> <summary> Indicates a SID that matches logon IDs. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.LocalSystemSid"> <summary> Indicates a SID that matches the local system. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.LocalServiceSid"> <summary> Indicates a SID that matches a local service. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.NetworkServiceSid"> <summary> Indicates a SID that matches a network service. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinDomainSid"> <summary> Indicates a SID that matches the domain account. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinAdministratorsSid"> <summary> Indicates a SID that matches the administrator account. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinUsersSid"> <summary> Indicates a SID that matches built-in user accounts. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinGuestsSid"> <summary> Indicates a SID that matches the guest account. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinPowerUsersSid"> <summary> Indicates a SID that matches the power users group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinAccountOperatorsSid"> <summary> Indicates a SID that matches the account operators account. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinSystemOperatorsSid"> <summary> Indicates a SID that matches the system operators group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinPrintOperatorsSid"> <summary> Indicates a SID that matches the print operators group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinBackupOperatorsSid"> <summary> Indicates a SID that matches the backup operators group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinReplicatorSid"> <summary> Indicates a SID that matches the replicator account. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinPreWindows2000CompatibleAccessSid"> <summary> Indicates a SID that matches pre-Windows 2000 compatible accounts. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinRemoteDesktopUsersSid"> <summary> Indicates a SID that matches remote desktop users. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinNetworkConfigurationOperatorsSid"> <summary> Indicates a SID that matches the network operators group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountAdministratorSid"> <summary> Indicates a SID that matches the account administrators group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountGuestSid"> <summary> Indicates a SID that matches the account guest group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountKrbtgtSid"> <summary> Indicates a SID that matches the account Kerberos target group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountDomainAdminsSid"> <summary> Indicates a SID that matches the account domain administrator group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountDomainUsersSid"> <summary> Indicates a SID that matches the account domain users group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountDomainGuestsSid"> <summary> Indicates a SID that matches the account domain guests group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountComputersSid"> <summary> Indicates a SID that matches the account computer group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountControllersSid"> <summary> Indicates a SID that matches the account controller group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountCertAdminsSid"> <summary> Indicates a SID that matches the certificate administrators group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountSchemaAdminsSid"> <summary> Indicates a SID that matches the schema administrators group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountEnterpriseAdminsSid"> <summary> Indicates a SID that matches the enterprise administrators group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountPolicyAdminsSid"> <summary> Indicates a SID that matches the policy administrators group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.AccountRasAndIasServersSid"> <summary> Indicates a SID that matches the RAS and IAS server account. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.NtlmAuthenticationSid"> <summary> Indicates a SID present when the Microsoft NTLM authentication package authenticated the client. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.DigestAuthenticationSid"> <summary> Indicates a SID present when the Microsoft Digest authentication package authenticated the client. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.SChannelAuthenticationSid"> <summary> Indicates a SID present when the Secure Channel (SSL/TLS) authentication package authenticated the client. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.ThisOrganizationSid"> <summary> Indicates a SID present when the user authenticated from within the forest or across a trust that does not have the selective authentication option enabled. If this SID is present, then <see cref="F:System.Security.Principal.WellKnownSidType.OtherOrganizationSid" /> cannot be present. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.OtherOrganizationSid"> <summary> Indicates a SID present when the user authenticated across a forest with the selective authentication option enabled. If this SID is present, then <see cref="F:System.Security.Principal.WellKnownSidType.ThisOrganizationSid" /> cannot be present. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinIncomingForestTrustBuildersSid"> <summary> Indicates a SID that allows a user to create incoming forest trusts. It is added to the token of users who are a member of the Incoming Forest Trust Builders built-in group in the root domain of the forest. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinPerformanceMonitoringUsersSid"></member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinPerformanceLoggingUsersSid"></member> <member name="F:System.Security.Principal.WellKnownSidType.BuiltinAuthorizationAccessSid"> <summary> Indicates a SID that matches the Windows Authorization Access group. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.WinBuiltinTerminalServerLicenseServersSid"> <summary> Indicates a SID is present in a server that can issue Terminal Server licenses. </summary> </member> <member name="F:System.Security.Principal.WellKnownSidType.MaxDefined"> <summary> Indicates the maximum defined SID in the <see cref="T:System.Security.Principal.WellKnownSidType" /> enumeration. </summary> </member> <member name="T:System.Security.Principal.WindowsAccountType"> <summary> Specifies the type of Windows account used. </summary> </member> <member name="F:System.Security.Principal.WindowsAccountType.Normal"> <summary> A normal user account. </summary> </member> <member name="F:System.Security.Principal.WindowsAccountType.Guest"> <summary> A Windows guest account. </summary> </member> <member name="F:System.Security.Principal.WindowsAccountType.System"> <summary> A Windows system account. </summary> </member> <member name="F:System.Security.Principal.WindowsAccountType.Anonymous"> <summary> An anonymous account. </summary> </member> <member name="T:System.Security.Principal.WindowsBuiltInRole"> <summary> Specifies common roles to be used with <see cref="M:System.Security.Principal.WindowsPrincipal.IsInRole(System.String)" />. </summary> </member> <member name="F:System.Security.Principal.WindowsBuiltInRole.Administrator"> <summary> Administrators have complete and unrestricted access to the computer or domain. </summary> </member> <member name="F:System.Security.Principal.WindowsBuiltInRole.User"> <summary> Users are prevented from making accidental or intentional system-wide changes. Thus, users can run certified applications, but not most legacy applications. </summary> </member> <member name="F:System.Security.Principal.WindowsBuiltInRole.Guest"> <summary> Guests are more restricted than users. </summary> </member> <member name="F:System.Security.Principal.WindowsBuiltInRole.PowerUser"> <summary> Power users possess most administrative permissions with some restrictions. Thus, power users can run legacy applications, in addition to certified applications. </summary> </member> <member name="F:System.Security.Principal.WindowsBuiltInRole.AccountOperator"> <summary> Account operators manage the user accounts on a computer or domain. </summary> </member> <member name="F:System.Security.Principal.WindowsBuiltInRole.SystemOperator"> <summary> System operators manage a particular computer. </summary> </member> <member name="F:System.Security.Principal.WindowsBuiltInRole.PrintOperator"> <summary> Print operators can take control of a printer. </summary> </member> <member name="F:System.Security.Principal.WindowsBuiltInRole.BackupOperator"> <summary> Backup operators can override security restrictions for the sole purpose of backing up or restoring files. </summary> </member> <member name="F:System.Security.Principal.WindowsBuiltInRole.Replicator"> <summary> Replicators support file replication in a domain. </summary> </member> <member name="T:System.Security.Principal.WindowsIdentity"> <summary> Represents a Windows user. </summary> </member> <member name="M:System.Security.Principal.WindowsIdentity.#ctor(System.IntPtr)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.WindowsIdentity" /> class for the user represented by the specified Windows account token. </summary> <param name="userToken"> The account token for the user on whose behalf the code is running. </param> <exception cref="T:System.ArgumentException"> <paramref name="userToken" /> is 0. -or- <paramref name="userToken" /> is duplicated and invalid for impersonation. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the correct permissions. -or- A Win32 error occurred. </exception> </member> <member name="M:System.Security.Principal.WindowsIdentity.#ctor(System.IntPtr,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.WindowsIdentity" /> class for the user represented by the specified Windows account token and the specified authentication type. </summary> <param name="userToken"> The account token for the user on whose behalf the code is running. </param> <param name="type"> The type of authentication used to identify the user. </param> <exception cref="T:System.ArgumentException"> <paramref name="userToken" /> is 0. -or- <paramref name="userToken" /> is duplicated and invalid for impersonation. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the correct permissions. -or- A Win32 error occurred. </exception> </member> <member name="M:System.Security.Principal.WindowsIdentity.#ctor(System.IntPtr,System.String,System.Security.Principal.WindowsAccountType)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.WindowsIdentity" /> class for the user represented by the specified Windows account token, the specified authentication type, and the specified Windows account type. </summary> <param name="userToken"> The account token for the user on whose behalf the code is running. </param> <param name="type"> The type of authentication used to identify the user. </param> <param name="acctType"> One of the <see cref="T:System.Security.Principal.WindowsAccountType" /> values. </param> <exception cref="T:System.ArgumentException"> <paramref name="userToken" /> is 0. -or- <paramref name="userToken" /> is duplicated and invalid for impersonation. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the correct permissions. -or- A Win32 error occurred. </exception> </member> <member name="M:System.Security.Principal.WindowsIdentity.#ctor(System.IntPtr,System.String,System.Security.Principal.WindowsAccountType,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.WindowsIdentity" /> class for the user represented by the specified Windows account token, the specified authentication type, the specified Windows account type, and the specified authentication status. </summary> <param name="userToken"> The account token for the user on whose behalf the code is running. </param> <param name="type"> The type of authentication used to identify the user. </param> <param name="acctType"> One of the <see cref="T:System.Security.Principal.WindowsAccountType" /> values. </param> <param name="isAuthenticated">true to indicate that the user is authenticated; otherwise, false. </param> <exception cref="T:System.ArgumentException"> <paramref name="userToken" /> is 0. -or- <paramref name="userToken" /> is duplicated and invalid for impersonation. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the correct permissions. -or- A Win32 error occurred. </exception> </member> <member name="M:System.Security.Principal.WindowsIdentity.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.WindowsIdentity" /> class for the user represented by information in a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> stream. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> containing the account information for the user. </param> <param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that indicates the stream characteristics. </param> <exception cref="T:System.NotSupportedException"> A <see cref="T:System.Security.Principal.WindowsIdentity" /> cannot be serialized across processes. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the correct permissions. -or- A Win32 error occurred. </exception> </member> <member name="M:System.Security.Principal.WindowsIdentity.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.WindowsIdentity" /> class for the user represented by the specified User Principal Name (UPN). </summary> <param name="sUserPrincipalName"> The UPN for the user on whose behalf the code is running. </param> <exception cref="T:System.UnauthorizedAccessException"> Windows returned the Windows NT status code STATUS_ACCESS_DENIED. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the correct permissions. </exception> </member> <member name="M:System.Security.Principal.WindowsIdentity.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.WindowsIdentity" /> class for the user represented by the specified User Principal Name (UPN) and the specified authentication type. </summary> <param name="sUserPrincipalName"> The UPN for the user on whose behalf the code is running. </param> <param name="type"> The type of authentication used to identify the user. </param> <exception cref="T:System.UnauthorizedAccessException"> Windows returned the Windows NT status code STATUS_ACCESS_DENIED. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the correct permissions. </exception> </member> <member name="P:System.Security.Principal.WindowsIdentity.AuthenticationType"> <summary> Gets the type of authentication used to identify the user. </summary> <returns> The type of authentication used to identify the user. </returns> </member> <member name="M:System.Security.Principal.WindowsIdentity.Dispose"> <summary> Releases all resources used by the <see cref="T:System.Security.Principal.WindowsIdentity" />. </summary> </member> <member name="M:System.Security.Principal.WindowsIdentity.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Principal.WindowsIdentity" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.Security.Principal.WindowsIdentity.GetAnonymous"> <summary> Returns a <see cref="T:System.Security.Principal.WindowsIdentity" /> object that represents an anonymous user. </summary> <returns> A <see cref="T:System.Security.Principal.WindowsIdentity" /> object that represents an anonymous user. </returns> </member> <member name="M:System.Security.Principal.WindowsIdentity.GetCurrent"> <summary> Returns a <see cref="T:System.Security.Principal.WindowsIdentity" /> object that represents the current Windows user. </summary> <returns> A <see cref="T:System.Security.Principal.WindowsIdentity" /> object that represents the current user. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the correct permissions. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPrincipal" /> </PermissionSet> </member> <member name="M:System.Security.Principal.WindowsIdentity.GetCurrent(System.Boolean)"> <summary> Returns a <see cref="T:System.Security.Principal.WindowsIdentity" /> object that represents the Windows identity for either the thread or the process, depending on the value of the <paramref name="ifImpersonating" /> parameter. </summary> <returns> A <see cref="T:System.Security.Principal.WindowsIdentity" /> object that represents a Windows user. </returns> <param name="ifImpersonating">true to return the <see cref="T:System.Security.Principal.WindowsIdentity" /> only if the thread is currently impersonating; false to return the <see cref="T:System.Security.Principal.WindowsIdentity" /> of the thread if it is impersonating or the <see cref="T:System.Security.Principal.WindowsIdentity" /> of the process if the thread is not currently impersonating. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPrincipal" /> </PermissionSet> </member> <member name="M:System.Security.Principal.WindowsIdentity.GetCurrent(System.Security.Principal.TokenAccessLevels)"> <summary> Returns a <see cref="T:System.Security.Principal.WindowsIdentity" /> object that represents the current Windows user, using the specified desired token access level. </summary> <returns> A <see cref="T:System.Security.Principal.WindowsIdentity" /> object that represents the current user. </returns> <param name="desiredAccess"> A bitwise combination of the <see cref="T:System.Security.Principal.TokenAccessLevels" /> values. </param> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPrincipal" /> </PermissionSet> </member> <member name="P:System.Security.Principal.WindowsIdentity.Groups"> <summary> Gets the groups the current Windows user belongs to. </summary> <returns> An <see cref="T:System.Security.Principal.IdentityReferenceCollection" /> object representing the groups the current Windows user belongs to. </returns> </member> <member name="M:System.Security.Principal.WindowsIdentity.Impersonate"> <summary> Impersonates the user represented by the <see cref="T:System.Security.Principal.WindowsIdentity" /> object. </summary> <returns> A <see cref="T:System.Security.Principal.WindowsImpersonationContext" /> object that represents the Windows user prior to impersonation; this can be used to revert to the original user's context. </returns> <exception cref="T:System.InvalidOperationException"> An anonymous identity attempted to perform an impersonation. </exception> <exception cref="T:System.Security.SecurityException"> A Win32 error occurred. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPrincipal" /> </PermissionSet> </member> <member name="M:System.Security.Principal.WindowsIdentity.Impersonate(System.IntPtr)"> <summary> Impersonates the user represented by the specified user token. </summary> <returns> A <see cref="T:System.Security.Principal.WindowsImpersonationContext" /> object that represents the Windows user prior to impersonation; this object can be used to revert to the original user's context. </returns> <param name="userToken"> The handle of a Windows account token. This token is usually retrieved through a call to unmanaged code, such as a call to the Win32 API LogonUser function. For more information on calls to unmanaged code, see Consuming Unmanaged DLL Functions. </param> <exception cref="T:System.UnauthorizedAccessException"> Windows returned the Windows NT status code STATUS_ACCESS_DENIED. </exception> <exception cref="T:System.OutOfMemoryException"> There is insufficient memory available. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the correct permissions. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPrincipal" /> </PermissionSet> </member> <member name="P:System.Security.Principal.WindowsIdentity.ImpersonationLevel"> <summary> Gets the impersonation level for the user. </summary> <returns> One of the <see cref="T:System.Management.ImpersonationLevel" /> values. </returns> </member> <member name="P:System.Security.Principal.WindowsIdentity.IsAnonymous"> <summary> Gets a value indicating whether the user account is identified as an anonymous account by the system. </summary> <returns>true if the user account is an anonymous account; otherwise, false. </returns> </member> <member name="P:System.Security.Principal.WindowsIdentity.IsAuthenticated"> <summary> Gets a value indicating whether the user has been authenticated by Windows. </summary> <returns>true if the user was authenticated; otherwise, false. </returns> </member> <member name="P:System.Security.Principal.WindowsIdentity.IsGuest"> <summary> Gets a value indicating whether the user account is identified as a <see cref="F:System.Security.Principal.WindowsAccountType.Guest" /> account by the system. </summary> <returns>true if the user account is a <see cref="F:System.Security.Principal.WindowsAccountType.Guest" /> account; otherwise, false. </returns> </member> <member name="P:System.Security.Principal.WindowsIdentity.IsSystem"> <summary> Gets a value indicating whether the user account is identified as a <see cref="F:System.Security.Principal.WindowsAccountType.System" /> account by the system. </summary> <returns>true if the user account is a <see cref="F:System.Security.Principal.WindowsAccountType.System" /> account; otherwise, false. </returns> </member> <member name="P:System.Security.Principal.WindowsIdentity.Name"> <summary> Gets the user's Windows logon name. </summary> <returns> The Windows logon name of the user on whose behalf the code is being run. </returns> </member> <member name="P:System.Security.Principal.WindowsIdentity.Owner"> <summary> Gets the security identifier (SID) for the token owner. </summary> <returns> A <see cref="T:System.Security.Principal.SecurityIdentifier" /> object for the token owner. </returns> </member> <member name="M:System.Security.Principal.WindowsIdentity.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)"> <summary> Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and is called back by the deserialization event when deserialization is complete. </summary> <param name="sender"> The source of the deserialization event. </param> </member> <member name="M:System.Security.Principal.WindowsIdentity.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the logical context information needed to recreate an instance of this execution context. </summary> <param name="info"> A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Hashtable" />. </param> <param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Hashtable" />. </param> </member> <member name="P:System.Security.Principal.WindowsIdentity.Token"> <summary> Gets the Windows account token for the user. </summary> <returns> The handle of the access token associated with the current execution thread. </returns> </member> <member name="P:System.Security.Principal.WindowsIdentity.User"> <summary> Gets the security identifier (SID) for the user. </summary> <returns> A <see cref="T:System.Security.Principal.SecurityIdentifier" /> object for the user. </returns> </member> <member name="T:System.Security.Principal.WindowsImpersonationContext"> <summary> Represents the Windows user prior to an impersonation operation. </summary> </member> <member name="M:System.Security.Principal.WindowsImpersonationContext.Dispose"> <summary> Releases all resources used by the <see cref="T:System.Security.Principal.WindowsImpersonationContext" />. </summary> </member> <member name="M:System.Security.Principal.WindowsImpersonationContext.Dispose(System.Boolean)"> <summary> Releases the unmanaged resources used by the <see cref="T:System.Security.Principal.WindowsImpersonationContext" /> and optionally releases the managed resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="M:System.Security.Principal.WindowsImpersonationContext.Undo"> <summary> Reverts the user context to the Windows user represented by this object. </summary> <exception cref="T:System.Security.SecurityException"> An attempt is made to use this method for any purpose other than to revert identity to self. </exception> </member> <member name="T:System.Security.Principal.WindowsPrincipal"> <summary> Allows code to check the Windows group membership of a Windows user. </summary> </member> <member name="M:System.Security.Principal.WindowsPrincipal.#ctor(System.Security.Principal.WindowsIdentity)"> <summary> Initializes a new instance of the <see cref="T:System.Security.Principal.WindowsPrincipal" /> class by using the specified <see cref="T:System.Security.Principal.WindowsIdentity" /> object. </summary> <param name="ntIdentity"> The <see cref="T:System.Security.Principal.WindowsIdentity" /> object from which to construct the new instance of <see cref="T:System.Security.Principal.WindowsPrincipal" />. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="ntIdentity" /> is null. </exception> </member> <member name="P:System.Security.Principal.WindowsPrincipal.Identity"> <summary> Gets the identity of the current principal. </summary> <returns> The <see cref="T:System.Security.Principal.WindowsIdentity" /> object of the current principal. </returns> </member> <member name="M:System.Security.Principal.WindowsPrincipal.IsInRole(System.Int32)"> <summary> Determines whether the current principal belongs to the Windows user group with the specified relative identifier (RID). </summary> <returns>true if the current principal is a member of the specified Windows user group, that is, in a particular role; otherwise, false. </returns> <param name="rid"> The RID of the Windows user group in which to check for the principal’s membership status. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.Principal.WindowsPrincipal.IsInRole(System.Security.Principal.SecurityIdentifier)"> <summary> Determines whether the current principal belongs to the Windows user group with the specified security identifier (SID). </summary> <returns>true if the current principal is a member of the specified Windows user group; otherwise, false. </returns> <param name="sid"> A <see cref="T:System.Security.Principal.SecurityIdentifier" /> that uniquely identifies a Windows user group. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="sid" /> is null. </exception> <exception cref="T:System.Security.SecurityException"> Windows returned a Win32 error. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.Principal.WindowsPrincipal.IsInRole(System.Security.Principal.WindowsBuiltInRole)"> <summary> Determines whether the current principal belongs to the Windows user group with the specified <see cref="T:System.Security.Principal.WindowsBuiltInRole" />. </summary> <returns>true if the current principal is a member of the specified Windows user group; otherwise, false. </returns> <param name="role"> One of the <see cref="T:System.Security.Principal.WindowsBuiltInRole" /> values. </param> <exception cref="T:System.ArgumentException"> <paramref name="role" /> is not a valid <see cref="T:System.Security.Principal.WindowsBuiltInRole" /> value. </exception> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.Principal.WindowsPrincipal.IsInRole(System.String)"> <summary> Determines whether the current principal belongs to the Windows user group with the specified name. </summary> <returns>true if the current principal is a member of the specified Windows user group; otherwise, false. </returns> <param name="role"> The name of the Windows user group for which to check membership. </param> <PermissionSet> <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" /> </PermissionSet> </member> <member name="M:System.Security.Principal.WindowsIdentity.Finalize"> <summary> Releases the resources held by the current instance. </summary> </member> <member name="M:System.Security.Principal.WindowsImpersonationContext.Finalize"> <summary> Releases the resources held by the current instance. </summary> </member> <member name="T:System.Text.ASCIIEncoding"> <summary> Represents an ASCII character encoding of Unicode characters. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.ASCIIEncoding" /> class. </summary> </member> <member name="M:System.Text.ASCIIEncoding.GetByteCount(System.Char*,System.Int32)"> <summary> Calculates the number of bytes produced by encoding a set of characters starting at the specified character pointer. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetByteCount(System.Char[],System.Int32,System.Int32)"> <summary> Calculates the number of bytes produced by encoding a set of characters from the specified character array. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="index"> The index of the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="chars" />. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetByteCount(System.String)"> <summary> Calculates the number of bytes produced by encoding the characters in the specified <see cref="T:System.String" />. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32)"> <summary> Encodes a set of characters starting at the specified character pointer into a sequence of bytes that are stored starting at the specified byte pointer. </summary> <returns> The actual number of bytes written at the location indicated by <paramref name="bytes" />. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> A pointer to the location at which to start writing the resulting sequence of bytes. </param> <param name="byteCount"> The maximum number of bytes to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> or <paramref name="byteCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="byteCount" /> is less than the resulting number of bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Encodes a set of characters from the specified character array into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Encodes a set of characters from the specified <see cref="T:System.String" /> into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="chars"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetCharCount(System.Byte*,System.Int32)"> <summary> Calculates the number of characters produced by decoding a sequence of bytes starting at the specified byte pointer. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetCharCount(System.Byte[],System.Int32,System.Int32)"> <summary> Calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32)"> <summary> Decodes a sequence of bytes starting at the specified byte pointer into a set of characters that are stored starting at the specified character pointer. </summary> <returns> The actual number of characters written at the location indicated by <paramref name="chars" />. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> A pointer to the location at which to start writing the resulting set of characters. </param> <param name="charCount"> The maximum number of characters to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. -or- <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> or <paramref name="charCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="charCount" /> is less than the resulting number of characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)"> <summary> Decodes a sequence of bytes from the specified byte array into the specified character array. </summary> <returns> The actual number of characters written into <paramref name="chars" />. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="byteIndex"> The index of the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> The character array to contain the resulting set of characters. </param> <param name="charIndex"> The index at which to start writing the resulting set of characters. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. -or- <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteIndex" /> or <paramref name="byteCount" /> or <paramref name="charIndex" /> is less than zero. -or- <paramref name="byteindex" /> and <paramref name="byteCount" /> do not denote a valid range in <paramref name="bytes" />. -or- <paramref name="charIndex" /> is not a valid index in <paramref name="chars" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="chars" /> does not have enough capacity from <paramref name="charIndex" /> to the end of the array to accommodate the resulting characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetDecoder"> <summary> Obtains a decoder that converts an ASCII encoded sequence of bytes into a sequence of Unicode characters. </summary> <returns> A <see cref="T:System.Text.Decoder" /> that converts an ASCII encoded sequence of bytes into a sequence of Unicode characters. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetEncoder"> <summary> Obtains an encoder that converts a sequence of Unicode characters into an ASCII encoded sequence of bytes. </summary> <returns> An <see cref="T:System.Text.Encoder" /> that converts a sequence of Unicode characters into an ASCII encoded sequence of bytes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetMaxByteCount(System.Int32)"> <summary> Calculates the maximum number of bytes produced by encoding the specified number of characters. </summary> <returns> The maximum number of bytes produced by encoding the specified number of characters. </returns> <param name="charCount"> The number of characters to encode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetMaxCharCount(System.Int32)"> <summary> Calculates the maximum number of characters produced by decoding the specified number of bytes. </summary> <returns> The maximum number of characters produced by decoding the specified number of bytes. </returns> <param name="byteCount"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetString(System.Byte[],System.Int32,System.Int32)"> <summary> Decodes a range of bytes from a byte array into a string. </summary> <returns> A <see cref="T:System.String" /> containing the results of decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="byteIndex"> The index of the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.ASCIIEncoding.IsSingleByte"> <summary> Gets a value indicating whether the current encoding uses single-byte code points. </summary> <returns> This property is always true. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Text.Decoder"> <summary> Converts a sequence of encoded bytes into a set of characters. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Decoder.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.Decoder" /> class. </summary> </member> <member name="M:System.Text.Decoder.Convert(System.Byte*,System.Int32,System.Char*,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@)"> <summary> Converts a buffer of encoded bytes to Unicode characters and stores the result in another buffer. </summary> <param name="bytes"> The address of a buffer that contains the byte sequences to convert. </param> <param name="byteCount"> The number of bytes in <paramref name="bytes" /> to convert. </param> <param name="chars"> The address of a buffer to store the converted characters. </param> <param name="charCount"> The maximum number of characters in <paramref name="chars" /> to use in the conversion. </param> <param name="flush">true to indicate no further data is to be converted; otherwise, false. </param> <param name="bytesUsed"> When this method returns, contains the number of bytes that were produced by the conversion. This parameter is passed uninitialized. </param> <param name="charsUsed"> When this method returns, contains the number of characters from <paramref name="chars" /> that were used in the conversion. This parameter is passed uninitialized. </param> <param name="completed"> When this method returns, contains true if all the characters specified by <paramref name="byteCount" /> were converted; otherwise, false. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> or <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> or <paramref name="byteCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> The output buffer is too small to contain any of the converted input. The output buffer should be greater than or equal to the size indicated by the <see cref="Overload:System.Text.Decoder.GetCharCount" /> method. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Decoder.Fallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Decoder.Convert(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@)"> <summary> Converts an array of encoded bytes to Unicode characters and stores the result in a byte array. </summary> <param name="bytes"> A byte array to convert. </param> <param name="byteIndex"> The first element of <paramref name="bytes" /> to convert. </param> <param name="byteCount"> The number of elements of <paramref name="bytes" /> to convert. </param> <param name="chars"> An array to store the converted characters. </param> <param name="charIndex"> The first element of <paramref name="chars" /> in which data is stored. </param> <param name="charCount"> The maximum number of elements of <paramref name="chars" /> to use in the conversion. </param> <param name="flush">true to indicate that no further data is to be converted; otherwise, false. </param> <param name="bytesUsed"> When this method returns, contains the number of bytes that were used in the conversion. This parameter is passed uninitialized. </param> <param name="charsUsed"> When this method returns, contains the number of characters from <paramref name="chars" /> that were produced by the conversion. This parameter is passed uninitialized. </param> <param name="completed"> When this method returns, contains true if all the characters specified by <paramref name="byteCount" /> were converted; otherwise, false. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> or <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" />, <paramref name="charCount" />, <paramref name="byteIndex" />, or <paramref name="byteCount" /> is less than zero. -or- The length of <paramref name="chars" /> - <paramref name="charIndex" /> is less than <paramref name="charCount" />. -or- The length of <paramref name="bytes" /> - <paramref name="byteIndex" /> is less than <paramref name="byteCount" />. </exception> <exception cref="T:System.ArgumentException"> The output buffer is too small to contain any of the converted input. The output buffer should be greater than or equal to the size indicated by the <see cref="Overload:System.Text.Decoder.GetCharCount" /> method. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Decoder.Fallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Decoder.Fallback"> <summary> Gets or sets a <see cref="T:System.Text.DecoderFallback" /> object for the current <see cref="T:System.Text.Decoder" /> object. </summary> <returns> A <see cref="T:System.Text.DecoderFallback" /> object. </returns> <exception cref="T:System.ArgumentNullException"> The value in a set operation is null (Nothing). </exception> <exception cref="T:System.ArgumentException"> A new value cannot be assigned in a set operation because the current <see cref="T:System.Text.DecoderFallbackBuffer" /> object contains data that has not been decoded yet. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Decoder.FallbackBuffer"> <summary> Gets the <see cref="T:System.Text.DecoderFallbackBuffer" /> object associated with the current <see cref="T:System.Text.Decoder" /> object. </summary> <returns> A <see cref="T:System.Text.DecoderFallbackBuffer" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Decoder.GetCharCount(System.Byte*,System.Int32,System.Boolean)"> <summary> When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes starting at the specified byte pointer. A parameter indicates whether to clear the internal state of the decoder after the calculation. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes and any bytes in the internal buffer. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <param name="flush">true to simulate clearing the internal state of the encoder after the calculation; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing in Visual Basic .NET). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Decoder.Fallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Decoder.GetCharCount(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes and any bytes in the internal buffer. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Decoder.Fallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Decoder.GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean)"> <summary> When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. A parameter indicates whether to clear the internal state of the decoder after the calculation. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes and any bytes in the internal buffer. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <param name="flush">true to simulate clearing the internal state of the encoder after the calculation; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Decoder.Fallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Decoder.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Boolean)"> <summary> When overridden in a derived class, decodes a sequence of bytes starting at the specified byte pointer and any bytes in the internal buffer into a set of characters that are stored starting at the specified character pointer. A parameter indicates whether to clear the internal state of the decoder after the conversion. </summary> <returns> The actual number of characters written at the location indicated by the <paramref name="chars" /> parameter. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> A pointer to the location at which to start writing the resulting set of characters. </param> <param name="charCount"> The maximum number of characters to write. </param> <param name="flush">true to clear the internal state of the decoder after the conversion; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). -or- <paramref name="chars" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> or <paramref name="charCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="charCount" /> is less than the resulting number of characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Decoder.Fallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Decoder.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)"> <summary> When overridden in a derived class, decodes a sequence of bytes from the specified byte array and any bytes in the internal buffer into the specified character array. </summary> <returns> The actual number of characters written into <paramref name="chars" />. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="byteIndex"> The index of the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> The character array to contain the resulting set of characters. </param> <param name="charIndex"> The index at which to start writing the resulting set of characters. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). -or- <paramref name="chars" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteIndex" /> or <paramref name="byteCount" /> or <paramref name="charIndex" /> is less than zero. -or- <paramref name="byteindex" /> and <paramref name="byteCount" /> do not denote a valid range in <paramref name="bytes" />. -or- <paramref name="charIndex" /> is not a valid index in <paramref name="chars" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="chars" /> does not have enough capacity from <paramref name="charIndex" /> to the end of the array to accommodate the resulting characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Decoder.Fallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Decoder.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean)"> <summary> When overridden in a derived class, decodes a sequence of bytes from the specified byte array and any bytes in the internal buffer into the specified character array. A parameter indicates whether to clear the internal state of the decoder after the conversion. </summary> <returns> The actual number of characters written into the <paramref name="chars" /> parameter. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="byteIndex"> The index of the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> The character array to contain the resulting set of characters. </param> <param name="charIndex"> The index at which to start writing the resulting set of characters. </param> <param name="flush">true to clear the internal state of the decoder after the conversion; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). -or- <paramref name="chars" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteIndex" /> or <paramref name="byteCount" /> or <paramref name="charIndex" /> is less than zero. -or- <paramref name="byteindex" /> and <paramref name="byteCount" /> do not denote a valid range in <paramref name="bytes" />. -or- <paramref name="charIndex" /> is not a valid index in <paramref name="chars" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="chars" /> does not have enough capacity from <paramref name="charIndex" /> to the end of the array to accommodate the resulting characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Decoder.Fallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Decoder.Reset"> <summary> When overridden in a derived class, sets the decoder back to its initial state. </summary> <filterpriority>2</filterpriority> </member> <member name="T:System.Text.DecoderExceptionFallback"> <summary> Throws <see cref="T:System.Text.DecoderFallbackException" /> if an encoded input byte sequence cannot be converted to a decoded output character. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderExceptionFallback.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderExceptionFallback" /> class. </summary> </member> <member name="M:System.Text.DecoderExceptionFallback.CreateFallbackBuffer"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderExceptionFallback" /> class. </summary> <returns> A <see cref="T:System.Text.DecoderFallbackBuffer" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderExceptionFallback.Equals(System.Object)"> <summary> Indicates whether the current <see cref="T:System.Text.DecoderExceptionFallback" /> object and a specified object are equal. </summary> <returns>true if <paramref name="value" /> is not null and is a <see cref="T:System.Text.DecoderExceptionFallback" /> object; otherwise, false. </returns> <param name="value"> An object that derives from the <see cref="T:System.Text.DecoderExceptionFallback" /> class. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderExceptionFallback.GetHashCode"> <summary> Retrieves the hash code for this instance. </summary> <returns> The return value is always the same arbitrary value, and has no special significance. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.DecoderExceptionFallback.MaxCharCount"> <summary> Gets the maximum number of characters this instance can return. </summary> <returns> The return value is always zero. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Text.DecoderExceptionFallbackBuffer"> <summary> Throws <see cref="T:System.Text.DecoderFallbackException" /> when an encoded input byte sequence cannot be converted to a decoded output character. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderExceptionFallbackBuffer.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderExceptionFallbackBuffer" /> class. </summary> </member> <member name="M:System.Text.DecoderExceptionFallbackBuffer.Fallback(System.Byte[],System.Int32)"> <summary> Throws <see cref="T:System.Text.DecoderFallbackException" /> when the input byte sequence cannot be decoded. The nominal return value is not used. </summary> <returns> None. No value is returned because the <see cref="M:System.Text.DecoderExceptionFallbackBuffer.Fallback(System.Byte[],System.Int32)" /> method always throws an exception. The nominal return value is true. A return value is defined, although it is unchanging, because this method implements an abstract method. </returns> <param name="bytesUnknown"> An input array of bytes. </param> <param name="index"> The index position of a byte in the input. </param> <exception cref="T:System.Text.DecoderFallbackException"> This method always throws an exception that reports the value and index position of the input byte that cannot be decoded. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.DecoderExceptionFallbackBuffer.GetNextChar"> <summary> Retrieves the next character in the exception data buffer. </summary> <returns> The return value is always the Unicode character NULL (U+0000). A return value is defined, although it is unchanging, because this method implements an abstract method. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderExceptionFallbackBuffer.MovePrevious"> <summary> Causes the next call to <see cref="M:System.Text.DecoderExceptionFallbackBuffer.GetNextChar" /> to access the exception data buffer character position that is prior to the current position. </summary> <returns> The return value is always false. A return value is defined, although it is unchanging, because this method implements an abstract method. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.DecoderExceptionFallbackBuffer.Remaining"> <summary> Gets the number of characters in the current <see cref="T:System.Text.DecoderExceptionFallbackBuffer" /> object that remain to be processed. </summary> <returns> The return value is always zero. A return value is defined, although it is unchanging, because this method implements an abstract method. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.DecoderFallback"> <summary> Provides a failure-handling mechanism, called a fallback, for an encoded input byte sequence that cannot be converted to an output character. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderFallback.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderFallback" /> class. </summary> </member> <member name="M:System.Text.DecoderFallback.CreateFallbackBuffer"> <summary> When overridden in a derived class, initializes a new instance of the <see cref="T:System.Text.DecoderFallbackBuffer" /> class. </summary> <returns> A <see cref="T:System.Text.DecoderFallbackBuffer" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.DecoderFallback.ExceptionFallback"> <summary> Gets an object that throws an exception when an input byte sequence cannot be decoded. </summary> <returns> A type derived from the <see cref="T:System.Text.DecoderFallback" /> class. The default value is a <see cref="T:System.Text.DecoderExceptionFallback" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.DecoderFallback.MaxCharCount"> <summary> When overridden in a derived class, gets the maximum number of characters the current <see cref="T:System.Text.DecoderFallback" /> object can return. </summary> <returns> The maximum number of characters the current <see cref="T:System.Text.DecoderFallback" /> object can return. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.DecoderFallback.ReplacementFallback"> <summary> Gets an object that outputs a substitute string in place of an input byte sequence that cannot be decoded. </summary> <returns> A type derived from the <see cref="T:System.Text.DecoderFallback" /> class. The default value is a <see cref="T:System.Text.DecoderReplacementFallback" /> object that emits the QUESTION MARK character ("?", U+003F) in place of unknown byte sequences. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.DecoderFallbackBuffer"> <summary> Passes a string to a decoding operation that is emitted instead of an output character because an input byte sequence cannot be decoded. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderFallbackBuffer.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderFallbackBuffer" /> class. </summary> </member> <member name="M:System.Text.DecoderFallbackBuffer.Fallback(System.Byte[],System.Int32)"> <summary> When overridden in a derived class, prepares the fallback buffer to handle the specified input byte sequence. </summary> <returns>true if the fallback buffer can process <paramref name="bytesUnknown" />; false if the fallback buffer ignores <paramref name="bytesUnknown" />. </returns> <param name="bytesUnknown"> An input array of bytes. </param> <param name="index"> The index position of a byte in <paramref name="bytesUnknown" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.DecoderFallbackBuffer.GetNextChar"> <summary> When overridden in a derived class, retrieves the next character in the fallback buffer. </summary> <returns> The next character in the fallback buffer. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderFallbackBuffer.MovePrevious"> <summary> When overridden in a derived class, causes the next call to the <see cref="M:System.Text.DecoderFallbackBuffer.GetNextChar" /> method to access the data buffer character position that is prior to the current character position. </summary> <returns>true if the <see cref="M:System.Text.DecoderFallbackBuffer.MovePrevious" /> operation was successful; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.DecoderFallbackBuffer.Remaining"> <summary> When overridden in a derived class, gets the number of characters in the current <see cref="T:System.Text.DecoderFallbackBuffer" /> object that remain to be processed. </summary> <returns> The number of characters in the current fallback buffer that have not yet been processed. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.DecoderFallbackBuffer.Reset"> <summary> Initializes all data and state information pertaining to this fallback buffer. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.DecoderFallbackException"> <summary> The exception that is thrown when a decoder fallback operation fails. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderFallbackException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderFallbackException" /> class. </summary> </member> <member name="M:System.Text.DecoderFallbackException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderFallbackException" /> class. A parameter specifies the error message. </summary> <param name="message"> An error message. </param> </member> <member name="M:System.Text.DecoderFallbackException.#ctor(System.String,System.Byte[],System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderFallbackException" /> class. Parameters specify the error message, the array of bytes being decoded, and the index of the byte that cannot be decoded. </summary> <param name="message"> An error message. </param> <param name="bytesUnknown"> The input byte array. </param> <param name="index"> The index position in <paramref name="bytesUnknown" /> of the byte that cannot be decoded. </param> </member> <member name="M:System.Text.DecoderFallbackException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderFallbackException" /> class. Parameters specify the error message and the inner exception that is the cause of this exception. </summary> <param name="message"> An error message. </param> <param name="innerException"> The exception that caused this exception. </param> </member> <member name="P:System.Text.DecoderFallbackException.BytesUnknown"> <summary> Gets the input byte sequence that caused the exception. </summary> <returns> The input byte array that cannot be decoded. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.DecoderFallbackException.Index"> <summary> Gets the index position in the input byte sequence of the byte that caused the exception. </summary> <returns> The index position in the input byte array of the byte that cannot be decoded. The index position is zero-based. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.DecoderReplacementFallback"> <summary> Provides a failure-handling mechanism, called a fallback, for an encoded input byte sequence that cannot be converted to an output character. The fallback emits a user-specified replacement string instead of a decoded input byte sequence. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderReplacementFallback.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderReplacementFallback" /> class. </summary> </member> <member name="M:System.Text.DecoderReplacementFallback.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderReplacementFallback" /> class using a specified replacement string. </summary> <param name="replacement"> A string that is emitted in a decoding operation in place of an input byte sequence that cannot be decoded. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="replacement" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="replacement" /> contains an invalid surrogate pair. In other words, the surrogate pair does not consist of one high surrogate component followed by one low surrogate component. </exception> </member> <member name="M:System.Text.DecoderReplacementFallback.CreateFallbackBuffer"> <summary> Creates a <see cref="T:System.Text.DecoderFallbackBuffer" /> object that is initialized with the replacement string of this <see cref="T:System.Text.DecoderReplacementFallback" /> object. </summary> <returns> A <see cref="T:System.Text.DecoderFallbackBuffer" /> object that specifies a string to use instead of the original decoding operation input. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.DecoderReplacementFallback.DefaultString"> <summary> Gets the replacement string that is the value of the <see cref="T:System.Text.DecoderReplacementFallback" /> object. </summary> <returns> A substitute string that is emitted in place of an input byte sequence that cannot be decoded. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderReplacementFallback.Equals(System.Object)"> <summary> Indicates whether the value of a specified object is equal to the <see cref="T:System.Text.DecoderReplacementFallback" /> object. </summary> <returns>true if <paramref name="value" /> is a <see cref="T:System.Text.DecoderReplacementFallback" /> object having a <see cref="P:System.Text.DecoderReplacementFallback.DefaultString" /> property that is equal to the <see cref="P:System.Text.DecoderReplacementFallback.DefaultString" /> property of the current <see cref="T:System.Text.DecoderReplacementFallback" /> object; otherwise, false. </returns> <param name="value"> A <see cref="T:System.Text.DecoderReplacementFallback" /> object. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderReplacementFallback.GetHashCode"> <summary> Retrieves the hash code for the value of the <see cref="T:System.Text.DecoderReplacementFallback" /> object. </summary> <returns> The hash code of the value of the object. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.DecoderReplacementFallback.MaxCharCount"> <summary> Gets the number of characters in the replacement string for the <see cref="T:System.Text.DecoderReplacementFallback" /> object. </summary> <returns> The number of characters in the string that is emitted in place of a byte sequence that cannot be decoded, that is, the length of the string returned by the <see cref="P:System.Text.DecoderReplacementFallback.DefaultString" /> property. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Text.DecoderReplacementFallbackBuffer"> <summary> Represents a substitute output string that is emitted when the original input byte sequence cannot be decoded. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderReplacementFallbackBuffer.#ctor(System.Text.DecoderReplacementFallback)"> <summary> Initializes a new instance of the <see cref="T:System.Text.DecoderReplacementFallbackBuffer" /> class using the value of a <see cref="T:System.Text.DecoderReplacementFallback" /> object. </summary> <param name="fallback"> A <see cref="T:System.Text.DecoderReplacementFallback" /> object that contains a replacement string. </param> </member> <member name="M:System.Text.DecoderReplacementFallbackBuffer.Fallback(System.Byte[],System.Int32)"> <summary> Prepares the replacement fallback buffer to use the current replacement string. </summary> <returns>true if the replacement string is not empty; false if the replacement string is empty. </returns> <param name="bytesUnknown"> An input byte sequence. This parameter is ignored unless an exception is thrown. </param> <param name="index"> The index position of the byte in <paramref name="bytesUnknown" />. This parameter is ignored in this operation. </param> <exception cref="T:System.ArgumentException"> This method is called again before the <see cref="M:System.Text.DecoderReplacementFallbackBuffer.GetNextChar" /> method has read all the characters in the replacement fallback buffer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.DecoderReplacementFallbackBuffer.GetNextChar"> <summary> Retrieves the next character in the replacement fallback buffer. </summary> <returns> The next character in the replacement fallback buffer. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.DecoderReplacementFallbackBuffer.MovePrevious"> <summary> Causes the next call to <see cref="M:System.Text.DecoderReplacementFallbackBuffer.GetNextChar" /> to access the character position in the replacement fallback buffer prior to the current character position. </summary> <returns>true if the <see cref="M:System.Text.DecoderReplacementFallbackBuffer.MovePrevious" /> operation was successful; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.DecoderReplacementFallbackBuffer.Remaining"> <summary> Gets the number of characters in the replacement fallback buffer that remain to be processed. </summary> <returns> The number of characters in the replacement fallback buffer that have not yet been processed. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.DecoderReplacementFallbackBuffer.Reset"> <summary> Initializes all internal state information and data in the <see cref="T:System.Text.DecoderReplacementFallbackBuffer" /> object. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.Encoder"> <summary> Converts a set of characters into a sequence of bytes. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoder.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.Encoder" /> class. </summary> </member> <member name="M:System.Text.Encoder.Convert(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@)"> <summary> Converts a buffer of Unicode characters to an encoded byte sequence and stores the result in another buffer. </summary> <param name="chars"> The address of a string of UTF-16 encoded characters to convert. </param> <param name="charCount"> The number of characters in <paramref name="chars" /> to convert. </param> <param name="bytes"> The address of a buffer to store the converted bytes. </param> <param name="byteCount"> The maximum number of bytes in <paramref name="bytes" /> to use in the conversion. </param> <param name="flush">true to indicate no further data is to be converted; otherwise, false. </param> <param name="charsUsed"> When this method returns, contains the number of characters from <paramref name="chars" /> that were used in the conversion. This parameter is passed uninitialized. </param> <param name="bytesUsed"> When this method returns, contains the number of bytes that were used in the conversion. This parameter is passed uninitialized. </param> <param name="completed"> When this method returns, contains true if all the characters specified by <paramref name="charCount" /> were converted; otherwise, false. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> or <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> or <paramref name="byteCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> The output buffer is too small to contain any of the converted input. The output buffer should be greater than or equal to the size indicated by the <see cref="Overload:System.Text.Encoder.GetByteCount" /> method. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoder.Fallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoder.Convert(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@)"> <summary> Converts an array of Unicode characters to an encoded byte sequence and stores the result in an array of bytes. </summary> <param name="chars"> An array of characters to convert. </param> <param name="charIndex"> The first element of <paramref name="chars" /> to convert. </param> <param name="charCount"> The number of elements of <paramref name="chars" /> to convert. </param> <param name="bytes"> An array where the converted bytes are stored. </param> <param name="byteIndex"> The first element of <paramref name="bytes" /> in which data is stored. </param> <param name="byteCount"> The maximum number of elements of <paramref name="bytes" /> to use in the conversion. </param> <param name="flush">true to indicate no further data is to be converted; otherwise, false. </param> <param name="charsUsed"> When this method returns, contains the number of characters from <paramref name="chars" /> that were used in the conversion. This parameter is passed uninitialized. </param> <param name="bytesUsed"> When this method returns, contains the number of bytes that were produced by the conversion. This parameter is passed uninitialized. </param> <param name="completed"> When this method returns, contains true if all the characters specified by <paramref name="charCount" /> were converted; otherwise, false. This parameter is passed uninitialized. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> or <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" />, <paramref name="charCount" />, <paramref name="byteIndex" />, or <paramref name="byteCount" /> is less than zero. -or- The length of <paramref name="chars" /> - <paramref name="charIndex" /> is less than <paramref name="charCount" />. -or- The length of <paramref name="bytes" /> - <paramref name="byteIndex" /> is less than <paramref name="byteCount" />. </exception> <exception cref="T:System.ArgumentException"> The output buffer is too small to contain any of the converted input. The output buffer should be greater than or equal to the size indicated by the <see cref="Overload:System.Text.Encoder.GetByteCount" /> method. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoder.Fallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoder.Fallback"> <summary> Gets or sets a <see cref="T:System.Text.EncoderFallback" /> object for the current <see cref="T:System.Text.Encoder" /> object. </summary> <returns> A <see cref="T:System.Text.EncoderFallback" /> object. </returns> <exception cref="T:System.ArgumentNullException"> The value in a set operation is null (Nothing). </exception> <exception cref="T:System.ArgumentException"> A new value cannot be assigned in a set operation because the current <see cref="T:System.Text.EncoderFallbackBuffer" /> object contains data that has not been encoded yet. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoder.Fallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Encoder.FallbackBuffer"> <summary> Gets the <see cref="T:System.Text.EncoderFallbackBuffer" /> object associated with the current <see cref="T:System.Text.Encoder" /> object. </summary> <returns> A <see cref="T:System.Text.EncoderFallbackBuffer" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoder.GetByteCount(System.Char*,System.Int32,System.Boolean)"> <summary> When overridden in a derived class, calculates the number of bytes produced by encoding a set of characters starting at the specified character pointer. A parameter indicates whether to clear the internal state of the encoder after the calculation. </summary> <returns> The number of bytes produced by encoding the specified characters and any characters in the internal buffer. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <param name="flush">true to simulate clearing the internal state of the encoder after the calculation; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing in Visual Basic .NET). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoder.Fallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoder.GetByteCount(System.Char[],System.Int32,System.Int32,System.Boolean)"> <summary> When overridden in a derived class, calculates the number of bytes produced by encoding a set of characters from the specified character array. A parameter indicates whether to clear the internal state of the encoder after the calculation. </summary> <returns> The number of bytes produced by encoding the specified characters and any characters in the internal buffer. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="index"> The index of the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <param name="flush">true to simulate clearing the internal state of the encoder after the calculation; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="chars" />. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoder.Fallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoder.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean)"> <summary> When overridden in a derived class, encodes a set of characters starting at the specified character pointer and any characters in the internal buffer into a sequence of bytes that are stored starting at the specified byte pointer. A parameter indicates whether to clear the internal state of the encoder after the conversion. </summary> <returns> The actual number of bytes written at the location indicated by the <paramref name="bytes" /> parameter. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> A pointer to the location at which to start writing the resulting sequence of bytes. </param> <param name="byteCount"> The maximum number of bytes to write. </param> <param name="flush">true to clear the internal state of the encoder after the conversion; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing). -or- <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> or <paramref name="byteCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="byteCount" /> is less than the resulting number of bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoder.Fallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoder.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Boolean)"> <summary> When overridden in a derived class, encodes a set of characters from the specified character array and any characters in the internal buffer into the specified byte array. A parameter indicates whether to clear the internal state of the encoder after the conversion. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <param name="flush">true to clear the internal state of the encoder after the conversion; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing). -or- <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoder.Fallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoder.Reset"> <summary> When overridden in a derived class, sets the encoder back to its initial state. </summary> <filterpriority>2</filterpriority> </member> <member name="T:System.Text.EncoderExceptionFallback"> <summary> Throws a <see cref="T:System.Text.EncoderFallbackException" /> if an input character cannot be converted to an encoded output byte sequence. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderExceptionFallback.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderExceptionFallback" /> class. </summary> </member> <member name="M:System.Text.EncoderExceptionFallback.CreateFallbackBuffer"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderExceptionFallback" /> class. </summary> <returns> A <see cref="T:System.Text.EncoderFallbackBuffer" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderExceptionFallback.Equals(System.Object)"> <summary> Indicates whether the current <see cref="T:System.Text.EncoderExceptionFallback" /> object and a specified object are equal. </summary> <returns>true if <paramref name="value" /> is not null (Nothing in Visual Basic .NET) and is a <see cref="T:System.Text.EncoderExceptionFallback" /> object; otherwise, false. </returns> <param name="value"> An object that derives from the <see cref="T:System.Text.EncoderExceptionFallback" /> class. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderExceptionFallback.GetHashCode"> <summary> Retrieves the hash code for this instance. </summary> <returns> The return value is always the same arbitrary value, and has no special significance. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.EncoderExceptionFallback.MaxCharCount"> <summary> Gets the maximum number of characters this instance can return. </summary> <returns> The return value is always zero. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Text.EncoderExceptionFallbackBuffer"> <summary> Throws <see cref="T:System.Text.EncoderFallbackException" /> when an input character cannot be converted to an encoded output byte sequence. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderExceptionFallbackBuffer.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderExceptionFallbackBuffer" /> class. </summary> </member> <member name="M:System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char,System.Char,System.Int32)"> <summary> Throws an exception because the input character cannot be encoded. Parameters specify the value and index position of the surrogate pair in the input, and the nominal return value is not used. </summary> <returns> None. No value is returned because the <see cref="M:System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char,System.Char,System.Int32)" /> method always throws an exception. </returns> <param name="charUnknownHigh"> The high surrogate of the input pair. </param> <param name="charUnknownLow"> The low surrogate of the input pair. </param> <param name="index"> The index position of the surrogate pair in the input buffer. </param> <exception cref="T:System.Text.EncoderFallbackException"> The character represented by <paramref name="charUnknownHigh" /> and <paramref name="charUnknownLow" /> cannot be encoded. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Either <paramref name="charUnknownHigh" /> or <paramref name="charUnknownLow" /> is invalid. <paramref name="charUnknownHigh" /> is not between U+D800 and U+DBFF, inclusive, or <paramref name="charUnknownLow" /> is not between U+DC00 and U+DFFF, inclusive. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char,System.Int32)"> <summary> Throws an exception because the input character cannot be encoded. Parameters specify the value and index position of the character that cannot be converted. </summary> <returns> None. No value is returned because the <see cref="M:System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char,System.Int32)" /> method always throws an exception. </returns> <param name="charUnknown"> An input character. </param> <param name="index"> The index position of the character in the input buffer. </param> <exception cref="T:System.Text.EncoderFallbackException"> <paramref name="charUnknown" /> cannot be encoded. This method always throws an exception that reports the value of the <paramref name="charUnknown" /> and <paramref name="index" /> parameters. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncoderExceptionFallbackBuffer.GetNextChar"> <summary> Retrieves the next character in the exception fallback buffer. </summary> <returns> The return value is always the Unicode character, NULL (U+0000). A return value is defined, although it is unchanging, because this method implements an abstract method. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderExceptionFallbackBuffer.MovePrevious"> <summary> Causes the next call to the <see cref="M:System.Text.EncoderExceptionFallbackBuffer.GetNextChar" /> method to access the exception data buffer character position that is prior to the current position. </summary> <returns> The return value is always false. A return value is defined, although it is unchanging, because this method implements an abstract method. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.EncoderExceptionFallbackBuffer.Remaining"> <summary> Gets the number of characters in the current <see cref="T:System.Text.EncoderExceptionFallbackBuffer" /> object that remain to be processed. </summary> <returns> The return value is always zero. A return value is defined, although it is unchanging, because this method implements an abstract method. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.EncoderFallback"> <summary> Provides a failure-handling mechanism, called a fallback, for an input character that cannot be converted to an encoded output byte sequence. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderFallback.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderFallback" /> class. </summary> </member> <member name="M:System.Text.EncoderFallback.CreateFallbackBuffer"> <summary> When overridden in a derived class, initializes a new instance of the <see cref="T:System.Text.EncoderFallbackBuffer" /> class. </summary> <returns> A <see cref="T:System.Text.EncoderFallbackBuffer" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.EncoderFallback.ExceptionFallback"> <summary> Gets an object that throws an exception when an input character cannot be encoded. </summary> <returns> A type derived from the <see cref="T:System.Text.EncoderFallback" /> class. The default value is a <see cref="T:System.Text.EncoderExceptionFallback" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.EncoderFallback.MaxCharCount"> <summary> When overridden in a derived class, gets the maximum number of characters the current <see cref="T:System.Text.EncoderFallback" /> object can return. </summary> <returns> The maximum number of characters the current <see cref="T:System.Text.EncoderFallback" /> object can return. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.EncoderFallback.ReplacementFallback"> <summary> Gets an object that outputs a substitute string in place of an input character that cannot be encoded. </summary> <returns> A type derived from the <see cref="T:System.Text.EncoderFallback" /> class. The default value is a <see cref="T:System.Text.EncoderReplacementFallback" /> object that replaces unknown input characters with the QUESTION MARK character ("?", U+003F). </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.EncoderFallbackBuffer"> <summary> Passes a string to an encoding operation that is emitted instead of any input character that cannot be encoded. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderFallbackBuffer.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderFallbackBuffer" /> class. </summary> </member> <member name="M:System.Text.EncoderFallbackBuffer.Fallback(System.Char,System.Char,System.Int32)"> <summary> When overridden in a derived class, prepares the fallback buffer to handle the specified surrogate pair. </summary> <returns>True if the fallback buffer can process <paramref name="charUnknownHigh" /> and <paramref name="charUnknownLow" />; false if fallback buffer ignores the surrogate pair. </returns> <param name="charUnknownHigh"> The high surrogate of the input pair. </param> <param name="charUnknownLow"> The low surrogate of the input pair. </param> <param name="index"> The index position of the surrogate pair in the input buffer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncoderFallbackBuffer.Fallback(System.Char,System.Int32)"> <summary> When overridden in a derived class, prepares the fallback buffer to handle the specified input character. </summary> <returns>true if the fallback buffer can process <paramref name="charUnknown" />; false if the fallback buffer ignores <paramref name="charUnknown" />. </returns> <param name="charUnknown"> An input character. </param> <param name="index"> The index position of the character in the input buffer. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncoderFallbackBuffer.GetNextChar"> <summary> When overridden in a derived class, retrieves the next character in the fallback buffer. </summary> <returns> The next character in the fallback buffer. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderFallbackBuffer.MovePrevious"> <summary> When overridden in a derived class, causes the next call to the <see cref="M:System.Text.EncoderFallbackBuffer.GetNextChar" /> method to access the data buffer character position that is prior to the current character position. </summary> <returns>true if the <see cref="M:System.Text.EncoderFallbackBuffer.MovePrevious" /> operation was successful; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.EncoderFallbackBuffer.Remaining"> <summary> When overridden in a derived class, gets the number of characters in the current <see cref="T:System.Text.EncoderFallbackBuffer" /> object that remain to be processed. </summary> <returns> The number of characters in the current fallback buffer that have not yet been processed. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncoderFallbackBuffer.Reset"> <summary> Initializes all data and state information pertaining to this fallback buffer. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.EncoderFallbackException"> <summary> The exception that is thrown when an encoder fallback operation fails. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderFallbackException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderFallbackException" /> class. </summary> </member> <member name="M:System.Text.EncoderFallbackException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderFallbackException" /> class. A parameter specifies the error message. </summary> <param name="message"> An error message. </param> </member> <member name="M:System.Text.EncoderFallbackException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderFallbackException" /> class. Parameters specify the error message and the inner exception that is the cause of this exception. </summary> <param name="message"> An error message. </param> <param name="innerException"> The exception that caused this exception. </param> </member> <member name="P:System.Text.EncoderFallbackException.CharUnknown"> <summary> Gets the input character that caused the exception. </summary> <returns> The character that cannot be encoded. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.EncoderFallbackException.CharUnknownHigh"> <summary> Gets the high component character of the surrogate pair that caused the exception. </summary> <returns> The high component character of the surrogate pair that cannot be encoded. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.EncoderFallbackException.CharUnknownLow"> <summary> Gets the low component character of the surrogate pair that caused the exception. </summary> <returns> The low component character of the surrogate pair that cannot be encoded. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.EncoderFallbackException.Index"> <summary> Gets the index position in the input buffer of the character that caused the exception. </summary> <returns> The index position in the input buffer of the character that cannot be encoded. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncoderFallbackException.IsUnknownSurrogate"> <summary> Indicates whether the input that caused the exception is a surrogate pair. </summary> <returns>true if the input was a surrogate pair; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Text.EncoderReplacementFallback"> <summary> Provides a failure handling mechanism, called a fallback, for an input character that cannot be converted to an output byte sequence. The fallback uses a user-specified replacement string instead of the original input character. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderReplacementFallback.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderReplacementFallback" /> class. </summary> </member> <member name="M:System.Text.EncoderReplacementFallback.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderReplacementFallback" /> class using a specified replacement string. </summary> <param name="replacement"> A string that is converted in an encoding operation in place of an input character that cannot be encoded. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="replacement" /> is null. </exception> <exception cref="T:System.ArgumentException"> <paramref name="replacement" /> contains an invalid surrogate pair. In other words, the surrogate does not consist of one high surrogate component followed by one low surrogate component. </exception> </member> <member name="M:System.Text.EncoderReplacementFallback.CreateFallbackBuffer"> <summary> Creates a <see cref="T:System.Text.EncoderFallbackBuffer" /> object that is initialized with the replacement string of this <see cref="T:System.Text.EncoderReplacementFallback" /> object. </summary> <returns> A <see cref="T:System.Text.EncoderFallbackBuffer" /> object equal to this <see cref="T:System.Text.EncoderReplacementFallback" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.EncoderReplacementFallback.DefaultString"> <summary> Gets the replacement string that is the value of the <see cref="T:System.Text.EncoderReplacementFallback" /> object. </summary> <returns> A substitute string that is used in place of an input character that cannot be encoded. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderReplacementFallback.Equals(System.Object)"> <summary> Indicates whether the value of a specified object is equal to the <see cref="T:System.Text.EncoderReplacementFallback" /> object. </summary> <returns>true if the <paramref name="value" /> parameter specifies an <see cref="T:System.Text.EncoderReplacementFallback" /> object and the replacement string of that object is equal to the replacement string of this <see cref="T:System.Text.EncoderReplacementFallback" /> object; otherwise, false. </returns> <param name="value"> A <see cref="T:System.Text.EncoderReplacementFallback" /> object. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderReplacementFallback.GetHashCode"> <summary> Retrieves the hash code for the value of the <see cref="T:System.Text.EncoderReplacementFallback" /> object. </summary> <returns> The hash code of the value of the object. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.EncoderReplacementFallback.MaxCharCount"> <summary> Gets the number of characters in the replacement string for the <see cref="T:System.Text.EncoderReplacementFallback" /> object. </summary> <returns> The number of characters in the string used in place of an input character that cannot be encoded. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Text.EncoderReplacementFallbackBuffer"> <summary> Represents a substitute input string that is used when the original input character cannot be encoded. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderReplacementFallbackBuffer.#ctor(System.Text.EncoderReplacementFallback)"> <summary> Initializes a new instance of the <see cref="T:System.Text.EncoderReplacementFallbackBuffer" /> class using the value of a <see cref="T:System.Text.EncoderReplacementFallback" /> object. </summary> <param name="fallback"> A <see cref="T:System.Text.EncoderReplacementFallback" /> object. </param> </member> <member name="M:System.Text.EncoderReplacementFallbackBuffer.Fallback(System.Char,System.Char,System.Int32)"> <summary> Indicates whether a replacement string can be used when an input surrogate pair cannot be encoded, or whether the surrogate pair can be ignored. Parameters specify the surrogate pair and the index position of the pair in the input. </summary> <returns>true if the replacement string is not empty; false if the replacement string is empty. </returns> <param name="charUnknownHigh"> The high surrogate of the input pair. </param> <param name="charUnknownLow"> The low surrogate of the input pair. </param> <param name="index"> The index position of the surrogate pair in the input buffer. </param> <exception cref="T:System.ArgumentException"> This method is called again before the <see cref="M:System.Text.EncoderReplacementFallbackBuffer.GetNextChar" /> method has read all the replacement string characters. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncoderReplacementFallbackBuffer.Fallback(System.Char,System.Int32)"> <summary> Prepares the replacement fallback buffer to use the current replacement string. </summary> <returns>true if the replacement string is not empty; false if the replacement string is empty. </returns> <param name="charUnknown"> An input character. This parameter is ignored in this operation unless an exception is thrown. </param> <param name="index"> The index position of the character in the input buffer. This parameter is ignored in this operation. </param> <exception cref="T:System.ArgumentException"> This method is called again before the <see cref="M:System.Text.EncoderReplacementFallbackBuffer.GetNextChar" /> method has read all the characters in the replacement fallback buffer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncoderReplacementFallbackBuffer.GetNextChar"> <summary> Retrieves the next character in the replacement fallback buffer. </summary> <returns> The next Unicode character in the replacement fallback buffer that the application can encode. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncoderReplacementFallbackBuffer.MovePrevious"> <summary> Causes the next call to the <see cref="M:System.Text.EncoderReplacementFallbackBuffer.GetNextChar" /> method to access the character position in the replacement fallback buffer prior to the current character position. </summary> <returns>true if the <see cref="M:System.Text.EncoderReplacementFallbackBuffer.MovePrevious" /> operation was successful; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.EncoderReplacementFallbackBuffer.Remaining"> <summary> Gets the number of characters in the replacement fallback buffer that remain to be processed. </summary> <returns> The number of characters in the replacement fallback buffer that have not yet been processed. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncoderReplacementFallbackBuffer.Reset"> <summary> Initializes all internal state information and data in this instance of <see cref="T:System.Text.EncoderReplacementFallbackBuffer" />. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.Encoding"> <summary> Represents a character encoding. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.Encoding" /> class. </summary> </member> <member name="M:System.Text.Encoding.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Text.Encoding" /> class that corresponds to the specified code page. </summary> <param name="codePage"> The code page identifier of the preferred encoding. -or- 0, to use the default encoding. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="codePage" /> is less than zero. </exception> </member> <member name="P:System.Text.Encoding.ASCII"> <summary> Gets an encoding for the ASCII (7-bit) character set. </summary> <returns> A <see cref="T:System.Text.Encoding" /> object for the ASCII (7-bit) character set. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Encoding.BigEndianUnicode"> <summary> Gets an encoding for the UTF-16 format using the big endian byte order. </summary> <returns> A <see cref="T:System.Text.Encoding" /> for the UTF-16 format using the big endian byte order. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Encoding.BodyName"> <summary> When overridden in a derived class, gets a name for the current encoding that can be used with mail agent body tags. </summary> <returns> A name for the current <see cref="T:System.Text.Encoding" /> that can be used with mail agent body tags. -or- An empty string (""), if the current <see cref="T:System.Text.Encoding" /> cannot be used. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoding.Clone"> <summary> When overridden in a derived class, creates a shallow copy of the current <see cref="T:System.Text.Encoding" /> object. </summary> <returns> A copy of the current <see cref="T:System.Text.Encoding" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.CodePage"> <summary> When overridden in a derived class, gets the code page identifier of the current <see cref="T:System.Text.Encoding" />. </summary> <returns> The code page identifier of the current <see cref="T:System.Text.Encoding" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoding.Convert(System.Text.Encoding,System.Text.Encoding,System.Byte[])"> <summary> Converts an entire byte array from one encoding to another. </summary> <returns> An array of type <see cref="T:System.Byte" /> containing the results of converting <paramref name="bytes" /> from <paramref name="srcEncoding" /> to <paramref name="dstEncoding" />. </returns> <param name="srcEncoding"> The encoding format of <paramref name="bytes" />. </param> <param name="dstEncoding"> The target encoding format. </param> <param name="bytes"></param> <exception cref="T:System.ArgumentNullException"> <paramref name="srcEncoding" /> is null. -or- <paramref name="dstEncoding" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- srcEncoding.<see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- dstEncoding.<see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.Convert(System.Text.Encoding,System.Text.Encoding,System.Byte[],System.Int32,System.Int32)"> <summary> Converts a range of bytes in a byte array from one encoding to another. </summary> <returns> An array of type <see cref="T:System.Byte" /> containing the result of converting a range of bytes in <paramref name="bytes" /> from <paramref name="srcEncoding" /> to <paramref name="dstEncoding" />. </returns> <param name="srcEncoding"> The encoding of the source array, <paramref name="bytes" />. </param> <param name="dstEncoding"> The encoding of the output array. </param> <param name="bytes"> The array of bytes to convert. </param> <param name="index"> The index of the first element of <paramref name="bytes" /> to convert. </param> <param name="count"> The number of bytes to convert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="srcEncoding" /> is null. -or- <paramref name="dstEncoding" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> and <paramref name="count" /> do not specify a valid range in the byte array. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- srcEncoding.<see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- dstEncoding.<see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Encoding.DecoderFallback"> <summary> Gets or sets the <see cref="T:System.Text.DecoderFallback" /> object for the current <see cref="T:System.Text.Encoding" /> object. </summary> <returns> The <see cref="T:System.Text.DecoderFallback" /> object for the current <see cref="T:System.Text.Encoding" /> object. </returns> <exception cref="T:System.ArgumentNullException"> The value in a set operation is null. </exception> <exception cref="T:System.InvalidOperationException"> A value cannot be assigned in a set operation because the current <see cref="T:System.Text.Encoding" /> object is read-only. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.Default"> <summary> Gets an encoding for the operating system's current ANSI code page. </summary> <returns> An encoding for the operating system's current ANSI code page. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Encoding.EncoderFallback"> <summary> Gets or sets the <see cref="T:System.Text.EncoderFallback" /> object for the current <see cref="T:System.Text.Encoding" /> object. </summary> <returns> The <see cref="T:System.Text.EncoderFallback" /> object for the current <see cref="T:System.Text.Encoding" /> object. </returns> <exception cref="T:System.ArgumentNullException"> The value in a set operation is null. </exception> <exception cref="T:System.InvalidOperationException"> A value cannot be assigned in a set operation because the current <see cref="T:System.Text.Encoding" /> object is read-only. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.EncodingName"> <summary> When overridden in a derived class, gets the human-readable description of the current encoding. </summary> <returns> The human-readable description of the current <see cref="T:System.Text.Encoding" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoding.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Object" /> is equal to the current instance. </summary> <returns>true if <paramref name="value" /> is an instance of <see cref="T:System.Text.Encoding" /> and is equal to the current instance; otherwise, false. </returns> <param name="value"> The <see cref="T:System.Object" /> to compare with the current instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoding.GetByteCount(System.Char*,System.Int32)"> <summary> When overridden in a derived class, calculates the number of bytes produced by encoding a set of characters starting at the specified character pointer. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetByteCount(System.Char[])"> <summary> When overridden in a derived class, calculates the number of bytes produced by encoding all the characters in the specified character array. </summary> <returns> The number of bytes produced by encoding all the characters in the specified character array. </returns> <param name="chars"> The character array containing the characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetByteCount(System.Char[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, calculates the number of bytes produced by encoding a set of characters from the specified character array. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="index"> The index of the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="chars" />. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetByteCount(System.String)"> <summary> When overridden in a derived class, calculates the number of bytes produced by encoding the characters in the specified <see cref="T:System.String" />. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="s"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32)"> <summary> When overridden in a derived class, encodes a set of characters starting at the specified character pointer into a sequence of bytes that are stored starting at the specified byte pointer. </summary> <returns> The actual number of bytes written at the location indicated by the <paramref name="bytes" /> parameter. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> A pointer to the location at which to start writing the resulting sequence of bytes. </param> <param name="byteCount"> The maximum number of bytes to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> or <paramref name="byteCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="byteCount" /> is less than the resulting number of bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetBytes(System.Char[])"> <summary> When overridden in a derived class, encodes all the characters in the specified character array into a sequence of bytes. </summary> <returns> A byte array containing the results of encoding the specified set of characters. </returns> <param name="chars"> The character array containing the characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetBytes(System.Char[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, encodes a set of characters from the specified character array into a sequence of bytes. </summary> <returns> A byte array containing the results of encoding the specified set of characters. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="index"> The index of the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="chars" />. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> When overridden in a derived class, encodes a set of characters from the specified character array into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetBytes(System.String)"> <summary> When overridden in a derived class, encodes all the characters in the specified <see cref="T:System.String" /> into a sequence of bytes. </summary> <returns> A byte array containing the results of encoding the specified set of characters. </returns> <param name="s"></param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> When overridden in a derived class, encodes a set of characters from the specified <see cref="T:System.String" /> into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="s"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetCharCount(System.Byte*,System.Int32)"> <summary> When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes starting at the specified byte pointer. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetCharCount(System.Byte[])"> <summary> When overridden in a derived class, calculates the number of characters produced by decoding all the bytes in the specified byte array. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetCharCount(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32)"> <summary> When overridden in a derived class, decodes a sequence of bytes starting at the specified byte pointer into a set of characters that are stored starting at the specified character pointer. </summary> <returns> The actual number of characters written at the location indicated by the <paramref name="chars" /> parameter. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> A pointer to the location at which to start writing the resulting set of characters. </param> <param name="charCount"> The maximum number of characters to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. -or- <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> or <paramref name="charCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="charCount" /> is less than the resulting number of characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetChars(System.Byte[])"> <summary> When overridden in a derived class, decodes all the bytes in the specified byte array into a set of characters. </summary> <returns> A character array containing the results of decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetChars(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, decodes a sequence of bytes from the specified byte array into a set of characters. </summary> <returns> A character array containing the results of decoding the specified sequence of bytes. </returns> <param name="bytes"></param> <param name="index"></param> <param name="count"></param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)"> <summary> When overridden in a derived class, decodes a sequence of bytes from the specified byte array into the specified character array. </summary> <returns> The actual number of characters written into <paramref name="chars" />. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="byteIndex"> The index of the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> The character array to contain the resulting set of characters. </param> <param name="charIndex"> The index at which to start writing the resulting set of characters. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. -or- <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteIndex" /> or <paramref name="byteCount" /> or <paramref name="charIndex" /> is less than zero. -or- <paramref name="byteindex" /> and <paramref name="byteCount" /> do not denote a valid range in <paramref name="bytes" />. -or- <paramref name="charIndex" /> is not a valid index in <paramref name="chars" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="chars" /> does not have enough capacity from <paramref name="charIndex" /> to the end of the array to accommodate the resulting characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetDecoder"> <summary> When overridden in a derived class, obtains a decoder that converts an encoded sequence of bytes into a sequence of characters. </summary> <returns> A <see cref="T:System.Text.Decoder" /> that converts an encoded sequence of bytes into a sequence of characters. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetEncoder"> <summary> When overridden in a derived class, obtains an encoder that converts a sequence of Unicode characters into an encoded sequence of bytes. </summary> <returns> A <see cref="T:System.Text.Encoder" /> that converts a sequence of Unicode characters into an encoded sequence of bytes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetEncoding(System.Int32)"> <summary> Returns the encoding associated with the specified code page identifier. </summary> <returns> The <see cref="T:System.Text.Encoding" /> associated with the specified code page. </returns> <param name="codepage"> The code page identifier of the preferred encoding. -or- 0, to use the default encoding. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="codepage" /> is less than zero or greater than 65535. </exception> <exception cref="T:System.ArgumentException"> <paramref name="codepage" /> is not supported by the underlying platform. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="codepage" /> is not supported by the underlying platform. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetEncoding(System.Int32,System.Text.EncoderFallback,System.Text.DecoderFallback)"> <summary> Returns the encoding associated with the specified code page identifier. Parameters specify an error handler for characters that cannot be encoded and byte sequences that cannot be decoded. </summary> <returns> The <see cref="T:System.Text.Encoding" /> object associated with the specified code page. </returns> <param name="codepage"></param> <param name="encoderFallback"> A <see cref="T:System.Text.EncoderFallback" /> object that provides an error handling procedure when a character cannot be encoded with the current encoding. </param> <param name="decoderFallback"> A <see cref="T:System.Text.DecoderFallback" /> object that provides an error handling procedure when a byte sequence cannot be decoded with the current encoding. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="codepage" /> is less than zero or greater than 65535. </exception> <exception cref="T:System.ArgumentException"> <paramref name="codepage" /> is not supported by the underlying platform. </exception> <exception cref="T:System.NotSupportedException"> <paramref name="codepage" /> is not supported by the underlying platform. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetEncoding(System.String)"> <summary> Returns an encoding associated with the specified code page name. </summary> <returns> The <see cref="T:System.Text.Encoding" /> associated with the specified code page. </returns> <param name="name"> The code page name of the preferred encoding. Any value returned by <see cref="P:System.Text.Encoding.WebName" /> is a valid input. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is not a valid code page name. -or- The code page indicated by <paramref name="name" /> is not supported by the underlying platform. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetEncoding(System.String,System.Text.EncoderFallback,System.Text.DecoderFallback)"> <summary> Returns the encoding associated with the specified code page name. Parameters specify an error handler for characters that cannot be encoded and byte sequences that cannot be decoded. </summary> <returns> The <see cref="T:System.Text.Encoding" /> object associated with the specified code page. </returns> <param name="name"> The code page name of the preferred encoding. </param> <param name="encoderFallback"> A <see cref="T:System.Text.EncoderFallback" /> object that provides an error handling procedure when a character cannot be encoded with the current encoding. </param> <param name="decoderFallback"> A <see cref="T:System.Text.DecoderFallback" /> object that provides an error handling procedure when a byte sequence cannot be decoded with the current encoding. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is not a valid code page name. -or- The code page indicated by <paramref name="name" /> is not supported by the underlying platform. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetEncodings"> <summary> Returns an array containing all encodings. </summary> <returns> An array of type <see cref="T:System.Text.EncodingInfo" /> containing all encodings. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetHashCode"> <summary> Returns the hash code for the current instance. </summary> <returns> The hash code for the current instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetMaxByteCount(System.Int32)"> <summary> When overridden in a derived class, calculates the maximum number of bytes produced by encoding the specified number of characters. </summary> <returns> The maximum number of bytes produced by encoding the specified number of characters. </returns> <param name="charCount"> The number of characters to encode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> is less than zero. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetMaxCharCount(System.Int32)"> <summary> When overridden in a derived class, calculates the maximum number of characters produced by decoding the specified number of bytes. </summary> <returns> The maximum number of characters produced by decoding the specified number of bytes. </returns> <param name="byteCount"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> is less than zero. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetPreamble"> <summary> When overridden in a derived class, returns a sequence of bytes that specifies the encoding used. </summary> <returns> A byte array containing a sequence of bytes that specifies the encoding used. -or- A byte array of length zero, if a preamble is not required. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetString(System.Byte[])"> <summary> When overridden in a derived class, decodes all the bytes in the specified byte array into a string. </summary> <returns> A <see cref="T:System.String" /> containing the results of decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.Encoding.GetString(System.Byte[],System.Int32,System.Int32)"> <summary> When overridden in a derived class, decodes a sequence of bytes from the specified byte array into a string. </summary> <returns> A <see cref="T:System.String" /> containing the results of decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Encoding.HeaderName"> <summary> When overridden in a derived class, gets a name for the current encoding that can be used with mail agent header tags. </summary> <returns> A name for the current <see cref="T:System.Text.Encoding" /> to use with mail agent header tags. -or- An empty string (""), if the current <see cref="T:System.Text.Encoding" /> cannot be used. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoding.IsAlwaysNormalized"> <summary> Gets a value indicating whether the current encoding is always normalized, using the default normalization form. </summary> <returns>true if the current <see cref="T:System.Text.Encoding" /> is always normalized; otherwise, false. The default is false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.Encoding.IsAlwaysNormalized(System.Text.NormalizationForm)"> <summary> When overridden in a derived class, gets a value indicating whether the current encoding is always normalized, using the specified normalization form. </summary> <returns>true if the current <see cref="T:System.Text.Encoding" /> object is always normalized using the specified <see cref="T:System.Text.NormalizationForm" /> value; otherwise, false. The default is false. </returns> <param name="form"> One of the <see cref="T:System.Text.NormalizationForm" /> values. </param> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.IsBrowserDisplay"> <summary> When overridden in a derived class, gets a value indicating whether the current encoding can be used by browser clients for displaying content. </summary> <returns>true if the current <see cref="T:System.Text.Encoding" /> can be used by browser clients for displaying content; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.IsBrowserSave"> <summary> When overridden in a derived class, gets a value indicating whether the current encoding can be used by browser clients for saving content. </summary> <returns>true if the current <see cref="T:System.Text.Encoding" /> can be used by browser clients for saving content; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.IsMailNewsDisplay"> <summary> When overridden in a derived class, gets a value indicating whether the current encoding can be used by mail and news clients for displaying content. </summary> <returns>true if the current <see cref="T:System.Text.Encoding" /> can be used by mail and news clients for displaying content; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.IsMailNewsSave"> <summary> When overridden in a derived class, gets a value indicating whether the current encoding can be used by mail and news clients for saving content. </summary> <returns>true if the current <see cref="T:System.Text.Encoding" /> can be used by mail and news clients for saving content; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.IsReadOnly"> <summary> When overridden in a derived class, gets a value indicating whether the current encoding is read-only. </summary> <returns>true if the current <see cref="T:System.Text.Encoding" /> is read-only; otherwise, false. The default is true. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.IsSingleByte"> <summary> When overridden in a derived class, gets a value indicating whether the current encoding uses single-byte code points. </summary> <returns>true if the current <see cref="T:System.Text.Encoding" /> uses single-byte code points; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.Unicode"> <summary> Gets an encoding for the UTF-16 format using the little endian byte order. </summary> <returns> A <see cref="T:System.Text.Encoding" /> for the UTF-16 format using the little endian byte order. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Encoding.UTF32"> <summary> Gets an encoding for the UTF-32 format using the little endian byte order. </summary> <returns> A <see cref="T:System.Text.Encoding" /> object for the UTF-32 format using the little endian byte order. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Encoding.UTF7"> <summary> Gets an encoding for the UTF-7 format. </summary> <returns> A <see cref="T:System.Text.Encoding" /> for the UTF-7 format. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Encoding.UTF8"> <summary> Gets an encoding for the UTF-8 format. </summary> <returns> A <see cref="T:System.Text.Encoding" /> for the UTF-8 format. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.Encoding.WebName"> <summary> When overridden in a derived class, gets the name registered with the Internet Assigned Numbers Authority (IANA) for the current encoding. </summary> <returns> The IANA name for the current <see cref="T:System.Text.Encoding" />. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.Encoding.WindowsCodePage"> <summary> When overridden in a derived class, gets the Windows operating system code page that most closely corresponds to the current encoding. </summary> <returns> The Windows operating system code page that most closely corresponds to the current <see cref="T:System.Text.Encoding" />. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Text.EncodingInfo"> <summary> Provides basic information about an encoding. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.EncodingInfo.CodePage"> <summary> Gets the code page identifier of the encoding. </summary> <returns> The code page identifier of the encoding. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.EncodingInfo.DisplayName"> <summary> Gets the human-readable description of the encoding. </summary> <returns> The human-readable description of the encoding. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.EncodingInfo.Equals(System.Object)"> <summary> Gets a value indicating whether the specified object is equal to the current <see cref="T:System.Text.EncodingInfo" /> object. </summary> <returns>true if <paramref name="value" /> is a <see cref="T:System.Text.EncodingInfo" /> object and is equal to the current <see cref="T:System.Text.EncodingInfo" /> object; otherwise, false. </returns> <param name="value"> An object to compare to the current <see cref="T:System.Text.EncodingInfo" /> object. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncodingInfo.GetEncoding"> <summary> Returns a <see cref="T:System.Text.Encoding" /> object that corresponds to the current <see cref="T:System.Text.EncodingInfo" /> object. </summary> <returns> A <see cref="T:System.Text.Encoding" /> object that corresponds to the current <see cref="T:System.Text.EncodingInfo" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.EncodingInfo.GetHashCode"> <summary> Returns the hash code for the current <see cref="T:System.Text.EncodingInfo" /> object. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.EncodingInfo.Name"> <summary> Gets the name registered with the Internet Assigned Numbers Authority (IANA) for the encoding. </summary> <returns> The IANA name for the encoding. For more information about the IANA, see www.iana.org. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Text.NormalizationForm"> <summary> Defines the type of normalization to perform. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.Text.NormalizationForm.FormC"> <summary> Indicates that a Unicode string is normalized using full canonical decomposition, followed by the replacement of sequences with their primary composites, if possible. </summary> </member> <member name="F:System.Text.NormalizationForm.FormD"> <summary> Indicates that a Unicode string is normalized using full canonical decomposition. </summary> </member> <member name="F:System.Text.NormalizationForm.FormKC"> <summary> Indicates that a Unicode string is normalized using full compatibility decomposition, followed by the replacement of sequences with their primary composites, if possible. </summary> </member> <member name="F:System.Text.NormalizationForm.FormKD"> <summary> Indicates that a Unicode string is normalized using full compatibility decomposition. </summary> </member> <member name="T:System.Text.StringBuilder"> <summary> Represents a mutable string of characters. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.StringBuilder" /> class. </summary> </member> <member name="M:System.Text.StringBuilder.#ctor(System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Text.StringBuilder" /> class using the specified capacity. </summary> <param name="capacity"> The suggested starting size of this instance. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. </exception> </member> <member name="M:System.Text.StringBuilder.#ctor(System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Text.StringBuilder" /> class that starts with a specified capacity and can grow to a specified maximum. </summary> <param name="capacity"> The suggested starting size of the <see cref="T:System.Text.StringBuilder" />. </param> <param name="maxCapacity"> The maximum number of characters the current string can contain. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="maxCapacity" /> is less than one, <paramref name="capacity" /> is less than zero, or <paramref name="capacity" /> is greater than <paramref name="maxCapacity" />. </exception> </member> <member name="M:System.Text.StringBuilder.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Text.StringBuilder" /> class using the specified string. </summary> <param name="value"> The string used to initialize the value of the instance. If <paramref name="value" /> is null, the new <see cref="T:System.Text.StringBuilder" /> will contain the empty string (that is, it contains <see cref="F:System.String.Empty" />). </param> </member> <member name="M:System.Text.StringBuilder.#ctor(System.String,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Text.StringBuilder" /> class using the specified string and capacity. </summary> <param name="value"> The string used to initialize the value of the instance. If <paramref name="value" /> is null, the new <see cref="T:System.Text.StringBuilder" /> will contain the empty string (that is, it contains <see cref="F:System.String.Empty" />). </param> <param name="capacity"> The suggested starting size of the <see cref="T:System.Text.StringBuilder" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. </exception> </member> <member name="M:System.Text.StringBuilder.#ctor(System.String,System.Int32,System.Int32,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Text.StringBuilder" /> class from the specified substring and capacity. </summary> <param name="value"> The string that contains the substring used to initialize the value of this instance. If <paramref name="value" /> is null, the new <see cref="T:System.Text.StringBuilder" /> will contain the empty string (that is, it contains <see cref="F:System.String.Empty" />). </param> <param name="startIndex"> The position within <paramref name="value" /> where the substring begins. </param> <param name="length"> The number of characters in the substring. </param> <param name="capacity"> The suggested starting size of the <see cref="T:System.Text.StringBuilder" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. -or- <paramref name="startIndex" /> plus <paramref name="length" /> is not a position within <paramref name="value" />. </exception> </member> <member name="M:System.Text.StringBuilder.Append(System.Boolean)"> <summary> Appends the string representation of a specified Boolean value to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The Boolean value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Byte)"> <summary> Appends the string representation of a specified 8-bit unsigned integer to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Char)"> <summary> Appends the string representation of a specified Unicode character to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The Unicode character to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Char,System.Int32)"> <summary> Appends a specified number of copies of the string representation of a Unicode character to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The character to append. </param> <param name="repeatCount"> The number of times to append <paramref name="value" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="repeatCount" /> is less than zero. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <exception cref="T:System.OutOfMemoryException"> Out of memory. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Char[])"> <summary> Appends the string representation of the Unicode characters in a specified array to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The array of characters to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Char[],System.Int32,System.Int32)"> <summary> Appends the string representation of a specified subarray of Unicode characters to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> A character array. </param> <param name="startIndex"> The starting position in <paramref name="value" />. </param> <param name="charCount"> The number of characters to append. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null, and <paramref name="startIndex" /> and <paramref name="charCount" /> are not zero. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> is less than zero. -or- <paramref name="startIndex" /> is less than zero. -or- <paramref name="startIndex" /> + <paramref name="charCount" /> is greater than the length of <paramref name="value" />. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Decimal)"> <summary> Appends the string representation of a specified decimal number to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Double)"> <summary> Appends the string representation of a specified double-precision floating-point number to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Int16)"> <summary> Appends the string representation of a specified 16-bit signed integer to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Int32)"> <summary> Appends the string representation of a specified 32-bit signed integer to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Int64)"> <summary> Appends the string representation of a specified 64-bit signed integer to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Object)"> <summary> Appends the string representation of a specified object to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The object to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.SByte)"> <summary> Appends the string representation of a specified 8-bit signed integer to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.Single)"> <summary> Appends the string representation of a specified single-precision floating-point number to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.String)"> <summary> Appends a copy of the specified string to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The <see cref="T:System.String" /> to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)"> <summary> Appends a copy of a specified substring to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The <see cref="T:System.String" /> that contains the substring to append. </param> <param name="startIndex"> The starting position of the substring within <paramref name="value" />. </param> <param name="count"> The number of characters in <paramref name="value" /> to append. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null, and <paramref name="startIndex" /> and <paramref name="count" /> are not zero. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> less than zero. -or- <paramref name="startIndex" /> less than zero. -or- <paramref name="startIndex" /> + <paramref name="count" /> is greater than the length of <paramref name="value" />. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.UInt16)"> <summary> Appends the string representation of a specified 16-bit unsigned integer to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.UInt32)"> <summary> Appends the string representation of a specified 32-bit unsigned integer to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Append(System.UInt64)"> <summary> Appends the string representation of a specified 64-bit unsigned integer to the end of this instance. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The value to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])"> <summary> Appends a formatted string, which contains zero or more format specifications, to this instance. Each format specification is replaced by the string representation of a corresponding object argument. </summary> <returns> A reference to this instance after the append operation has completed. After the append operation, this instance contains any data that existed before the operation, suffixed by a copy of <paramref name="format" /> where any format specification is replaced by the string representation of the corresponding object argument. </returns> <param name="provider"> An <see cref="T:System.IFormatProvider" /> that supplies culture-specific formatting information. </param> <param name="format"> A composite format string. </param> <param name="args"> An array of objects to format. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.StringBuilder.AppendFormat(System.String,System.Object)"> <summary> Appends a formatted string, which contains zero or more format specifications, to this instance. Each format specification is replaced by the string representation of a corresponding object argument. </summary> <returns> A reference to this instance with <paramref name="format" /> appended. Any format specification in <paramref name="format" /> is replaced by the string representation of the corresponding object argument. </returns> <param name="format"> A composite format string. </param> <param name="arg0"> An object to format. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.StringBuilder.AppendFormat(System.String,System.Object,System.Object)"> <summary> Appends a formatted string, which contains zero or more format specifications, to this instance. Each format specification is replaced by the string representation of a corresponding object argument. </summary> <returns> A reference to this instance with <paramref name="format" /> appended. Any format specification in <paramref name="format" /> is replaced by the string representation of the corresponding object argument. </returns> <param name="format"> A composite format string. </param> <param name="arg0"> The first object to format. </param> <param name="arg1"> The second object to format. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.StringBuilder.AppendFormat(System.String,System.Object,System.Object,System.Object)"> <summary> Appends a formatted string, which contains zero or more format specifications, to this instance. Each format specification is replaced by the string representation of a corresponding object argument. </summary> <returns> A reference to this instance with <paramref name="format" /> appended. Any format specification in <paramref name="format" /> is replaced by the string representation of the corresponding object argument. </returns> <param name="format"> A composite format string. </param> <param name="arg0"> The first object to format. </param> <param name="arg1"> The second object to format. </param> <param name="arg2"> The third object to format. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.StringBuilder.AppendFormat(System.String,System.Object[])"> <summary> Appends a formatted string, which contains zero or more format specifications, to this instance. Each format specification is replaced by the string representation of a corresponding object argument. </summary> <returns> A reference to this instance with <paramref name="format" /> appended. Any format specification in <paramref name="format" /> is replaced by the string representation of the corresponding object argument. </returns> <param name="format"> A composite format string. </param> <param name="args"> An array of objects to format. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="format" /> or <paramref name="args" /> is null. </exception> <exception cref="T:System.FormatException"> <paramref name="format" /> is invalid. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.StringBuilder.AppendLine"> <summary> Appends the default line terminator to the end of the current <see cref="T:System.Text.StringBuilder" /> object. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.AppendLine(System.String)"> <summary> Appends a copy of the specified string and the default line terminator to the end of the current <see cref="T:System.Text.StringBuilder" /> object. </summary> <returns> A reference to this instance after the append operation has completed. </returns> <param name="value"> The <see cref="T:System.String" /> to append. </param> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.StringBuilder.Capacity"> <summary> Gets or sets the maximum number of characters that can be contained in the memory allocated by the current instance. </summary> <returns> The maximum number of characters that can be contained in the memory allocated by the current instance. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value specified for a set operation is less than the current length of this instance. -or- The value specified for a set operation is greater than the maximum capacity. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Text.StringBuilder.Chars(System.Int32)"> <summary> Gets or sets the character at the specified character position in this instance. </summary> <returns> The Unicode character at position <paramref name="index" />. </returns> <param name="index"> The position of the character. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is outside the bounds of this instance while setting a character. </exception> <exception cref="T:System.IndexOutOfRangeException"> <paramref name="index" /> is outside the bounds of this instance while getting a character. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.StringBuilder.CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)"> <summary> Copies the characters from a specified segment of this instance to a specified segment of a destination <see cref="T:System.Char" /> array. </summary> <param name="sourceIndex"> The starting position in this instance where characters will be copied from. The index is zero-based. </param> <param name="destination"> The <see cref="T:System.Char" /> array where characters will be copied to. </param> <param name="destinationIndex"> The starting position in <paramref name="destination" /> where characters will be copied to. The index is zero-based. </param> <param name="count"> The number of characters to be copied. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="destination" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="sourceIndex" />, <paramref name="destinationIndex" />, or <paramref name="count" />, is less than zero. -or- <paramref name="sourceIndex" /> is greater than the length of this instance. </exception> <exception cref="T:System.ArgumentException"> <paramref name="sourceIndex" /> + <paramref name="count" /> is greater than the length of this instance. -or- <paramref name="destinationIndex" /> + <paramref name="count" /> is greater than the length of <paramref name="destination" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.EnsureCapacity(System.Int32)"> <summary> Ensures that the capacity of this instance of <see cref="T:System.Text.StringBuilder" /> is at least the specified value. </summary> <returns> The new capacity of this instance. </returns> <param name="capacity"> The minimum capacity to ensure. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="capacity" /> is less than zero. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.StringBuilder.Equals(System.Text.StringBuilder)"> <summary> Returns a value indicating whether this instance is equal to a specified object. </summary> <returns>true if this instance and <paramref name="sb" /> have equal string, <see cref="P:System.Text.StringBuilder.Capacity" />, and <see cref="P:System.Text.StringBuilder.MaxCapacity" /> values; otherwise, false. </returns> <param name="sb"> An object to compare with this instance or null. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Boolean)"> <summary> Inserts the string representation of a Boolean value into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Byte)"> <summary> Inserts the string representation of a specified 8-bit unsigned integer into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Char)"> <summary> Inserts the string representation of a specified Unicode character into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Char[])"> <summary> Inserts the string representation of a specified array of Unicode characters into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The character array to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Char[],System.Int32,System.Int32)"> <summary> Inserts the string representation of a specified subarray of Unicode characters into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> A character array. </param> <param name="startIndex"> The starting index within <paramref name="value" />. </param> <param name="charCount"> The number of characters to insert. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="value" /> is null, and <paramref name="startIndex" /> and <paramref name="charCount" /> are not zero. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" />, <paramref name="startIndex" />, or <paramref name="charCount" /> is less than zero. -or- <paramref name="index" /> is greater than the length of this instance. -or- <paramref name="startIndex" /> plus <paramref name="charCount" /> is not a position within <paramref name="value" />. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Decimal)"> <summary> Inserts the string representation of a decimal number into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Double)"> <summary> Inserts the string representation of a double-precision floating-point number into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Int16)"> <summary> Inserts the string representation of a specified 16-bit signed integer into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Int32)"> <summary> Inserts the string representation of a specified 32-bit signed integer into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Int64)"> <summary> Inserts the string representation of a 64-bit signed integer into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Object)"> <summary> Inserts the string representation of an object into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The object to insert or null. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.SByte)"> <summary> Inserts the string representation of a specified 8-bit signed integer into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.Single)"> <summary> Inserts the string representation of a single-precision floating point number into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.String)"> <summary> Inserts a string into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The string to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the current length of this instance. </exception> <exception cref="T:System.OutOfMemoryException"> The current length of this <see cref="T:System.Text.StringBuilder" /> object plus the length of <paramref name="value" /> exceeds <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.String,System.Int32)"> <summary> Inserts one or more copies of a specified string into this instance at the specified character position. </summary> <returns> A reference to this instance after insertion has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The string to insert. </param> <param name="count"> The number of times to insert <paramref name="value" />. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the current length of this instance. -or- <paramref name="count" /> is less than zero. </exception> <exception cref="T:System.OutOfMemoryException"> The current length of this <see cref="T:System.Text.StringBuilder" /> object plus the length of <paramref name="value" /> times <paramref name="count" /> exceeds <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.UInt16)"> <summary> Inserts the string representation of a 16-bit unsigned integer into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.UInt32)"> <summary> Inserts the string representation of a 32-bit unsigned integer into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Insert(System.Int32,System.UInt64)"> <summary> Inserts the string representation of a 64-bit unsigned integer into this instance at the specified character position. </summary> <returns> A reference to this instance after the insert operation has completed. </returns> <param name="index"> The position in this instance where insertion begins. </param> <param name="value"> The value to insert. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> is less than zero or greater than the length of this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.StringBuilder.Length"> <summary> Gets or sets the length of the current <see cref="T:System.Text.StringBuilder" /> object. </summary> <returns> The length of this instance. </returns> <exception cref="T:System.ArgumentOutOfRangeException"> The value specified for a set operation is less than zero or greater than <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Text.StringBuilder.MaxCapacity"> <summary> Gets the maximum capacity of this instance. </summary> <returns> The maximum number of characters this instance can hold. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.StringBuilder.Remove(System.Int32,System.Int32)"> <summary> Removes the specified range of characters from this instance. </summary> <returns> A reference to this instance after the excise operation has completed. </returns> <param name="startIndex"> The zero-based position in this instance where removal begins. </param> <param name="length"> The number of characters to remove. </param> <exception cref="T:System.ArgumentOutOfRangeException"> If <paramref name="startIndex" /> or <paramref name="length" /> is less than zero, or <paramref name="startIndex" /> + <paramref name="length" /> is greater than the length of this instance. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Replace(System.Char,System.Char)"> <summary> Replaces all occurrences of a specified character in this instance with another specified character. </summary> <returns> A reference to this instance with <paramref name="oldChar" /> replaced by <paramref name="newChar" />. </returns> <param name="oldChar"> The character to replace. </param> <param name="newChar"> The character that replaces <paramref name="oldChar" />. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Replace(System.Char,System.Char,System.Int32,System.Int32)"> <summary> Replaces, within a substring of this instance, all occurrences of a specified character with another specified character. </summary> <returns> A reference to this instance with <paramref name="oldChar" /> replaced by <paramref name="newChar" /> in the range from <paramref name="startIndex" /> to <paramref name="startIndex" /> + <paramref name="count" /> -1. </returns> <param name="oldChar"> The character to replace. </param> <param name="newChar"> The character that replaces <paramref name="oldChar" />. </param> <param name="startIndex"> The position in this instance where the substring begins. </param> <param name="count"> The length of the substring. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> + <paramref name="count" /> is greater than the length of the value of this instance. -or- <paramref name="startIndex" /> or <paramref name="count" /> is less than zero. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Replace(System.String,System.String)"> <summary> Replaces all occurrences of a specified string in this instance with another specified string. </summary> <returns> A reference to this instance with all instances of <paramref name="oldValue" /> replaced by <paramref name="newValue" />. </returns> <param name="oldValue"> The string to replace. </param> <param name="newValue"> The string that replaces <paramref name="oldValue" />, or null. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="oldValue" /> is null. </exception> <exception cref="T:System.ArgumentException"> The length of <paramref name="oldvalue" /> is zero. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.Replace(System.String,System.String,System.Int32,System.Int32)"> <summary> Replaces, within a substring of this instance, all occurrences of a specified string with another specified string. </summary> <returns> A reference to this instance with all instances of <paramref name="oldValue" /> replaced by <paramref name="newValue" /> in the range from <paramref name="startIndex" /> to <paramref name="startIndex" /> + <paramref name="count" /> - 1. </returns> <param name="oldValue"> The string to replace. </param> <param name="newValue"> The string that replaces <paramref name="oldValue" />, or null. </param> <param name="startIndex"> The position in this instance where the substring begins. </param> <param name="count"> The length of the substring. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="oldValue" /> is null. </exception> <exception cref="T:System.ArgumentException"> The length of <paramref name="oldvalue" /> is zero. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> or <paramref name="count" /> is less than zero. -or- <paramref name="startIndex" /> plus <paramref name="count" /> indicates a character position not within this instance. -or- Enlarging the value of this instance would exceed <see cref="P:System.Text.StringBuilder.MaxCapacity" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data necessary to deserialize the current <see cref="T:System.Text.StringBuilder" /> object. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to populate with serialization information. </param> <param name="context"> The place to store and retrieve serialized data. Reserved for future use. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> </member> <member name="M:System.Text.StringBuilder.ToString"> <summary> Converts the value of this instance to a <see cref="T:System.String" />. </summary> <returns> A string whose value is the same as this instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.StringBuilder.ToString(System.Int32,System.Int32)"> <summary> Converts the value of a substring of this instance to a <see cref="T:System.String" />. </summary> <returns> A string whose value is the same as the specified substring of this instance. </returns> <param name="startIndex"> The starting position of the substring in this instance. </param> <param name="length"> The length of the substring. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="startIndex" /> or <paramref name="length" /> is less than zero. -or- The sum of <paramref name="startIndex" /> and <paramref name="length" /> is greater than the length of the current instance. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.UnicodeEncoding"> <summary> Represents a UTF-16 encoding of Unicode characters. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.UnicodeEncoding" /> class. </summary> </member> <member name="M:System.Text.UnicodeEncoding.#ctor(System.Boolean,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Text.UnicodeEncoding" /> class. Parameters specify whether to use the big endian byte order and whether to provide a Unicode byte order mark. </summary> <param name="bigEndian">true to use the big endian byte order (most significant byte first), or false to use the little endian byte order (least significant byte first). </param> <param name="byteOrderMark">true to specify that a Unicode byte order mark is provided; otherwise, false. </param> </member> <member name="M:System.Text.UnicodeEncoding.#ctor(System.Boolean,System.Boolean,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Text.UnicodeEncoding" /> class. Parameters specify whether to use the big endian byte order, whether to provide a Unicode byte order mark, and whether to throw an exception when an invalid encoding is detected. </summary> <param name="bigEndian">true to use the big endian byte order (most significant byte first); false to use the little endian byte order (least significant byte first). </param> <param name="byteOrderMark">true to specify that a Unicode byte order mark is provided; otherwise, false. </param> <param name="throwOnInvalidBytes">true to specify that an exception should be thrown when an invalid encoding is detected; otherwise, false. </param> </member> <member name="F:System.Text.UnicodeEncoding.CharSize"> <summary> Represents the Unicode version 2.0 character size in bytes. This field is a constant. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Text.UnicodeEncoding" /> object. </summary> <returns>true if <paramref name="value" /> is an instance of <see cref="T:System.Text.UnicodeEncoding" /> and is equal to the current object; otherwise, false. </returns> <param name="value"> The <see cref="T:System.Object" /> to compare with the current object. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetByteCount(System.Char*,System.Int32)"> <summary> Calculates the number of bytes produced by encoding a set of characters starting at the specified character pointer. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing in Visual Basic .NET). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled and <paramref name="chars" /> contains an invalid sequence of characters. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetByteCount(System.Char[],System.Int32,System.Int32)"> <summary> Calculates the number of bytes produced by encoding a set of characters from the specified character array. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="index"> The index of the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="chars" />. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetByteCount(System.String)"> <summary> Calculates the number of bytes produced by encoding the characters in the specified <see cref="T:System.String" />. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="s"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="s" /> contains an invalid sequence of characters. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32)"> <summary> Encodes a set of characters starting at the specified character pointer into a sequence of bytes that are stored starting at the specified byte pointer. </summary> <returns> The actual number of bytes written at the location indicated by the <paramref name="bytes" /> parameter. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> A pointer to the location at which to start writing the resulting sequence of bytes. </param> <param name="byteCount"> The maximum number of bytes to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing). -or- <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> or <paramref name="byteCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. -or- <paramref name="byteCount" /> is less than the resulting number of bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Encodes a set of characters from the specified character array into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing). -or- <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. -or- <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Encodes a set of characters from the specified <see cref="T:System.String" /> into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="s"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null (Nothing). -or- <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="s" /> contains an invalid sequence of characters. -or- <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetCharCount(System.Byte*,System.Int32)"> <summary> Calculates the number of characters produced by decoding a sequence of bytes starting at the specified byte pointer. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetCharCount(System.Byte[],System.Int32,System.Int32)"> <summary> Calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32)"> <summary> Decodes a sequence of bytes starting at the specified byte pointer into a set of characters that are stored starting at the specified character pointer. </summary> <returns> The actual number of characters written at the location indicated by the <paramref name="chars" /> parameter. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> A pointer to the location at which to start writing the resulting set of characters. </param> <param name="charCount"> The maximum number of characters to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). -or- <paramref name="chars" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> or <paramref name="charCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. -or- <paramref name="charCount" /> is less than the resulting number of characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)"> <summary> Decodes a sequence of bytes from the specified byte array into the specified character array. </summary> <returns> The actual number of characters written into <paramref name="chars" />. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="byteIndex"> The index of the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> The character array to contain the resulting set of characters. </param> <param name="charIndex"> The index at which to start writing the resulting set of characters. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). -or- <paramref name="chars" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteIndex" /> or <paramref name="byteCount" /> or <paramref name="charIndex" /> is less than zero. -or- <paramref name="byteindex" /> and <paramref name="byteCount" /> do not denote a valid range in <paramref name="bytes" />. -or- <paramref name="charIndex" /> is not a valid index in <paramref name="chars" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. -or- <paramref name="chars" /> does not have enough capacity from <paramref name="charIndex" /> to the end of the array to accommodate the resulting characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetDecoder"> <summary> Obtains a decoder that converts a UTF-16 encoded sequence of bytes into a sequence of Unicode characters. </summary> <returns> A <see cref="T:System.Text.Decoder" /> that converts a UTF-16 encoded sequence of bytes into a sequence of Unicode characters. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetEncoder"> <summary> Obtains an encoder that converts a sequence of Unicode characters into a UTF-16 encoded sequence of bytes. </summary> <returns> A <see cref="T:System.Text.Encoder" /> object that converts a sequence of Unicode characters into a UTF-16 encoded sequence of bytes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetHashCode"> <summary> Returns the hash code for the current instance. </summary> <returns> The hash code for the current <see cref="T:System.Text.UnicodeEncoding" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetMaxByteCount(System.Int32)"> <summary> Calculates the maximum number of bytes produced by encoding the specified number of characters. </summary> <returns> The maximum number of bytes produced by encoding the specified number of characters. </returns> <param name="charCount"> The number of characters to encode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetMaxCharCount(System.Int32)"> <summary> Calculates the maximum number of characters produced by decoding the specified number of bytes. </summary> <returns> The maximum number of characters produced by decoding the specified number of bytes. </returns> <param name="byteCount"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetPreamble"> <summary> Returns a Unicode byte order mark encoded in UTF-16 format, if the constructor for this instance requests a byte order mark. </summary> <returns> A byte array containing the Unicode byte order mark, if the constructor for this instance requests a byte order mark. Otherwise, this method returns a byte array of length zero. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UnicodeEncoding.GetString(System.Byte[],System.Int32,System.Int32)"> <summary> Decodes a range of bytes from a byte array into a string. </summary> <returns> A <see cref="T:System.String" /> object containing the results of decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.UTF32Encoding"> <summary> Represents a UTF-32 encoding of Unicode characters. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.UTF32Encoding" /> class. </summary> </member> <member name="M:System.Text.UTF32Encoding.#ctor(System.Boolean,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Text.UTF32Encoding" /> class. Parameters specify whether to use the big endian byte order and whether to provide a Unicode byte order mark. </summary> <param name="bigEndian">true to use the big endian byte order (most significant byte first), or false to use the little endian byte order (least significant byte first). </param> <param name="byteOrderMark">true to specify that a Unicode byte order mark is provided; otherwise, false. </param> </member> <member name="M:System.Text.UTF32Encoding.#ctor(System.Boolean,System.Boolean,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Text.UTF32Encoding" /> class. Parameters specify whether to use the big endian byte order, whether to provide a Unicode byte order mark, and whether to throw an exception when an invalid encoding is detected. </summary> <param name="bigEndian">true to use the big endian byte order (most significant byte first), or false to use the little endian byte order (least significant byte first). </param> <param name="byteOrderMark">true to specify that a Unicode byte order mark is provided; otherwise, false. </param> <param name="throwOnInvalidCharacters">true to specify that an exception should be thrown when an invalid encoding is detected; otherwise, false. </param> </member> <member name="M:System.Text.UTF32Encoding.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Text.UTF32Encoding" /> object. </summary> <returns>true if <paramref name="value" /> is an instance of <see cref="T:System.Text.UTF32Encoding" /> and is equal to the current object; otherwise, false. </returns> <param name="value"> The <see cref="T:System.Object" /> to compare with the current object. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetByteCount(System.Char*,System.Int32)"> <summary> Calculates the number of bytes produced by encoding a set of characters starting at the specified character pointer. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetByteCount(System.Char[],System.Int32,System.Int32)"> <summary> Calculates the number of bytes produced by encoding a set of characters from the specified character array. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="index"> The index of the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="chars" />. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetByteCount(System.String)"> <summary> Calculates the number of bytes produced by encoding the characters in the specified <see cref="T:System.String" />. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="s"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="s" /> contains an invalid sequence of characters. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32)"> <summary> Encodes a set of characters starting at the specified character pointer into a sequence of bytes that are stored starting at the specified byte pointer. </summary> <returns> The actual number of bytes written at the location indicated by the <paramref name="bytes" /> parameter. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> A pointer to the location at which to start writing the resulting sequence of bytes. </param> <param name="byteCount"> The maximum number of bytes to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> or <paramref name="byteCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. -or- <paramref name="byteCount" /> is less than the resulting number of bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Encodes a set of characters from the specified character array into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. -or- <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Encodes a set of characters from the specified <see cref="T:System.String" /> into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="s"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="s" /> contains an invalid sequence of characters. -or- <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetCharCount(System.Byte*,System.Int32)"> <summary> Calculates the number of characters produced by decoding a sequence of bytes starting at the specified byte pointer. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetCharCount(System.Byte[],System.Int32,System.Int32)"> <summary> Calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32)"> <summary> Decodes a sequence of bytes starting at the specified byte pointer into a set of characters that are stored starting at the specified character pointer. </summary> <returns> The actual number of characters written at the location indicated by <paramref name="chars" />. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> A pointer to the location at which to start writing the resulting set of characters. </param> <param name="charCount"> The maximum number of characters to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. -or- <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> or <paramref name="charCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. -or- <paramref name="charCount" /> is less than the resulting number of characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)"> <summary> Decodes a sequence of bytes from the specified byte array into the specified character array. </summary> <returns> The actual number of characters written into <paramref name="chars" />. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="byteIndex"> The index of the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> The character array to contain the resulting set of characters. </param> <param name="charIndex"> The index at which to start writing the resulting set of characters. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. -or- <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteIndex" /> or <paramref name="byteCount" /> or <paramref name="charIndex" /> is less than zero. -or- <paramref name="byteindex" /> and <paramref name="byteCount" /> do not denote a valid range in <paramref name="bytes" />. -or- <paramref name="charIndex" /> is not a valid index in <paramref name="chars" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. -or- <paramref name="chars" /> does not have enough capacity from <paramref name="charIndex" /> to the end of the array to accommodate the resulting characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetDecoder"> <summary> Obtains a decoder that converts a UTF-32 encoded sequence of bytes into a sequence of Unicode characters. </summary> <returns> A <see cref="T:System.Text.Decoder" /> that converts a UTF-32 encoded sequence of bytes into a sequence of Unicode characters. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetEncoder"> <summary> Obtains an encoder that converts a sequence of Unicode characters into a UTF-32 encoded sequence of bytes. </summary> <returns> A <see cref="T:System.Text.Encoder" /> that converts a sequence of Unicode characters into a UTF-32 encoded sequence of bytes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetHashCode"> <summary> Returns the hash code for the current instance. </summary> <returns> The hash code for the current <see cref="T:System.Text.UTF32Encoding" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetMaxByteCount(System.Int32)"> <summary> Calculates the maximum number of bytes produced by encoding the specified number of characters. </summary> <returns> The maximum number of bytes produced by encoding the specified number of characters. </returns> <param name="charCount"> The number of characters to encode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetMaxCharCount(System.Int32)"> <summary> Calculates the maximum number of characters produced by decoding the specified number of bytes. </summary> <returns> The maximum number of characters produced by decoding the specified number of bytes. </returns> <param name="byteCount"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetPreamble"> <summary> Returns a Unicode byte order mark encoded in UTF-32 format, if the constructor for this instance requests a byte order mark. </summary> <returns> A byte array containing the Unicode byte order mark, if the constructor for this instance requests a byte order mark. Otherwise, this method returns a byte array of length zero. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF32Encoding.GetString(System.Byte[],System.Int32,System.Int32)"> <summary> Decodes a range of bytes from a byte array into a string. </summary> <returns> A <see cref="T:System.String" /> containing the results of decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.UTF7Encoding"> <summary> Represents a UTF-7 encoding of Unicode characters. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.UTF7Encoding" /> class. </summary> </member> <member name="M:System.Text.UTF7Encoding.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Text.UTF7Encoding" /> class. A parameter specifies whether to allow optional characters. </summary> <param name="allowOptionals">true to specify that optional characters are allowed; otherwise, false. </param> </member> <member name="M:System.Text.UTF7Encoding.Equals(System.Object)"> <summary> Gets a value indicating whether the specified object is equal to the current <see cref="T:System.Text.UTF7Encoding" /> object. </summary> <returns>true if <paramref name="value" /> is a <see cref="T:System.Text.UTF7Encoding" /> object and is equal to the current <see cref="T:System.Text.UTF7Encoding" /> object; otherwise, false. </returns> <param name="value"> An object to compare to the current <see cref="T:System.Text.UTF7Encoding" /> object. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetByteCount(System.Char*,System.Int32)"> <summary> Calculates the number of bytes produced by encoding a set of characters starting at the specified character pointer. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing in Visual Basic .NET). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an int. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetByteCount(System.Char[],System.Int32,System.Int32)"> <summary> Calculates the number of bytes produced by encoding a set of characters from the specified character array. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="index"> The index of the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="chars" />. -or- The resulting number of bytes is greater than the maximum number that can be returned as an int. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetByteCount(System.String)"> <summary> Calculates the number of bytes produced by encoding the characters in the specified <see cref="T:System.String" /> object. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="s"> The <see cref="T:System.String" /> object containing the set of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting number of bytes is greater than the maximum number that can be returned as an int. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32)"> <summary> Encodes a set of characters starting at the specified character pointer into a sequence of bytes that are stored starting at the specified byte pointer. </summary> <returns> The actual number of bytes written at the location indicated by <paramref name="bytes" />. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> A pointer to the location at which to start writing the resulting sequence of bytes. </param> <param name="byteCount"> The maximum number of bytes to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing). -or- <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> or <paramref name="byteCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="byteCount" /> is less than the resulting number of bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Encodes a set of characters from the specified character array into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null (Nothing). -or- <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Encodes a set of characters from the specified <see cref="T:System.String" /> into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="s"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null (Nothing). -or- <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetCharCount(System.Byte*,System.Int32)"> <summary> Calculates the number of characters produced by decoding a sequence of bytes starting at the specified byte pointer. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. -or- The resulting number of characters is greater than the maximum number that can be returned as an int. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetCharCount(System.Byte[],System.Int32,System.Int32)"> <summary> Calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. -or- The resulting number of characters is greater than the maximum number that can be returned as an int. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32)"> <summary> Decodes a sequence of bytes starting at the specified byte pointer into a set of characters that are stored starting at the specified character pointer. </summary> <returns> The actual number of characters written at the location indicated by <paramref name="chars" />. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> A pointer to the location at which to start writing the resulting set of characters. </param> <param name="charCount"> The maximum number of characters to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). -or- <paramref name="chars" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> or <paramref name="charCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> <paramref name="charCount" /> is less than the resulting number of characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)"> <summary> Decodes a sequence of bytes from the specified byte array into the specified character array. </summary> <returns> The actual number of characters written into <paramref name="chars" />. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="byteIndex"> The index of the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> The character array to contain the resulting set of characters. </param> <param name="charIndex"> The index at which to start writing the resulting set of characters. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). -or- <paramref name="chars" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteIndex" /> or <paramref name="byteCount" /> or <paramref name="charIndex" /> is less than zero. -or- <paramref name="byteindex" /> and <paramref name="byteCount" /> do not denote a valid range in <paramref name="bytes" />. -or- <paramref name="charIndex" /> is not a valid index in <paramref name="chars" />. </exception> <exception cref="T:System.ArgumentException"> <paramref name="chars" /> does not have enough capacity from <paramref name="charIndex" /> to the end of the array to accommodate the resulting characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetDecoder"> <summary> Obtains a decoder that converts a UTF-7 encoded sequence of bytes into a sequence of Unicode characters. </summary> <returns> A <see cref="T:System.Text.Decoder" /> that converts a UTF-7 encoded sequence of bytes into a sequence of Unicode characters. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetEncoder"> <summary> Obtains an encoder that converts a sequence of Unicode characters into a UTF-7 encoded sequence of bytes. </summary> <returns> A <see cref="T:System.Text.Encoder" /> that converts a sequence of Unicode characters into a UTF-7 encoded sequence of bytes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetHashCode"> <summary> Returns the hash code for the current <see cref="T:System.Text.UTF7Encoding" /> object. </summary> <returns> A 32-bit signed integer hash code. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetMaxByteCount(System.Int32)"> <summary> Calculates the maximum number of bytes produced by encoding the specified number of characters. </summary> <returns> The maximum number of bytes produced by encoding the specified number of characters. </returns> <param name="charCount"> The number of characters to encode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an int. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetMaxCharCount(System.Int32)"> <summary> Calculates the maximum number of characters produced by decoding the specified number of bytes. </summary> <returns> The maximum number of characters produced by decoding the specified number of bytes. </returns> <param name="byteCount"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> is less than zero. -or- The resulting number of characters is greater than the maximum number that can be returned as an int. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF7Encoding.GetString(System.Byte[],System.Int32,System.Int32)"> <summary> Decodes a range of bytes from a byte array into a string. </summary> <returns> A <see cref="T:System.String" /> containing the results of decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null (Nothing). </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for fuller explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.Text.UTF8Encoding"> <summary> Represents a UTF-8 encoding of Unicode characters. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Text.UTF8Encoding" /> class. </summary> </member> <member name="M:System.Text.UTF8Encoding.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Text.UTF8Encoding" /> class. A parameter specifies whether to provide a Unicode byte order mark. </summary> <param name="encoderShouldEmitUTF8Identifier">true to specify that a Unicode byte order mark is provided; otherwise, false. </param> </member> <member name="M:System.Text.UTF8Encoding.#ctor(System.Boolean,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Text.UTF8Encoding" /> class. Parameters specify whether to provide a Unicode byte order mark and whether to throw an exception when an invalid encoding is detected. </summary> <param name="encoderShouldEmitUTF8Identifier">true to specify that a Unicode byte order mark is provided; otherwise, false. </param> <param name="throwOnInvalidBytes">true to specify that an exception be thrown when an invalid encoding is detected; otherwise, false. </param> </member> <member name="M:System.Text.UTF8Encoding.Equals(System.Object)"> <summary> Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Text.UTF8Encoding" /> object. </summary> <returns>true if <paramref name="value" /> is an instance of <see cref="T:System.Text.UTF8Encoding" /> and is equal to the current object; otherwise, false. </returns> <param name="value"> The <see cref="T:System.Object" /> to compare with the current instance. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetByteCount(System.Char*,System.Int32)"> <summary> Calculates the number of bytes produced by encoding a set of characters starting at the specified character pointer. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetByteCount(System.Char[],System.Int32,System.Int32)"> <summary> Calculates the number of bytes produced by encoding a set of characters from the specified character array. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="index"> The index of the first character to encode. </param> <param name="count"> The number of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="chars" />. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetByteCount(System.String)"> <summary> Calculates the number of bytes produced by encoding the characters in the specified <see cref="T:System.String" />. </summary> <returns> The number of bytes produced by encoding the specified characters. </returns> <param name="chars"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32)"> <summary> Encodes a set of characters starting at the specified character pointer into a sequence of bytes that are stored starting at the specified byte pointer. </summary> <returns> The actual number of bytes written at the location indicated by <paramref name="bytes" />. </returns> <param name="chars"> A pointer to the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> A pointer to the location at which to start writing the resulting sequence of bytes. </param> <param name="byteCount"> The maximum number of bytes to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> or <paramref name="byteCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. -or- <paramref name="byteCount" /> is less than the resulting number of bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Encodes a set of characters from the specified character array into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="chars"> The character array containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="chars" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="chars" /> contains an invalid sequence of characters. -or- <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)"> <summary> Encodes a set of characters from the specified <see cref="T:System.String" /> into the specified byte array. </summary> <returns> The actual number of bytes written into <paramref name="bytes" />. </returns> <param name="s"> The <see cref="T:System.String" /> containing the set of characters to encode. </param> <param name="charIndex"> The index of the first character to encode. </param> <param name="charCount"> The number of characters to encode. </param> <param name="bytes"> The byte array to contain the resulting sequence of bytes. </param> <param name="byteIndex"> The index at which to start writing the resulting sequence of bytes. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="s" /> is null. -or- <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charIndex" /> or <paramref name="charCount" /> or <paramref name="byteIndex" /> is less than zero. -or- <paramref name="charIndex" /> and <paramref name="charCount" /> do not denote a valid range in <paramref name="chars" />. -or- <paramref name="byteIndex" /> is not a valid index in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="s" /> contains an invalid sequence of characters. -or- <paramref name="bytes" /> does not have enough capacity from <paramref name="byteIndex" /> to the end of the array to accommodate the resulting bytes. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetCharCount(System.Byte*,System.Int32)"> <summary> Calculates the number of characters produced by decoding a sequence of bytes starting at the specified byte pointer. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"></param> <param name="count"></param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="count" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetCharCount(System.Byte[],System.Int32,System.Int32)"> <summary> Calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. </summary> <returns> The number of characters produced by decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32)"> <summary> Decodes a sequence of bytes starting at the specified byte pointer into a set of characters that are stored starting at the specified character pointer. </summary> <returns> The actual number of characters written at the location indicated by <paramref name="chars" />. </returns> <param name="bytes"> A pointer to the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> A pointer to the location at which to start writing the resulting set of characters. </param> <param name="charCount"> The maximum number of characters to write. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. -or- <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> or <paramref name="charCount" /> is less than zero. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. -or- <paramref name="charCount" /> is less than the resulting number of characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)"> <summary> Decodes a sequence of bytes from the specified byte array into the specified character array. </summary> <returns> The actual number of characters written into <paramref name="chars" />. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="byteIndex"> The index of the first byte to decode. </param> <param name="byteCount"> The number of bytes to decode. </param> <param name="chars"> The character array to contain the resulting set of characters. </param> <param name="charIndex"> The index at which to start writing the resulting set of characters. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. -or- <paramref name="chars" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteIndex" /> or <paramref name="byteCount" /> or <paramref name="charIndex" /> is less than zero. -or- <paramref name="byteindex" /> and <paramref name="byteCount" /> do not denote a valid range in <paramref name="bytes" />. -or- <paramref name="charIndex" /> is not a valid index in <paramref name="chars" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. -or- <paramref name="chars" /> does not have enough capacity from <paramref name="charIndex" /> to the end of the array to accommodate the resulting characters. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetDecoder"> <summary> Obtains a decoder that converts a UTF-8 encoded sequence of bytes into a sequence of Unicode characters. </summary> <returns> A <see cref="T:System.Text.Decoder" /> that converts a UTF-8 encoded sequence of bytes into a sequence of Unicode characters. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetEncoder"> <summary> Obtains an encoder that converts a sequence of Unicode characters into a UTF-8 encoded sequence of bytes. </summary> <returns> A <see cref="T:System.Text.Encoder" /> that converts a sequence of Unicode characters into a UTF-8 encoded sequence of bytes. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetHashCode"> <summary> Returns the hash code for the current instance. </summary> <returns> The hash code for the current instance. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetMaxByteCount(System.Int32)"> <summary> Calculates the maximum number of bytes produced by encoding the specified number of characters. </summary> <returns> The maximum number of bytes produced by encoding the specified number of characters. </returns> <param name="charCount"> The number of characters to encode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="charCount" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.EncoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.EncoderFallback" /> is set to <see cref="T:System.Text.EncoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetMaxCharCount(System.Int32)"> <summary> Calculates the maximum number of characters produced by decoding the specified number of bytes. </summary> <returns> The maximum number of characters produced by decoding the specified number of bytes. </returns> <param name="byteCount"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="byteCount" /> is less than zero. -or- The resulting number of bytes is greater than the maximum number that can be returned as an integer. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetPreamble"> <summary> Returns a Unicode byte order mark encoded in UTF-8 format, if the constructor for this instance requests a byte order mark. </summary> <returns> A byte array containing the Unicode byte order mark, if the constructor for this instance requests a byte order mark. Otherwise, this method returns a byte array of length zero. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.UTF8Encoding.GetString(System.Byte[],System.Int32,System.Int32)"> <summary> Decodes a range of bytes from a byte array into a string. </summary> <returns> A <see cref="T:System.String" /> containing the results of decoding the specified sequence of bytes. </returns> <param name="bytes"> The byte array containing the sequence of bytes to decode. </param> <param name="index"> The index of the first byte to decode. </param> <param name="count"> The number of bytes to decode. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="bytes" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index" /> or <paramref name="count" /> is less than zero. -or- <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in <paramref name="bytes" />. </exception> <exception cref="T:System.ArgumentException"> Error detection is enabled, and <paramref name="bytes" /> contains an invalid sequence of bytes. </exception> <exception cref="T:System.Text.DecoderFallbackException"> A fallback occurred (see Understanding Encodings for complete explanation) -and- <see cref="P:System.Text.Encoding.DecoderFallback" /> is set to <see cref="T:System.Text.DecoderExceptionFallback" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Text.ASCIIEncoding.GetString(System.Byte[])"></member> <member name="M:System.Text.UnicodeEncoding.GetBytes(System.String)"></member> <member name="M:System.Text.UTF8Encoding.GetBytes(System.String)"></member> <member name="T:System.Text.MLangCodePageEncoding"></member> <member name="M:System.Text.MLangCodePageEncoding.#ctor(System.Int32,System.Int32)"></member> <member name="M:System.Text.MLangCodePageEncoding.Finalize"></member> <member name="M:System.Text.MLangCodePageEncoding.GetByteCount(System.Char[],System.Int32,System.Int32)"></member> <member name="M:System.Text.MLangCodePageEncoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)"></member> <member name="M:System.Text.MLangCodePageEncoding.GetCharCount(System.Byte[],System.Int32,System.Int32)"></member> <member name="M:System.Text.MLangCodePageEncoding.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)"></member> <member name="M:System.Text.MLangCodePageEncoding.GetDecoder"></member> <member name="M:System.Text.MLangCodePageEncoding.GetEncoder"></member> <member name="M:System.Text.MLangCodePageEncoding.GetMaxByteCount(System.Int32)"></member> <member name="M:System.Text.MLangCodePageEncoding.GetMaxCharCount(System.Int32)"></member> <member name="F:System.Text.MLangCodePageEncoding.m_maxByteSize"></member> <member name="T:System.Threading.AbandonedMutexException"> <summary> The exception that is thrown when one thread acquires a <see cref="T:System.Threading.Mutex" /> object that another thread has abandoned by exiting without releasing it. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.AbandonedMutexException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with default values. </summary> </member> <member name="M:System.Threading.AbandonedMutexException.#ctor(System.Int32,System.Threading.WaitHandle)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified index for the abandoned mutex, if applicable, and a <see cref="T:System.Threading.Mutex" /> object that represents the mutex. </summary> <param name="location"> The index of the abandoned mutex in the array of wait handles if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitAny" /> method, or –1 if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitOne" /> or <see cref="Overload:System.Threading.WaitHandle.WaitAll" /> methods. </param> <param name="handle"> A <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex. </param> </member> <member name="M:System.Threading.AbandonedMutexException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination. </param> </member> <member name="M:System.Threading.AbandonedMutexException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified error message. </summary> <param name="message"> An error message that explains the reason for the exception. </param> </member> <member name="M:System.Threading.AbandonedMutexException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified error message and inner exception. </summary> <param name="message"> An error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="M:System.Threading.AbandonedMutexException.#ctor(System.String,System.Exception,System.Int32,System.Threading.WaitHandle)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified error message, the inner exception, the index for the abandoned mutex, if applicable, and a <see cref="T:System.Threading.Mutex" /> object that represents the mutex. </summary> <param name="message"> An error message that explains the reason for the exception. </param> <param name="inner"> The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> <param name="location"> The index of the abandoned mutex in the array of wait handles if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitAny" /> method, or –1 if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitOne" /> or <see cref="Overload:System.Threading.WaitHandle.WaitAll" /> methods. </param> <param name="handle"> A <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex. </param> </member> <member name="M:System.Threading.AbandonedMutexException.#ctor(System.String,System.Int32,System.Threading.WaitHandle)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified error message, the index of the abandoned mutex, if applicable, and the abandoned mutex. </summary> <param name="message"> An error message that explains the reason for the exception. </param> <param name="location"> The index of the abandoned mutex in the array of wait handles if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitAny" /> method, or –1 if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitOne" /> or <see cref="Overload:System.Threading.WaitHandle.WaitAll" /> methods. </param> <param name="handle"> A <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex. </param> </member> <member name="P:System.Threading.AbandonedMutexException.Mutex"> <summary> Gets the abandoned mutex that caused the exception, if known. </summary> <returns> A <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex, or null if the abandoned mutex could not be identified. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Threading.AbandonedMutexException.MutexIndex"> <summary> Gets the index of the abandoned mutex that caused the exception, if known. </summary> <returns> The index, in the array of wait handles passed to the <see cref="Overload:System.Threading.WaitHandle.WaitAny" /> method, of the <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex, or –1 if the index of the abandoned mutex could not be determined. </returns> <filterpriority>1</filterpriority> </member> <member name="T:System.Threading.ApartmentState"> <summary> Specifies the apartment state of a <see cref="T:System.Threading.Thread" />. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Threading.ApartmentState.STA"> <summary> The <see cref="T:System.Threading.Thread" /> will create and enter a single-threaded apartment. </summary> </member> <member name="F:System.Threading.ApartmentState.MTA"> <summary> The <see cref="T:System.Threading.Thread" /> will create and enter a multithreaded apartment. </summary> </member> <member name="F:System.Threading.ApartmentState.Unknown"> <summary> The <see cref="P:System.Threading.Thread.ApartmentState" /> property has not been set. </summary> </member> <member name="T:System.Threading.AsyncFlowControl"> <summary> Provides the functionality to restore the migration, or flow, of the execution context between threads. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.AsyncFlowControl.Equals(System.Object)"> <summary> Determines whether the specified object is equal to the current <see cref="T:System.Threading.AsyncFlowControl" /> structure. </summary> <returns>true if <paramref name="obj" /> is an <see cref="T:System.Threading.AsyncFlowControl" /> structure and is equal to the current <see cref="T:System.Threading.AsyncFlowControl" /> structure; otherwise, false. </returns> <param name="obj"> An object to compare with the current structure. </param> </member> <member name="M:System.Threading.AsyncFlowControl.Equals(System.Threading.AsyncFlowControl)"> <summary> Determines whether the specified <see cref="T:System.Threading.AsyncFlowControl" /> structure is equal to the current <see cref="T:System.Threading.AsyncFlowControl" /> structure. </summary> <returns>true if <paramref name="obj" /> is equal to the current <see cref="T:System.Threading.AsyncFlowControl" /> structure; otherwise, false. </returns> <param name="obj"> An <see cref="T:System.Threading.AsyncFlowControl" /> structure to compare with the current structure. </param> </member> <member name="M:System.Threading.AsyncFlowControl.GetHashCode"> <summary> Gets a hash code for the current <see cref="T:System.Threading.AsyncFlowControl" /> structure. </summary> <returns> A hash code for the current <see cref="T:System.Threading.AsyncFlowControl" /> structure. </returns> </member> <member name="M:System.Threading.AsyncFlowControl.op_Equality(System.Threading.AsyncFlowControl,System.Threading.AsyncFlowControl)"> <summary> Compares two <see cref="T:System.Threading.AsyncFlowControl" /> structures to determine whether they are equal. </summary> <returns>true if the two structures are equal; otherwise, false. </returns> <param name="a"> An <see cref="T:System.Threading.AsyncFlowControl" /> structure. </param> <param name="b"> An <see cref="T:System.Threading.AsyncFlowControl" /> structure. </param> </member> <member name="M:System.Threading.AsyncFlowControl.op_Inequality(System.Threading.AsyncFlowControl,System.Threading.AsyncFlowControl)"> <summary> Compares two <see cref="T:System.Threading.AsyncFlowControl" /> structures to determine whether they are not equal. </summary> <returns>true if the structures are not equal; otherwise, false. </returns> <param name="a"> An <see cref="T:System.Threading.AsyncFlowControl" /> structure. </param> <param name="b"> An <see cref="T:System.Threading.AsyncFlowControl" /> structure. </param> </member> <member name="M:System.Threading.AsyncFlowControl.System#IDisposable#Dispose"> <summary> Releases all resources used by the <see cref="T:System.Threading.AsyncFlowControl" />. </summary> </member> <member name="M:System.Threading.AsyncFlowControl.Undo"> <summary> Restores the flow of the execution context between threads. </summary> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.Threading.AsyncFlowControl" /> structure is not used on the thread where it was created. -or- The <see cref="T:System.Threading.AsyncFlowControl" /> structure has already been used to call <see cref="M:System.Threading.AsyncFlowControl.Undo" />. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Threading.AutoResetEvent"> <summary> Notifies a waiting thread that an event has occurred. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.AutoResetEvent.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.AutoResetEvent" /> class with a Boolean value indicating whether to set the initial state to signaled. </summary> <param name="initialState">true to set the initial state to signaled; false to set the initial state to non-signaled. </param> </member> <member name="T:System.Threading.CompressedStack"> <summary> Provides methods for setting and capturing the compressed stack on the current thread. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.CompressedStack.Capture"> <summary> Captures the compressed stack from the current thread. </summary> <returns> A <see cref="T:System.Threading.CompressedStack" /> object. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.CompressedStack.CreateCopy"> <summary> Creates a copy of the current compressed stack. </summary> <returns> A <see cref="T:System.Threading.CompressedStack" /> object representing the current compressed stack. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.CompressedStack.GetCompressedStack"> <summary> Gets the compressed stack for the current thread. </summary> <returns> A <see cref="T:System.Threading.CompressedStack" /> for the current thread. </returns> <exception cref="T:System.Security.SecurityException"> A caller in the call chain does not have permission to access unmanaged code. -or- The request for <see cref="T:System.Security.Permissions.StrongNameIdentityPermission" /> failed. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="00000000000000000400000000000000" /> </PermissionSet> </member> <member name="M:System.Threading.CompressedStack.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the logical context information needed to recreate an instance of this execution context. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to be populated with serialization information. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure representing the destination context of the serialization. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.CompressedStack.Run(System.Threading.CompressedStack,System.Threading.ContextCallback,System.Object)"> <summary> Runs a method in the specified compressed stack on the current thread. </summary> <param name="compressedStack"> The <see cref="T:System.Threading.CompressedStack" /> to set. </param> <param name="callback"> A <see cref="T:System.Threading.ContextCallback" /> that represents the method to be run in the specified security context. </param> <param name="state"> The object to be passed to the callback method. </param> <exception cref="T:System.ArgumentException"> <paramref name="compressedStack" /> is null. </exception> </member> <member name="T:System.Threading.ContextCallback"> <summary> Represents a method to be called within a new context. </summary> <param name="state"> An object containing information to be used by the callback method each time it executes. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.Threading.EventResetMode"> <summary> Indicates whether an <see cref="T:System.Threading.EventWaitHandle" /> is reset automatically or manually after receiving a signal. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.Threading.EventResetMode.AutoReset"> <summary> When signaled, the <see cref="T:System.Threading.EventWaitHandle" /> resets automatically after releasing a single thread. If no threads are waiting, the <see cref="T:System.Threading.EventWaitHandle" /> remains signaled until a thread blocks, and resets after releasing the thread. </summary> </member> <member name="F:System.Threading.EventResetMode.ManualReset"> <summary> When signaled, the <see cref="T:System.Threading.EventWaitHandle" /> releases all waiting threads and remains signaled until it is manually reset. </summary> </member> <member name="T:System.Threading.EventWaitHandle"> <summary> Represents a thread synchronization event. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.EventWaitHandle.#ctor(System.Boolean,System.Threading.EventResetMode)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.EventWaitHandle" /> class, specifying whether the wait handle is initially signaled, and whether it resets automatically or manually. </summary> <param name="initialState">true to set the initial state to signaled; false to set it to nonsignaled. </param> <param name="mode"> One of the <see cref="T:System.Threading.EventResetMode" /> values that determines whether the event resets automatically or manually. </param> </member> <member name="M:System.Threading.EventWaitHandle.#ctor(System.Boolean,System.Threading.EventResetMode,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.EventWaitHandle" /> class, specifying whether the wait handle is initially signaled if created as a result of this call, whether it resets automatically or manually, and the name of a system synchronization event. </summary> <param name="initialState">true to set the initial state to signaled if the named event is created as a result of this call; false to set it to nonsignaled. </param> <param name="mode"> One of the <see cref="T:System.Threading.EventResetMode" /> values that determines whether the event resets automatically or manually. </param> <param name="name"> The name of a system-wide synchronization event. </param> <exception cref="T:System.IO.IOException"> A Win32 error occurred. </exception> <exception cref="T:System.UnauthorizedAccessException"> The named event exists and has access control security, but the user does not have <see cref="F:System.Security.AccessControl.EventWaitHandleRights.FullControl" />. </exception> <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException"> The named event cannot be created, perhaps because a wait handle of a different type has the same name. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than 260 characters. </exception> </member> <member name="M:System.Threading.EventWaitHandle.#ctor(System.Boolean,System.Threading.EventResetMode,System.String,System.Boolean@)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.EventWaitHandle" /> class, specifying whether the wait handle is initially signaled if created as a result of this call, whether it resets automatically or manually, the name of a system synchronization event, and a Boolean variable whose value after the call indicates whether the named system event was created. </summary> <param name="initialState">true to set the initial state to signaled if the named event is created as a result of this call; false to set it to nonsignaled. </param> <param name="mode"> One of the <see cref="T:System.Threading.EventResetMode" /> values that determines whether the event resets automatically or manually. </param> <param name="name"> The name of a system-wide synchronization event. </param> <param name="createdNew"> When this method returns, contains true if a local event was created (that is, if <paramref name="name" /> is null or an empty string) or if the specified named system event was created; false if the specified named system event already existed. This parameter is passed uninitialized. </param> <exception cref="T:System.IO.IOException"> A Win32 error occurred. </exception> <exception cref="T:System.UnauthorizedAccessException"> The named event exists and has access control security, but the user does not have <see cref="F:System.Security.AccessControl.EventWaitHandleRights.FullControl" />. </exception> <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException"> The named event cannot be created, perhaps because a wait handle of a different type has the same name. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than 260 characters. </exception> </member> <member name="M:System.Threading.EventWaitHandle.#ctor(System.Boolean,System.Threading.EventResetMode,System.String,System.Boolean@,System.Security.AccessControl.EventWaitHandleSecurity)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.EventWaitHandle" /> class, specifying whether the wait handle is initially signaled if created as a result of this call, whether it resets automatically or manually, the name of a system synchronization event, a Boolean variable whose value after the call indicates whether the named system event was created, and the access control security to be applied to the named event if it is created. </summary> <param name="initialState">true to set the initial state to signaled if the named event is created as a result of this call; false to set it to nonsignaled. </param> <param name="mode"> One of the <see cref="T:System.Threading.EventResetMode" /> values that determines whether the event resets automatically or manually. </param> <param name="name"> The name of a system-wide synchronization event. </param> <param name="createdNew"> When this method returns, contains true if a local event was created (that is, if <paramref name="name" /> is null or an empty string) or if the specified named system event was created; false if the specified named system event already existed. This parameter is passed uninitialized. </param> <param name="eventSecurity"> An <see cref="T:System.Security.AccessControl.EventWaitHandleSecurity" /> object that represents the access control security to be applied to the named system event. </param> <exception cref="T:System.IO.IOException"> A Win32 error occurred. </exception> <exception cref="T:System.UnauthorizedAccessException"> The named event exists and has access control security, but the user does not have <see cref="F:System.Security.AccessControl.EventWaitHandleRights.FullControl" />. </exception> <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException"> The named event cannot be created, perhaps because a wait handle of a different type has the same name. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than 260 characters. </exception> </member> <member name="M:System.Threading.EventWaitHandle.GetAccessControl"> <summary> Gets an <see cref="T:System.Security.AccessControl.EventWaitHandleSecurity" /> object that represents the access control security for the named system event represented by the current <see cref="T:System.Threading.EventWaitHandle" /> object. </summary> <returns> An <see cref="T:System.Security.AccessControl.EventWaitHandleSecurity" /> object that represents the access control security for the named system event. </returns> <exception cref="T:System.UnauthorizedAccessException"> The current <see cref="T:System.Threading.EventWaitHandle" /> object represents a named system event, and the user does not have <see cref="F:System.Security.AccessControl.EventWaitHandleRights.ReadPermissions" />. -or- The current <see cref="T:System.Threading.EventWaitHandle" /> object represents a named system event, and was not opened with <see cref="F:System.Security.AccessControl.EventWaitHandleRights.ReadPermissions" />. </exception> <exception cref="T:System.NotSupportedException"> Not supported for Windows 98 or Windows Millennium Edition. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Threading.EventWaitHandle.OpenExisting(System.String)"> <summary> Opens an existing named synchronization event. </summary> <returns> A <see cref="T:System.Threading.EventWaitHandle" /> object that represents the named system event. </returns> <param name="name"> The name of a system synchronization event. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is an empty string. -or- <paramref name="name" /> is longer than 260 characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException"> The named system event does not exist. </exception> <exception cref="T:System.IO.IOException"> A Win32 error occurred. </exception> <exception cref="T:System.UnauthorizedAccessException"> The named event exists, but the user does not have the security access required to use it. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Threading.EventWaitHandle.OpenExisting(System.String,System.Security.AccessControl.EventWaitHandleRights)"> <summary> Opens an existing named synchronization event, specifying the desired security access. </summary> <returns> A <see cref="T:System.Threading.EventWaitHandle" /> object that represents the named system event. </returns> <param name="name"> The name of a system-wide synchronization event. </param> <param name="rights"> A combination of <see cref="T:System.Security.AccessControl.EventWaitHandleRights" /> values that represent the desired security access. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is an empty string. -or- <paramref name="name" /> is longer than 260 characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException"> The named system event does not exist. </exception> <exception cref="T:System.IO.IOException"> A Win32 error occurred. </exception> <exception cref="T:System.UnauthorizedAccessException"> The named event exists, but the user does not have the desired security access. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Threading.EventWaitHandle.Reset"> <summary> Sets the state of the event to nonsignaled, causing threads to block. </summary> <returns>true if the operation succeeds; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.EventWaitHandle.Set"> <summary> Sets the state of the event to signaled, allowing one or more waiting threads to proceed. </summary> <returns>true if the operation succeeds; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.EventWaitHandle.SetAccessControl(System.Security.AccessControl.EventWaitHandleSecurity)"> <summary> Sets the access control security for a named system event. </summary> <param name="eventSecurity"> An <see cref="T:System.Security.AccessControl.EventWaitHandleSecurity" /> object that represents the access control security to be applied to the named system event. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="eventSecurity" /> is null. </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have <see cref="F:System.Security.AccessControl.EventWaitHandleRights.ChangePermissions" />. -or- The event was not opened with <see cref="F:System.Security.AccessControl.EventWaitHandleRights.ChangePermissions" />. </exception> <exception cref="T:System.SystemException"> The current <see cref="T:System.Threading.EventWaitHandle" /> object does not represent a named system event. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Threading.ExecutionContext"> <summary> Manages the execution context for the current thread. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ExecutionContext.Capture"> <summary> Captures the execution context from the current thread. </summary> <returns> An <see cref="T:System.Threading.ExecutionContext" /> object representing the execution context for the current thread. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ExecutionContext.CreateCopy"> <summary> Creates a copy of the current execution context. </summary> <returns> An <see cref="T:System.Threading.ExecutionContext" /> object representing the current execution context. </returns> <exception cref="T:System.InvalidOperationException"> This context cannot be copied because it is used. Only newly captured contexts can be copied. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ExecutionContext.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Sets the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the logical context information needed to recreate an instance of the current execution context. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to be populated with serialization information. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure representing the destination context of the serialization. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="info" /> is null. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ExecutionContext.IsFlowSuppressed"> <summary> Indicates whether the flow of the execution context is currently suppressed. </summary> <returns>true if the flow is suppressed; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ExecutionContext.RestoreFlow"> <summary> Restores the flow of the execution context across asynchronous threads. </summary> <exception cref="T:System.InvalidOperationException"> The context flow cannot be restored because it is not being suppressed. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext,System.Threading.ContextCallback,System.Object)"> <summary> Runs a method in a specified execution context on the current thread. </summary> <param name="executionContext"> The <see cref="T:System.Threading.ExecutionContext" /> to set. </param> <param name="callback"> A <see cref="T:System.Threading.ContextCallback" /> delegate that represents the method to be run in the provided execution context. </param> <param name="state"> The object to pass to the callback method. </param> <exception cref="T:System.InvalidOperationException"> <paramref name="executionContext" /> is null. -or- <paramref name="executionContext" /> was not acquired through a capture operation. -or- <paramref name="executionContext" /> has already been used as the argument to a <see cref="M:System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext,System.Threading.ContextCallback,System.Object)" /> call. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="M:System.Threading.ExecutionContext.SuppressFlow"> <summary> Suppresses the flow of the execution context across asynchronous threads. </summary> <returns> An <see cref="T:System.Threading.AsyncFlowControl" /> structure for restoring the flow. </returns> <exception cref="T:System.InvalidOperationException"> The context flow is already suppressed. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Threading.HostExecutionContext"> <summary> Encapsulates and propagates the host execution context across threads. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.HostExecutionContext.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Threading.HostExecutionContext" /> class. </summary> </member> <member name="M:System.Threading.HostExecutionContext.#ctor(System.Object)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.HostExecutionContext" /> class using the specified state. </summary> <param name="state"> An object representing the host execution context state. </param> </member> <member name="M:System.Threading.HostExecutionContext.CreateCopy"> <summary> Creates a copy of the current host execution context. </summary> <returns> A <see cref="T:System.Threading.HostExecutionContext" /> object representing the host context for the current thread. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.HostExecutionContext.State"> <summary> Gets or sets the state of the host execution context. </summary> <returns> An object representing the host execution context state. </returns> </member> <member name="T:System.Threading.HostExecutionContextManager"> <summary> Provides the functionality that allows a common language runtime host to participate in the flow, or migration, of the execution context. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.HostExecutionContextManager.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Threading.HostExecutionContextManager" /> class. </summary> </member> <member name="M:System.Threading.HostExecutionContextManager.Capture"> <summary> Captures the host execution context from the current thread. </summary> <returns> A <see cref="T:System.Threading.HostExecutionContext" /> object representing the host execution context of the current thread. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.HostExecutionContextManager.Revert(System.Object)"> <summary> Restores the host execution context to its prior state. </summary> <param name="previousState"> The previous context state to revert to. </param> <exception cref="T:System.InvalidOperationException"> <paramref name="previousState" /> is null. -or- <paramref name="previousState" /> was not created on the current thread. -or- <paramref name="previousState" /> is not the last state for the <see cref="T:System.Threading.HostExecutionContext" />. </exception> </member> <member name="M:System.Threading.HostExecutionContextManager.SetHostExecutionContext(System.Threading.HostExecutionContext)"> <summary> Sets the current host execution context to the specified host execution context. </summary> <returns> An object for restoring the <see cref="T:System.Threading.HostExecutionContext" /> to its previous state. </returns> <param name="hostExecutionContext"> The <see cref="T:System.Threading.HostExecutionContext" /> to be set. </param> <exception cref="T:System.InvalidOperationException"> <paramref name="hostExecutionContext" /> was not acquired through a capture operation. -or- <paramref name="hostExecutionContext" /> has been the argument to a previous <see cref="M:System.Threading.HostExecutionContextManager.SetHostExecutionContext(System.Threading.HostExecutionContext)" /> method call. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="T:System.Threading.Interlocked"> <summary> Provides atomic operations for variables that are shared by multiple threads. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Interlocked.Add(System.Int32@,System.Int32)"> <summary> Adds two 32-bit integers and replaces the first integer with the sum, as an atomic operation. </summary> <returns> The new value stored at <paramref name="location1" />. </returns> <param name="location1"> A variable containing the first value to be added. The sum of the two values is stored in <paramref name="location1" />. </param> <param name="value"> The value to be added to the integer at <paramref name="location1" />. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Add(System.Int64@,System.Int64)"> <summary> Adds two 64-bit integers and replaces the first integer with the sum, as an atomic operation. </summary> <returns> The new value stored at <paramref name="location1" />. </returns> <param name="location1"> A variable containing the first value to be added. The sum of the two values is stored in <paramref name="location1" />. </param> <param name="value"> The value to be added to the integer at <paramref name="location1" />. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.CompareExchange(System.Double@,System.Double,System.Double)"> <summary> Compares two double-precision floating point numbers for equality and, if they are equal, replaces one of the values. </summary> <returns> The original value in <paramref name="location1" />. </returns> <param name="location1"> The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced. </param> <param name="value"> The value that replaces the destination value if the comparison results in equality. </param> <param name="comparand"> The value that is compared to the value at <paramref name="location1" />. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.CompareExchange(System.Int32@,System.Int32,System.Int32)"> <summary> Compares two 32-bit signed integers for equality and, if they are equal, replaces one of the values. </summary> <returns> The original value in <paramref name="location1" />. </returns> <param name="location1"> The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced. </param> <param name="value"> The value that replaces the destination value if the comparison results in equality. </param> <param name="comparand"> The value that is compared to the value at <paramref name="location1" />. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.CompareExchange(System.Int64@,System.Int64,System.Int64)"> <summary> Compares two 64-bit signed integers for equality and, if they are equal, replaces one of the values. </summary> <returns> The original value in <paramref name="location1" />. </returns> <param name="location1"> The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced. </param> <param name="value"> The value that replaces the destination value if the comparison results in equality. </param> <param name="comparand"> The value that is compared to the value at <paramref name="location1" />. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.CompareExchange(System.IntPtr@,System.IntPtr,System.IntPtr)"> <summary> Compares two platform-specific handles or pointers for equality and, if they are equal, replaces one of them. </summary> <returns> The original value in <paramref name="location1" />. </returns> <param name="location1"> The destination <see cref="T:System.IntPtr" />, whose value is compared with the value of <paramref name="comparand" /> and possibly replaced by <paramref name="value" />. </param> <param name="value"> The <see cref="T:System.IntPtr" /> that replaces the destination value if the comparison results in equality. </param> <param name="comparand"> The <see cref="T:System.IntPtr" /> that is compared to the value at <paramref name="location1" />. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.CompareExchange(System.Object@,System.Object,System.Object)"> <summary> Compares two objects for reference equality and, if they are equal, replaces one of the objects. </summary> <returns> The original value in <paramref name="location1" />. </returns> <param name="location1"> The destination object that is compared with <paramref name="comparand" /> and possibly replaced. </param> <param name="value"> The object that replaces the destination object if the comparison results in equality. </param> <param name="comparand"> The object that is compared to the object at <paramref name="location1" />. </param> <exception cref="T:System.ArgumentNullException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.CompareExchange(System.Single@,System.Single,System.Single)"> <summary> Compares two single-precision floating point numbers for equality and, if they are equal, replaces one of the values. </summary> <returns> The original value in <paramref name="location1" />. </returns> <param name="location1"> The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced. </param> <param name="value"> The value that replaces the destination value if the comparison results in equality. </param> <param name="comparand"> The value that is compared to the value at <paramref name="location1" />. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.CompareExchange``1(``0@,``0,``0)"> <summary> Compares two instances of the specified reference type <paramref name="T" /> for equality and, if they are equal, replaces one of them. </summary> <returns> The original value in <paramref name="location1" />. </returns> <param name="location1"> The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced. This is a reference parameter (ref in C#, ByRef in Visual Basic). </param> <param name="value"> The value that replaces the destination value if the comparison results in equality. </param> <param name="comparand"> The value that is compared to the value at <paramref name="location1" />. </param> <typeparam name="T"> The type to be used for <paramref name="location1" />, <paramref name="value" />, and <paramref name="comparand" />. This type must be a reference type. </typeparam> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> </member> <member name="M:System.Threading.Interlocked.Decrement(System.Int32@)"> <summary> Decrements a specified variable and stores the result, as an atomic operation. </summary> <returns> The decremented value. </returns> <param name="location"> The variable whose value is to be decremented. </param> <exception cref="T:System.ArgumentNullException"> The address of <paramref name="location" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Decrement(System.Int64@)"> <summary> Decrements the specified variable and stores the result, as an atomic operation. </summary> <returns> The decremented value. </returns> <param name="location"> The variable whose value is to be decremented. </param> <exception cref="T:System.ArgumentNullException"> The address of <paramref name="location" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Exchange(System.Double@,System.Double)"> <summary> Sets a double-precision floating point number to a specified value and returns the original value, as an atomic operation. </summary> <returns> The original value of <paramref name="location1" />. </returns> <param name="location1"> The variable to set to the specified value. </param> <param name="value"> The value to which the <paramref name="location1" /> parameter is set. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Exchange(System.Int32@,System.Int32)"> <summary> Sets a 32-bit signed integer to a specified value and returns the original value, as an atomic operation. </summary> <returns> The original value of <paramref name="location1" />. </returns> <param name="location1"> The variable to set to the specified value. </param> <param name="value"> The value to which the <paramref name="location1" /> parameter is set. </param> <exception cref="T:System.ArgumentNullException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Exchange(System.Int64@,System.Int64)"> <summary> Sets a 64-bit signed integer to a specified value and returns the original value, as an atomic operation. </summary> <returns> The original value of <paramref name="location1" />. </returns> <param name="location1"> The variable to set to the specified value. </param> <param name="value"> The value to which the <paramref name="location1" /> parameter is set. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Exchange(System.IntPtr@,System.IntPtr)"> <summary> Sets a platform-specific handle or pointer to a specified value and returns the original value, as an atomic operation. </summary> <returns> The original value of <paramref name="location1" />. </returns> <param name="location1"> The variable to set to the specified value. </param> <param name="value"> The value to which the <paramref name="location1" /> parameter is set. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Exchange(System.Object@,System.Object)"> <summary> Sets an object to a specified value and returns a reference to the original object, as an atomic operation. </summary> <returns> The original value of <paramref name="location1" />. </returns> <param name="location1"> The variable to set to the specified value. </param> <param name="value"> The value to which the <paramref name="location1" /> parameter is set. </param> <exception cref="T:System.ArgumentNullException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Exchange(System.Single@,System.Single)"> <summary> Sets a single-precision floating point number to a specified value and returns the original value, as an atomic operation. </summary> <returns> The original value of <paramref name="location1" />. </returns> <param name="location1"> The variable to set to the specified value. </param> <param name="value"> The value to which the <paramref name="location1" /> parameter is set. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Exchange``1(``0@,``0)"> <summary> Sets a variable of the specified type <paramref name="T" /> to a specified value and returns the original value, as an atomic operation. </summary> <returns> The original value of <paramref name="location1" />. </returns> <param name="location1"> The variable to set to the specified value. This is a reference parameter (ref in C#, ByRef in Visual Basic). </param> <param name="value"> The value to which the <paramref name="location1" /> parameter is set. </param> <typeparam name="T"> The type to be used for <paramref name="location1" /> and <paramref name="value" />. This type must be a reference type. </typeparam> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location1" /> is a null pointer. </exception> </member> <member name="M:System.Threading.Interlocked.Increment(System.Int32@)"> <summary> Increments a specified variable and stores the result, as an atomic operation. </summary> <returns> The incremented value. </returns> <param name="location"> The variable whose value is to be incremented. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Increment(System.Int64@)"> <summary> Increments a specified variable and stores the result, as an atomic operation. </summary> <returns> The incremented value. </returns> <param name="location"> The variable whose value is to be incremented. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="location" /> is a null pointer. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Interlocked.Read(System.Int64@)"> <summary> Returns a 64-bit value, loaded as an atomic operation. </summary> <returns> The loaded value. </returns> <param name="location"> The 64-bit value to be loaded. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.Threading.IOCompletionCallback"> <summary> Receives the error code, number of bytes, and overlapped value type when an I/O operation completes on the thread pool. </summary> <param name="errorCode"> The error code. </param> <param name="numBytes"> The number of bytes that are transferred. </param> <param name="pOVERLAP"> A <see cref="T:System.Threading.NativeOverlapped" /> representing an unmanaged pointer to the native overlapped value type. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.Threading.LockCookie"> <summary> Defines the lock that implements single-writer/multiple-reader semantics. This is a value type. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.LockCookie.Equals(System.Object)"> <summary> Indicates whether a specified object is a <see cref="T:System.Threading.LockCookie" /> and is equal to the current instance. </summary> <returns>true if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The object to compare to the current instance. </param> </member> <member name="M:System.Threading.LockCookie.Equals(System.Threading.LockCookie)"> <summary> Indicates whether the current instance is equal to the specified <see cref="T:System.Threading.LockCookie" />. </summary> <returns>true if <paramref name="obj" /> is equal to the value of the current instance; otherwise, false. </returns> <param name="obj"> The <see cref="T:System.Threading.LockCookie" /> to compare to the current instance. </param> </member> <member name="M:System.Threading.LockCookie.GetHashCode"> <summary> Returns the hash code for this instance. </summary> <returns> A 32-bit signed integer hash code. </returns> </member> <member name="M:System.Threading.LockCookie.op_Equality(System.Threading.LockCookie,System.Threading.LockCookie)"> <summary> Indicates whether two <see cref="T:System.Threading.LockCookie" /> structures are equal. </summary> <returns>true if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Threading.LockCookie" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Threading.LockCookie" /> to compare to <paramref name="a" />. </param> </member> <member name="M:System.Threading.LockCookie.op_Inequality(System.Threading.LockCookie,System.Threading.LockCookie)"> <summary> Indicates whether two <see cref="T:System.Threading.LockCookie" /> structures are not equal. </summary> <returns>true if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, false. </returns> <param name="a"> The <see cref="T:System.Threading.LockCookie" /> to compare to <paramref name="b" />. </param> <param name="b"> The <see cref="T:System.Threading.LockCookie" /> to compare to <paramref name="a" />. </param> </member> <member name="T:System.Threading.ManualResetEvent"> <summary> Notifies one or more waiting threads that an event has occurred. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ManualResetEvent.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.ManualResetEvent" /> class with a Boolean value indicating whether to set the initial state to signaled. </summary> <param name="initialState">true to set the initial state signaled; false to set the initial state to nonsignaled. </param> </member> <member name="T:System.Threading.Monitor"> <summary> Provides a mechanism that synchronizes access to objects. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Monitor.Enter(System.Object)"> <summary> Acquires an exclusive lock on the specified object. </summary> <param name="obj"> The object on which to acquire the monitor lock. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.Exit(System.Object)"> <summary> Releases an exclusive lock on the specified object. </summary> <param name="obj"> The object on which to release the lock. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.Threading.SynchronizationLockException"> The current thread does not own the lock for the specified object. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.Pulse(System.Object)"> <summary> Notifies a thread in the waiting queue of a change in the locked object's state. </summary> <param name="obj"> The object a thread is waiting for. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.Threading.SynchronizationLockException"> The calling thread does not own the lock for the specified object. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.PulseAll(System.Object)"> <summary> Notifies all waiting threads of a change in the object's state. </summary> <param name="obj"> The object that sends the pulse. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.Threading.SynchronizationLockException"> The calling thread does not own the lock for the specified object. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.TryEnter(System.Object)"> <summary> Attempts to acquire an exclusive lock on the specified object. </summary> <returns>true if the current thread acquires the lock; otherwise, false. </returns> <param name="obj"> The object on which to acquire the lock. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.TryEnter(System.Object,System.Int32)"> <summary> Attempts, for the specified number of milliseconds, to acquire an exclusive lock on the specified object. </summary> <returns>true if the current thread acquires the lock; otherwise, false. </returns> <param name="obj"> The object on which to acquire the lock. </param> <param name="millisecondsTimeout"> The number of milliseconds to wait for the lock. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="millisecondsTimeout" /> is negative, and not equal to <see cref="F:System.Threading.Timeout.Infinite" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.TryEnter(System.Object,System.TimeSpan)"> <summary> Attempts, for the specified amount of time, to acquire an exclusive lock on the specified object. </summary> <returns>true if the current thread acquires the lock without blocking; otherwise, false. </returns> <param name="obj"> The object on which to acquire the lock. </param> <param name="timeout"> A <see cref="T:System.TimeSpan" /> representing the amount of time to wait for the lock. A value of –1 millisecond specifies an infinite wait. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of <paramref name="timeout" /> in milliseconds is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" /> (–1 millisecond), or is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.Wait(System.Object)"> <summary> Releases the lock on an object and blocks the current thread until it reacquires the lock. </summary> <returns>true if the call returned because the caller reacquired the lock for the specified object. This method does not return if the lock is not reacquired. </returns> <param name="obj"> The object on which to wait. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.Threading.SynchronizationLockException"> The calling thread does not own the lock for the specified object. </exception> <exception cref="T:System.Threading.ThreadInterruptedException"> The thread that invokes Wait is later interrupted from the waiting state. This happens when another thread calls this thread's <see cref="M:System.Threading.Thread.Interrupt" /> method. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.Wait(System.Object,System.Int32)"> <summary> Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue. </summary> <returns>true if the lock was reacquired before the specified time elapsed; false if the lock was reacquired after the specified time elapsed. The method does not return until the lock is reacquired. </returns> <param name="obj"> The object on which to wait. </param> <param name="millisecondsTimeout"> The number of milliseconds to wait before the thread enters the ready queue. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.Threading.SynchronizationLockException"> The calling thread does not own the lock for the specified object. </exception> <exception cref="T:System.Threading.ThreadInterruptedException"> The thread that invokes Wait is later interrupted from the waiting state. This happens when another thread calls this thread's <see cref="M:System.Threading.Thread.Interrupt" /> method. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="millisecondsTimeout" /> parameter is negative, and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.Wait(System.Object,System.Int32,System.Boolean)"> <summary> Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue. This method also specifies whether the synchronization domain for the context (if in a synchronized context) is exited before the wait and reacquired afterward. </summary> <returns>true if the lock was reacquired before the specified time elapsed; false if the lock was reacquired after the specified time elapsed. The method does not return until the lock is reacquired. </returns> <param name="obj"> The object on which to wait. </param> <param name="millisecondsTimeout"> The number of milliseconds to wait before the thread enters the ready queue. </param> <param name="exitContext">true to exit and reacquire the synchronization domain for the context (if in a synchronized context) before the wait; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.Threading.SynchronizationLockException">Wait is not invoked from within a synchronized block of code. </exception> <exception cref="T:System.Threading.ThreadInterruptedException"> The thread that invokes Wait is later interrupted from the waiting state. This happens when another thread calls this thread's <see cref="M:System.Threading.Thread.Interrupt" /> method. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="millisecondsTimeout" /> parameter is negative, and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.Wait(System.Object,System.TimeSpan)"> <summary> Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue. </summary> <returns>true if the lock was reacquired before the specified time elapsed; false if the lock was reacquired after the specified time elapsed. The method does not return until the lock is reacquired. </returns> <param name="obj"> The object on which to wait. </param> <param name="timeout"> A <see cref="T:System.TimeSpan" /> representing the amount of time to wait before the thread enters the ready queue. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.Threading.SynchronizationLockException"> The calling thread does not own the lock for the specified object. </exception> <exception cref="T:System.Threading.ThreadInterruptedException"> The thread that invokes Wait is later interrupted from the waiting state. This happens when another thread calls this thread's <see cref="M:System.Threading.Thread.Interrupt" /> method. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The value of the <paramref name="timeout" /> parameter in milliseconds is negative and does not represent <see cref="F:System.Threading.Timeout.Infinite" /> (–1 millisecond), or is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Monitor.Wait(System.Object,System.TimeSpan,System.Boolean)"> <summary> Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue. Optionally exits the synchronization domain for the synchronized context before the wait and reacquires the domain afterward. </summary> <returns>true if the lock was reacquired before the specified time elapsed; false if the lock was reacquired after the specified time elapsed. The method does not return until the lock is reacquired. </returns> <param name="obj"> The object on which to wait. </param> <param name="timeout"> A <see cref="T:System.TimeSpan" /> representing the amount of time to wait before the thread enters the ready queue. </param> <param name="exitContext">true to exit and reacquire the synchronization domain for the context (if in a synchronized context) before the wait; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="obj" /> parameter is null. </exception> <exception cref="T:System.Threading.SynchronizationLockException">Wait is not invoked from within a synchronized block of code. </exception> <exception cref="T:System.Threading.ThreadInterruptedException"> The thread that invokes Wait is later interrupted from the waiting state. This happens when another thread calls this thread's <see cref="M:System.Threading.Thread.Interrupt" /> method. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="timeout" /> parameter is negative and does not represent <see cref="F:System.Threading.Timeout.Infinite" /> (–1 millisecond), or is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="T:System.Threading.Mutex"> <summary> A synchronization primitive that can also be used for interprocess synchronization. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Mutex.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Mutex" /> class with default properties. </summary> </member> <member name="M:System.Threading.Mutex.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Mutex" /> class with a Boolean value that indicates whether the calling thread should have initial ownership of the mutex. </summary> <param name="initiallyOwned">true to give the calling thread initial ownership of the mutex; otherwise, false. </param> </member> <member name="M:System.Threading.Mutex.#ctor(System.Boolean,System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Mutex" /> class with a Boolean value that indicates whether the calling thread should have initial ownership of the mutex, and a string that is the name of the mutex. </summary> <param name="initiallyOwned">true to give the calling thread initial ownership of the named system mutex if the named system mutex is created as a result of this call; otherwise, false. </param> <param name="name"> The name of the <see cref="T:System.Threading.Mutex" />. If the value is null, the <see cref="T:System.Threading.Mutex" /> is unnamed. </param> <exception cref="T:System.UnauthorizedAccessException"> The named mutex exists and has access control security, but the user does not have <see cref="F:System.Security.AccessControl.MutexRights.FullControl" />. </exception> <exception cref="T:System.IO.IOException"> A Win32 error occurred. </exception> <exception cref="T:System.ApplicationException"> The named mutex cannot be created, perhaps because a wait handle of a different type has the same name. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than 260 characters. </exception> </member> <member name="M:System.Threading.Mutex.#ctor(System.Boolean,System.String,System.Boolean@)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Mutex" /> class with a Boolean value that indicates whether the calling thread should have initial ownership of the mutex, a string that is the name of the mutex, and a Boolean value that, when the method returns, indicates whether the calling thread was granted initial ownership of the mutex. </summary> <param name="initiallyOwned">true to give the calling thread initial ownership of the named system mutex if the named system mutex is created as a result of this call; otherwise, false. </param> <param name="name"> The name of the <see cref="T:System.Threading.Mutex" />. If the value is null, the <see cref="T:System.Threading.Mutex" /> is unnamed. </param> <param name="createdNew"> When this method returns, contains a Boolean that is true if a local mutex was created (that is, if <paramref name="name" /> is null or an empty string) or if the specified named system mutex was created; false if the specified named system mutex already existed. This parameter is passed uninitialized. </param> <exception cref="T:System.UnauthorizedAccessException"> The named mutex exists and has access control security, but the user does not have <see cref="F:System.Security.AccessControl.MutexRights.FullControl" />. </exception> <exception cref="T:System.IO.IOException"> A Win32 error occurred. </exception> <exception cref="T:System.ApplicationException"> The named mutex cannot be created, perhaps because a wait handle of a different type has the same name. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than 260 characters. </exception> </member> <member name="M:System.Threading.Mutex.#ctor(System.Boolean,System.String,System.Boolean@,System.Security.AccessControl.MutexSecurity)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Mutex" /> class with a Boolean value that indicates whether the calling thread should have initial ownership of the mutex, a string that is the name of the mutex, a Boolean variable that, when the method returns, indicates whether the calling thread was granted initial ownership of the mutex, and the access control security to be applied to the named mutex. </summary> <param name="initiallyOwned">true to give the calling thread initial ownership of the named system mutex if the named system mutex is created as a result of this call; otherwise, false. </param> <param name="name"> The name of the system mutex. If the value is null, the <see cref="T:System.Threading.Mutex" /> is unnamed. </param> <param name="createdNew"> When this method returns, contains a Boolean that is true if a local mutex was created (that is, if <paramref name="name" /> is null or an empty string) or if the specified named system mutex was created; false if the specified named system mutex already existed. This parameter is passed uninitialized. </param> <param name="mutexSecurity"> A <see cref="T:System.Security.AccessControl.MutexSecurity" /> object that represents the access control security to be applied to the named system mutex. </param> <exception cref="T:System.IO.IOException"> A Win32 error occurred. </exception> <exception cref="T:System.UnauthorizedAccessException"> The named mutex exists and has access control security, but the user does not have <see cref="F:System.Security.AccessControl.MutexRights.FullControl" />. </exception> <exception cref="T:System.ApplicationException"> The named mutex cannot be created, perhaps because a wait handle of a different type has the same name. </exception> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is longer than 260 characters. </exception> </member> <member name="M:System.Threading.Mutex.GetAccessControl"> <summary> Gets a <see cref="T:System.Security.AccessControl.MutexSecurity" /> object that represents the access control security for the named mutex. </summary> <returns> A <see cref="T:System.Security.AccessControl.MutexSecurity" /> object that represents the access control security for the named mutex. </returns> <exception cref="T:System.UnauthorizedAccessException"> The current <see cref="T:System.Threading.Mutex" /> object represents a named system mutex, but the user does not have <see cref="F:System.Security.AccessControl.MutexRights.ReadPermissions" />. -or- The current <see cref="T:System.Threading.Mutex" /> object represents a named system mutex, and was not opened with <see cref="F:System.Security.AccessControl.MutexRights.ReadPermissions" />. </exception> <exception cref="T:System.NotSupportedException"> Not supported for Windows 98 or Windows Millennium Edition. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Threading.Mutex.OpenExisting(System.String)"> <summary> Opens an existing named mutex. </summary> <returns> A <see cref="T:System.Threading.Mutex" /> object that represents a named system mutex. </returns> <param name="name"> The name of a system-wide named mutex object. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is a zero-length string. -or- <paramref name="name" /> is longer than 260 characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException"> The named mutex does not exist. </exception> <exception cref="T:System.IO.IOException"> A Win32 error occurred. </exception> <exception cref="T:System.UnauthorizedAccessException"> The named mutex exists, but the user does not have the security access required to use it. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Threading.Mutex.OpenExisting(System.String,System.Security.AccessControl.MutexRights)"> <summary> Open an existing named mutex, specifying the desired security access. </summary> <returns> A <see cref="T:System.Threading.Mutex" /> object that represents the named system mutex. </returns> <param name="name"> The name of a system mutex. </param> <param name="rights"> A combination of <see cref="T:System.Security.AccessControl.MutexRights" /> values that represent the desired security access. </param> <exception cref="T:System.ArgumentException"> <paramref name="name" /> is an empty string. -or- <paramref name="name" /> is longer than 260 characters. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="name" /> is null. </exception> <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException"> The named mutex does not exist. </exception> <exception cref="T:System.IO.IOException"> A Win32 error occurred. </exception> <exception cref="T:System.UnauthorizedAccessException"> The named mutex exists, and the user does not have the desired security access. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Threading.Mutex.ReleaseMutex"> <summary> Releases the <see cref="T:System.Threading.Mutex" /> once. </summary> <exception cref="T:System.ApplicationException"> The calling thread does not own the mutex. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Mutex.SetAccessControl(System.Security.AccessControl.MutexSecurity)"> <summary> Sets the access control security for a named system mutex. </summary> <param name="mutexSecurity"> A <see cref="T:System.Security.AccessControl.MutexSecurity" /> object that represents the access control security to be applied to the named system mutex. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="mutexSecurity" /> is null. </exception> <exception cref="T:System.UnauthorizedAccessException"> The user does not have <see cref="F:System.Security.AccessControl.MutexRights.ChangePermissions" />. -or- The mutex was not opened with <see cref="F:System.Security.AccessControl.MutexRights.ChangePermissions" />. </exception> <exception cref="T:System.SystemException"> The current <see cref="T:System.Threading.Mutex" /> object does not represent a named system mutex. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="T:System.Threading.NativeOverlapped"> <summary> Provides an explicit layout that is visible from unmanaged code and that will have the same layout as the Win32 OVERLAPPED structure with additional reserved fields at the end. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.Threading.NativeOverlapped.EventHandle"> <summary> Specifies the handle to an event set to the signaled state when the operation is complete. The calling process must set this member either to zero or to a valid event handle before calling any overlapped functions. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.Threading.NativeOverlapped.InternalHigh"> <summary> Specifies the length of the data transferred. Reserved for operating system use. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.Threading.NativeOverlapped.InternalLow"> <summary> Specifies a system-dependent status. Reserved for operating system use. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.Threading.NativeOverlapped.OffsetHigh"> <summary> Specifies the high word of the byte offset at which to start the transfer. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.Threading.NativeOverlapped.OffsetLow"> <summary> Specifies a file position at which to start the transfer. </summary> <filterpriority>2</filterpriority> </member> <member name="T:System.Threading.Overlapped"> <summary> Provides a managed representation of a Win32 OVERLAPPED structure, including methods to transfer information from an <see cref="T:System.Threading.Overlapped" /> instance to a <see cref="T:System.Threading.NativeOverlapped" /> structure. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Overlapped.#ctor"> <summary> Initializes a new, empty instance of the <see cref="T:System.Threading.Overlapped" /> class. </summary> </member> <member name="M:System.Threading.Overlapped.#ctor(System.Int32,System.Int32,System.Int32,System.IAsyncResult)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Overlapped" /> class with the specified file position, the 32-bit integer handle to an event that is signaled when the I/O operation is complete, and an interface through which to return the results of the operation. </summary> <param name="offsetLo"> The low word of the file position at which to start the transfer. </param> <param name="offsetHi"> The high word of the file position at which to start the transfer. </param> <param name="hEvent"> The handle to an event that is signaled when the I/O operation is complete. </param> <param name="ar"> An object that implements the <see cref="T:System.IAsyncResult" /> interface and provides status information on the I/O operation. </param> </member> <member name="M:System.Threading.Overlapped.#ctor(System.Int32,System.Int32,System.IntPtr,System.IAsyncResult)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Overlapped" /> class with the specified file position, the handle to an event that is signaled when the I/O operation is complete, and an interface through which to return the results of the operation. </summary> <param name="offsetLo"> The low word of the file position at which to start the transfer. </param> <param name="offsetHi"> The high word of the file position at which to start the transfer. </param> <param name="hEvent"> The handle to an event that is signaled when the I/O operation is complete. </param> <param name="ar"> An object that implements the <see cref="T:System.IAsyncResult" /> interface and provides status information on the I/O operation. </param> </member> <member name="P:System.Threading.Overlapped.AsyncResult"> <summary> Gets or sets the object that provides status information on the I/O operation. </summary> <returns> An object that implements the <see cref="T:System.IAsyncResult" /> interface. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.Overlapped.EventHandle"> <summary> Gets or sets the 32-bit integer handle to a synchronization event that is signaled when the I/O operation is complete. </summary> <returns> An <see cref="T:System.Int32" /> value representing the handle of the synchronization event. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.Overlapped.EventHandleIntPtr"> <summary> Gets or sets the handle to the synchronization event that is signaled when the I/O operation is complete. </summary> <returns> An <see cref="T:System.IntPtr" /> representing the handle of the event. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Overlapped.Free(System.Threading.NativeOverlapped*)"> <summary> Frees the unmanaged memory associated with a native overlapped structure allocated by the <see cref="Overload:System.Threading.Overlapped.Pack" /> method. </summary> <param name="nativeOverlappedPtr"> A pointer to the <see cref="T:System.Threading.NativeOverlapped" /> structure to be freed. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="nativeOverlappedPtr" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Threading.Overlapped.OffsetHigh"> <summary> Gets or sets the high-order word of the file position at which to start the transfer. The file position is a byte offset from the start of the file. </summary> <returns> An <see cref="T:System.Int32" /> value representing the high word of the file position. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.Overlapped.OffsetLow"> <summary> Gets or sets the low-order word of the file position at which to start the transfer. The file position is a byte offset from the start of the file. </summary> <returns> An <see cref="T:System.Int32" /> value representing the low word of the file position. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Overlapped.Pack(System.Threading.IOCompletionCallback)"> <summary> Packs the current instance into a <see cref="T:System.Threading.NativeOverlapped" /> structure, specifying the delegate to be invoked when the asynchronous I/O operation is complete. </summary> <returns> An unmanaged pointer to a <see cref="T:System.Threading.NativeOverlapped" /> structure. </returns> <param name="iocb"> An <see cref="T:System.Threading.IOCompletionCallback" /> delegate that represents the callback method invoked when the asynchronous I/O operation completes. </param> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Threading.Overlapped" /> has already been packed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Overlapped.Pack(System.Threading.IOCompletionCallback,System.Object)"> <summary> Packs the current instance into a <see cref="T:System.Threading.NativeOverlapped" /> structure, specifying a delegate that is invoked when the asynchronous I/O operation is complete and a managed object that serves as a buffer. </summary> <returns> An unmanaged pointer to a <see cref="T:System.Threading.NativeOverlapped" /> structure. </returns> <param name="iocb"> An <see cref="T:System.Threading.IOCompletionCallback" /> delegate that represents the callback method invoked when the asynchronous I/O operation completes. </param> <param name="userData"> An object or array of objects representing the input or output buffer for the operation. Each object represents a buffer, for example an array of bytes. </param> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Threading.Overlapped" /> has already been packed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Overlapped.Unpack(System.Threading.NativeOverlapped*)"> <summary> Unpacks the specified unmanaged <see cref="T:System.Threading.NativeOverlapped" /> structure into a managed <see cref="T:System.Threading.Overlapped" /> object. </summary> <returns> An <see cref="T:System.Threading.Overlapped" /> object containing the information unpacked from the native structure. </returns> <param name="nativeOverlappedPtr"> An unmanaged pointer to a <see cref="T:System.Threading.NativeOverlapped" /> structure. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="nativeOverlappedPtr" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Overlapped.UnsafePack(System.Threading.IOCompletionCallback)"> <summary> Packs the current instance into a <see cref="T:System.Threading.NativeOverlapped" /> structure specifying the delegate to invoke when the asynchronous I/O operation is complete. Does not propagate the calling stack. </summary> <returns> An unmanaged pointer to a <see cref="T:System.Threading.NativeOverlapped" /> structure. </returns> <param name="iocb"> An <see cref="T:System.Threading.IOCompletionCallback" /> delegate that represents the callback method invoked when the asynchronous I/O operation completes. </param> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Threading.Overlapped" /> has already been packed. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Threading.Overlapped.UnsafePack(System.Threading.IOCompletionCallback,System.Object)"> <summary> Packs the current instance into a <see cref="T:System.Threading.NativeOverlapped" /> structure, specifying the delegate to invoke when the asynchronous I/O operation is complete and the managed object that serves as a buffer. Does not propagate the calling stack. </summary> <returns> An unmanaged pointer to a <see cref="T:System.Threading.NativeOverlapped" /> structure. </returns> <param name="iocb"> An <see cref="T:System.Threading.IOCompletionCallback" /> delegate that represents the callback method invoked when the asynchronous I/O operation completes. </param> <param name="userData"> An object or array of objects representing the input or output buffer for the operation. Each object represents a buffer, for example an array of bytes. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.InvalidOperationException"> The current <see cref="T:System.Threading.Overlapped" /> is already packed. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="T:System.Threading.ParameterizedThreadStart"> <summary> Represents the method that executes on a <see cref="T:System.Threading.Thread" />. </summary> <param name="obj"> An object that contains data for the thread procedure. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.Threading.ReaderWriterLock"> <summary> Defines a lock that supports single writers and multiple readers. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Threading.ReaderWriterLock" /> class. </summary> </member> <member name="M:System.Threading.ReaderWriterLock.AcquireReaderLock(System.Int32)"> <summary> Acquires a reader lock, using an <see cref="T:System.Int32" /> value for the time-out. </summary> <param name="millisecondsTimeout"> The time-out in milliseconds. </param> <exception cref="T:System.ApplicationException"> <paramref name="millisecondsTimeout" /> expires before the lock request is granted. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.AcquireReaderLock(System.TimeSpan)"> <summary> Acquires a reader lock, using a <see cref="T:System.TimeSpan" /> value for the time-out. </summary> <param name="timeout"> A TimeSpan specifying the time-out period. </param> <exception cref="T:System.ApplicationException"> <paramref name="timeout" /> expires before the lock request is granted. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="timeout" /> specifies a negative value other than -1 milliseconds. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.AcquireWriterLock(System.Int32)"> <summary> Acquires the writer lock, using an <see cref="T:System.Int32" /> value for the time-out. </summary> <param name="millisecondsTimeout"> The time-out in milliseconds. </param> <exception cref="T:System.ApplicationException"> <paramref name="timeout" /> expires before the lock request is granted. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.AcquireWriterLock(System.TimeSpan)"> <summary> Acquires the writer lock, using a <see cref="T:System.TimeSpan" /> value for the time-out. </summary> <param name="timeout"> The TimeSpan specifying the time-out period. </param> <exception cref="T:System.ApplicationException"> <paramref name="timeout" /> expires before the lock request is granted. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="timeout" /> specifies a negative value other than -1 milliseconds. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.AnyWritersSince(System.Int32)"> <summary> Indicates whether the writer lock has been granted to any thread since the sequence number was obtained. </summary> <returns>true if the writer lock has been granted to any thread since the sequence number was obtained; otherwise, false. </returns> <param name="seqNum"> The sequence number. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.DowngradeFromWriterLock(System.Threading.LockCookie@)"> <summary> Restores the lock status of the thread to what it was before <see cref="M:System.Threading.ReaderWriterLock.UpgradeToWriterLock(System.Int32)" /> was called. </summary> <param name="lockCookie"> A <see cref="T:System.Threading.LockCookie" /> returned by <see cref="M:System.Threading.ReaderWriterLock.UpgradeToWriterLock(System.Int32)" />. </param> <exception cref="T:System.ApplicationException"> The thread does not have the writer lock. </exception> <exception cref="T:System.NullReferenceException"> The address of <paramref name="lockCookie" /> is a null pointer. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.ReaderWriterLock.IsReaderLockHeld"> <summary> Gets a value indicating whether the current thread holds a reader lock. </summary> <returns>true if the current thread holds a reader lock; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.ReaderWriterLock.IsWriterLockHeld"> <summary> Gets a value indicating whether the current thread holds the writer lock. </summary> <returns>true if the current thread holds the writer lock; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.ReleaseLock"> <summary> Releases the lock, regardless of the number of times the thread acquired the lock. </summary> <returns> A <see cref="T:System.Threading.LockCookie" /> value representing the released lock. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.ReleaseReaderLock"> <summary> Decrements the lock count. </summary> <exception cref="T:System.ApplicationException"> The thread does not have any reader or writer locks. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.ReleaseWriterLock"> <summary> Decrements the lock count on the writer lock. </summary> <exception cref="T:System.ApplicationException"> The thread does not have the writer lock. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.RestoreLock(System.Threading.LockCookie@)"> <summary> Restores the lock status of the thread to what it was before calling <see cref="M:System.Threading.ReaderWriterLock.ReleaseLock" />. </summary> <param name="lockCookie"> A <see cref="T:System.Threading.LockCookie" /> returned by <see cref="M:System.Threading.ReaderWriterLock.ReleaseLock" />. </param> <exception cref="T:System.NullReferenceException"> The address of <paramref name="lockCookie" /> is a null pointer. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.UpgradeToWriterLock(System.Int32)"> <summary> Upgrades a reader lock to the writer lock, using an Int32 value for the time-out. </summary> <returns> A <see cref="T:System.Threading.LockCookie" /> value. </returns> <param name="millisecondsTimeout"> The time-out in milliseconds. </param> <exception cref="T:System.ApplicationException"> <paramref name="millisecondsTimeout" /> expires before the lock request is granted. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ReaderWriterLock.UpgradeToWriterLock(System.TimeSpan)"> <summary> Upgrades a reader lock to the writer lock, using a TimeSpan value for the time-out. </summary> <returns> A <see cref="T:System.Threading.LockCookie" /> value. </returns> <param name="timeout"> The TimeSpan specifying the time-out period. </param> <exception cref="T:System.ApplicationException"> <paramref name="timeout" /> expires before the lock request is granted. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="timeout" /> specifies a negative value other than -1 milliseconds. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.ReaderWriterLock.WriterSeqNum"> <summary> Gets the current sequence number. </summary> <returns> The current sequence number. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Threading.RegisteredWaitHandle"> <summary> Represents a handle that has been registered when calling <see cref="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)" />. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.RegisteredWaitHandle.Unregister(System.Threading.WaitHandle)"> <summary> Cancels a registered wait operation issued by the <see cref="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)" /> method. </summary> <returns>true if the function succeeds; otherwise, false. </returns> <param name="waitObject"> The <see cref="T:System.Threading.WaitHandle" /> to be signaled. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.Threading.SendOrPostCallback"> <summary> Represents a method to be called when a message is to be dispatched to a synchronization context. </summary> <param name="state"> The object passed to the delegate. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.Threading.SynchronizationContext"> <summary> Provides the basic functionality for propagating a synchronization context in various synchronization models. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.SynchronizationContext.#ctor"> <summary> Creates a new instance of the <see cref="T:System.Threading.SynchronizationContext" /> class. </summary> </member> <member name="M:System.Threading.SynchronizationContext.CreateCopy"> <summary> When overridden in a derived class, creates a copy of the synchronization context. </summary> <returns> A new <see cref="T:System.Threading.SynchronizationContext" /> object. </returns> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.SynchronizationContext.Current"> <summary> Gets the synchronization context for the current thread. </summary> <returns> A <see cref="T:System.Threading.SynchronizationContext" /> object representing the current synchronization context. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.SynchronizationContext.IsWaitNotificationRequired"> <summary> Determines if wait notification is required. </summary> <returns>true if wait notification is required; otherwise, false. </returns> </member> <member name="M:System.Threading.SynchronizationContext.OperationCompleted"> <summary> When overridden in a derived class, responds to the notification that an operation has completed. </summary> </member> <member name="M:System.Threading.SynchronizationContext.OperationStarted"> <summary> When overridden in a derived class, responds to the notification that an operation has started. </summary> </member> <member name="M:System.Threading.SynchronizationContext.Post(System.Threading.SendOrPostCallback,System.Object)"> <summary> When overridden in a derived class, dispatches an asynchronous message to a synchronization context. </summary> <param name="d"> The <see cref="T:System.Threading.SendOrPostCallback" /> delegate to call. </param> <param name="state"> The object passed to the delegate. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.SynchronizationContext.Send(System.Threading.SendOrPostCallback,System.Object)"> <summary> When overridden in a derived class, dispatches a synchronous message to a synchronization context. </summary> <param name="d"> The <see cref="T:System.Threading.SendOrPostCallback" /> delegate to call. </param> <param name="state"> The object passed to the delegate. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.SynchronizationContext.SetSynchronizationContext(System.Threading.SynchronizationContext)"> <summary> Sets the current synchronization context. </summary> <param name="syncContext"> The <see cref="T:System.Threading.SynchronizationContext" /> object to be set. </param> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Threading.SynchronizationContext.SetWaitNotificationRequired"> <summary> Sets notification that wait notification is required and prepares the callback method so it can be called more reliably when a wait occurs. </summary> </member> <member name="M:System.Threading.SynchronizationContext.Wait(System.IntPtr[],System.Boolean,System.Int32)"> <summary> Waits for any or all the elements in the specified array to receive a signal. </summary> <returns> The array index of the object that satisfied the wait. </returns> <param name="waitHandles"> An array of type <see cref="T:System.IntPtr" /> that contains the native operating system handles. </param> <param name="waitAll">true to wait for all handles; false to wait for any handle. </param> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Threading.SynchronizationContext.WaitHelper(System.IntPtr[],System.Boolean,System.Int32)"> <summary> Helper function that waits for any or all the elements in the specified array to receive a signal. </summary> <returns> The array index of the object that satisfied the wait. </returns> <param name="waitHandles"> An array of type <see cref="T:System.IntPtr" /> that contains the native operating system handles. </param> <param name="waitAll">true to wait for all handles; false to wait for any handle. </param> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> </member> <member name="T:System.Threading.SynchronizationLockException"> <summary> The exception that is thrown when a method requires the caller to own the lock on a given Monitor, and the method is invoked by a caller that does not own that lock. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.SynchronizationLockException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with default properties. </summary> </member> <member name="M:System.Threading.SynchronizationLockException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.Threading.SynchronizationLockException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Threading.SynchronizationLockException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Threading.Thread"> <summary> Creates and controls a thread, sets its priority, and gets its status. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.#ctor(System.Threading.ParameterizedThreadStart)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Thread" /> class, specifying a delegate that allows an object to be passed to the thread when the thread is started. </summary> <param name="start"> A <see cref="T:System.Threading.ParameterizedThreadStart" /> delegate that represents the methods to be invoked when this thread begins executing. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="start" /> is null. </exception> </member> <member name="M:System.Threading.Thread.#ctor(System.Threading.ParameterizedThreadStart,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Thread" /> class, specifying a delegate that allows an object to be passed to the thread when the thread is started and specifying the maximum stack size for the thread. </summary> <param name="start"> A <see cref="T:System.Threading.ParameterizedThreadStart" /> delegate that represents the methods to be invoked when this thread begins executing. </param> <param name="maxStackSize"> The maximum stack size to be used by the thread, or 0 to use the default maximum stack size specified in the header for the executable. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="start" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="maxStackSize" /> is less than zero. </exception> </member> <member name="M:System.Threading.Thread.#ctor(System.Threading.ThreadStart)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Thread" /> class. </summary> <param name="start"> A <see cref="T:System.Threading.ThreadStart" /> delegate that represents the methods to be invoked when this thread begins executing. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="start" /> parameter is null. </exception> </member> <member name="M:System.Threading.Thread.#ctor(System.Threading.ThreadStart,System.Int32)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Thread" /> class, specifying the maximum stack size for the thread. </summary> <param name="start"> A <see cref="T:System.Threading.ThreadStart" /> delegate that represents the methods to be invoked when this thread begins executing. </param> <param name="maxStackSize"> The maximum stack size to be used by the thread, or 0 to use the default maximum stack size specified in the header for the executable. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="start" /> is null. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="maxStackSize" /> is less than zero. </exception> </member> <member name="M:System.Threading.Thread.Abort"> <summary> Raises a <see cref="T:System.Threading.ThreadAbortException" /> in the thread on which it is invoked, to begin the process of terminating the thread. Calling this method usually terminates the thread. </summary> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.Threading.ThreadStateException"> The thread that is being aborted is currently suspended. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="M:System.Threading.Thread.Abort(System.Object)"> <summary> Raises a <see cref="T:System.Threading.ThreadAbortException" /> in the thread on which it is invoked, to begin the process of terminating the thread while also providing exception information about the thread termination. Calling this method usually terminates the thread. </summary> <param name="stateInfo"> An object that contains application-specific information, such as state, which can be used by the thread being aborted. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.Threading.ThreadStateException"> The thread that is being aborted is currently suspended. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="M:System.Threading.Thread.AllocateDataSlot"> <summary> Allocates an unnamed data slot on all the threads. For better performance, use fields that are marked with the <see cref="T:System.ThreadStaticAttribute" /> attribute instead. </summary> <returns> A <see cref="T:System.LocalDataStoreSlot" />. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.AllocateNamedDataSlot(System.String)"> <summary> Allocates a named data slot on all threads. For better performance, use fields that are marked with the <see cref="T:System.ThreadStaticAttribute" /> attribute instead. </summary> <returns> A <see cref="T:System.LocalDataStoreSlot" />. </returns> <param name="name"> The name of the data slot to be allocated. </param> <exception cref="T:System.ArgumentException"> A named data slot with the specified name already exists. </exception> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.Thread.ApartmentState"> <summary> Gets or sets the apartment state of this thread. </summary> <returns> One of the <see cref="T:System.Threading.ApartmentState" /> values. The initial value is Unknown. </returns> <exception cref="T:System.ArgumentException"> An attempt is made to set this property to a state that is not a valid apartment state (a state other than single-threaded apartment (STA) or multithreaded apartment (MTA)). </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.BeginCriticalRegion"> <summary> Notifies a host that execution is about to enter a region of code in which the effects of a thread abort or unhandled exception might jeopardize other tasks in the application domain. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.BeginThreadAffinity"> <summary> Notifies a host that managed code is about to execute instructions that depend on the identity of the current physical operating system thread. </summary> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="P:System.Threading.Thread.CurrentContext"> <summary> Gets the current context in which the thread is executing. </summary> <returns> A <see cref="T:System.Runtime.Remoting.Contexts.Context" /> representing the current thread context. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" /> </PermissionSet> </member> <member name="P:System.Threading.Thread.CurrentCulture"> <summary> Gets or sets the culture for the current thread. </summary> <returns> A <see cref="T:System.Globalization.CultureInfo" /> representing the culture for the current thread. </returns> <exception cref="T:System.NotSupportedException"> The property is set to a neutral culture. Neutral cultures cannot be used in formatting and parsing and therefore cannot be set as the thread's current culture. </exception> <exception cref="T:System.ArgumentNullException"> The property is set to null. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="P:System.Threading.Thread.CurrentPrincipal"> <summary> Gets or sets the thread's current principal (for role-based security). </summary> <returns> An <see cref="T:System.Security.Principal.IPrincipal" /> value representing the security context. </returns> <exception cref="T:System.Security.SecurityException"> The caller does not have the permission required to set the principal. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlPrincipal" /> </PermissionSet> </member> <member name="P:System.Threading.Thread.CurrentThread"> <summary> Gets the currently running thread. </summary> <returns> A <see cref="T:System.Threading.Thread" /> that is the representation of the currently running thread. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Threading.Thread.CurrentUICulture"> <summary> Gets or sets the current culture used by the Resource Manager to look up culture-specific resources at run time. </summary> <returns> A <see cref="T:System.Globalization.CultureInfo" /> representing the current culture. </returns> <exception cref="T:System.ArgumentNullException"> The property is set to null. </exception> <exception cref="T:System.ArgumentException"> The property is set to a culture name that cannot be used to locate a resource file. Resource filenames must include only letters, numbers, hyphens or underscores. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> </PermissionSet> </member> <member name="M:System.Threading.Thread.EndCriticalRegion"> <summary> Notifies a host that execution is about to enter a region of code in which the effects of a thread abort or unhandled exception are limited to the current task. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.EndThreadAffinity"> <summary> Notifies a host that managed code has finished executing instructions that depend on the identity of the current physical operating system thread. </summary> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="P:System.Threading.Thread.ExecutionContext"> <summary> Gets an <see cref="T:System.Threading.ExecutionContext" /> object that contains information about the various contexts of the current thread. </summary> <returns> An <see cref="T:System.Threading.ExecutionContext" /> object that consolidates context information for the current thread. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.FreeNamedDataSlot(System.String)"> <summary> Eliminates the association between a name and a slot, for all threads in the process. For better performance, use fields that are marked with the <see cref="T:System.ThreadStaticAttribute" /> attribute instead. </summary> <param name="name"> The name of the data slot to be freed. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.GetApartmentState"> <summary> Returns an <see cref="T:System.Threading.ApartmentState" /> value indicating the apartment state. </summary> <returns> One of the <see cref="T:System.Threading.ApartmentState" /> values indicating the apartment state of the managed thread. The default is <see cref="F:System.Threading.ApartmentState.Unknown" />. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.GetCompressedStack"> <summary> Returns a <see cref="T:System.Threading.CompressedStack" /> object that can be used to capture the stack for the current thread. </summary> <returns> A <see cref="T:System.Threading.CompressedStack" /> object that can be used to capture the stack for the current thread. </returns> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="00000000000000000400000000000000" /> </PermissionSet> </member> <member name="M:System.Threading.Thread.GetData(System.LocalDataStoreSlot)"> <summary> Retrieves the value from the specified slot on the current thread, within the current thread's current domain. For better performance, use fields that are marked with the <see cref="T:System.ThreadStaticAttribute" /> attribute instead. </summary> <returns> The retrieved value. </returns> <param name="slot"> The <see cref="T:System.LocalDataStoreSlot" /> from which to get the value. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.GetDomain"> <summary> Returns the current domain in which the current thread is running. </summary> <returns> An <see cref="T:System.AppDomain" /> representing the current application domain of the running thread. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.GetDomainID"> <summary> Returns a unique application domain identifier. </summary> <returns> A 32-bit signed integer uniquely identifying the application domain. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.GetHashCode"> <summary> Returns a hash code for the current thread. </summary> <returns> An integer hash code value. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.GetNamedDataSlot(System.String)"> <summary> Looks up a named data slot. For better performance, use fields that are marked with the <see cref="T:System.ThreadStaticAttribute" /> attribute instead. </summary> <returns> A <see cref="T:System.LocalDataStoreSlot" /> allocated for this thread. </returns> <param name="name"> The name of the local data slot. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.Interrupt"> <summary> Interrupts a thread that is in the WaitSleepJoin thread state. </summary> <exception cref="T:System.Security.SecurityException"> The caller does not have the appropriate <see cref="T:System.Security.Permissions.SecurityPermission" />. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="P:System.Threading.Thread.IsAlive"> <summary> Gets a value indicating the execution status of the current thread. </summary> <returns>true if this thread has been started and has not terminated normally or aborted; otherwise, false. </returns> <filterpriority>1</filterpriority> </member> <member name="P:System.Threading.Thread.IsBackground"> <summary> Gets or sets a value indicating whether or not a thread is a background thread. </summary> <returns>true if this thread is or is to become a background thread; otherwise, false. </returns> <exception cref="T:System.Threading.ThreadStateException"> The thread is dead. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Threading.Thread.IsThreadPoolThread"> <summary> Gets a value indicating whether or not a thread belongs to the managed thread pool. </summary> <returns>true if this thread belongs to the managed thread pool; otherwise, false. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.Join"> <summary> Blocks the calling thread until a thread terminates, while continuing to perform standard COM and SendMessage pumping. </summary> <exception cref="T:System.Threading.ThreadStateException"> The caller attempted to join a thread that is in the <see cref="F:System.Threading.ThreadState.Unstarted" /> state. </exception> <exception cref="T:System.Threading.ThreadInterruptedException"> The thread is interrupted while waiting. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.Join(System.Int32)"> <summary> Blocks the calling thread until a thread terminates or the specified time elapses, while continuing to perform standard COM and SendMessage pumping. </summary> <returns>true if the thread has terminated; false if the thread has not terminated after the amount of time specified by the <paramref name="millisecondsTimeout" /> parameter has elapsed. </returns> <param name="millisecondsTimeout"> The number of milliseconds to wait for the thread to terminate. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The value of <paramref name="millisecondsTimeout" /> is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" /> in milliseconds. </exception> <exception cref="T:System.Threading.ThreadStateException"> The thread has not been started. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.Join(System.TimeSpan)"> <summary> Blocks the calling thread until a thread terminates or the specified time elapses, while continuing to perform standard COM and SendMessage pumping. </summary> <returns>true if the thread terminated; false if the thread has not terminated after the amount of time specified by the <paramref name="timeout" /> parameter has elapsed. </returns> <param name="timeout"> A <see cref="T:System.TimeSpan" /> set to the amount of time to wait for the thread to terminate. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The value of <paramref name="timeout" /> is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" /> in milliseconds, or is greater than <see cref="F:System.Int32.MaxValue" /> milliseconds. </exception> <exception cref="T:System.Threading.ThreadStateException"> The caller attempted to join a thread that is in the <see cref="F:System.Threading.ThreadState.Unstarted" /> state. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Threading.Thread.ManagedThreadId"> <summary> Gets a unique identifier for the current managed thread. </summary> <returns> An integer that represents a unique identifier for this managed thread. </returns> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.MemoryBarrier"> <summary> Synchronizes memory access as follows: The processor executing the current thread cannot reorder instructions in such a way that memory accesses prior to the call to <see cref="M:System.Threading.Thread.MemoryBarrier" /> execute after memory accesses that follow the call to <see cref="M:System.Threading.Thread.MemoryBarrier" />. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.Thread.Name"> <summary> Gets or sets the name of the thread. </summary> <returns> A string containing the name of the thread, or null if no name was set. </returns> <exception cref="T:System.InvalidOperationException"> A set operation was requested, and the Name property has already been set. </exception> <filterpriority>1</filterpriority> </member> <member name="P:System.Threading.Thread.Priority"> <summary> Gets or sets a value indicating the scheduling priority of a thread. </summary> <returns> One of the <see cref="T:System.Threading.ThreadPriority" /> values. The default value is Normal. </returns> <exception cref="T:System.Threading.ThreadStateException"> The thread has reached a final state, such as <see cref="F:System.Threading.ThreadState.Aborted" />. </exception> <exception cref="T:System.ArgumentException"> The value specified for a set operation is not a valid ThreadPriority value. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.ResetAbort"> <summary> Cancels an <see cref="M:System.Threading.Thread.Abort(System.Object)" /> requested for the current thread. </summary> <exception cref="T:System.Threading.ThreadStateException">Abort was not invoked on the current thread. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required security permission for the current thread. </exception> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="M:System.Threading.Thread.Resume"> <summary> Resumes a thread that has been suspended. </summary> <exception cref="T:System.Threading.ThreadStateException"> The thread has not been started, is dead, or is not in the suspended state. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the appropriate <see cref="T:System.Security.Permissions.SecurityPermission" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="M:System.Threading.Thread.SetApartmentState(System.Threading.ApartmentState)"> <summary> Sets the apartment state of a thread before it is started. </summary> <param name="state"> The new apartment state. </param> <exception cref="T:System.ArgumentException"> <paramref name="state" /> is not a valid apartment state. </exception> <exception cref="T:System.Threading.ThreadStateException"> The thread has already been started. </exception> <exception cref="T:System.InvalidOperationException"> The apartment state has already been initialized. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.SetCompressedStack(System.Threading.CompressedStack)"> <summary> Applies a captured <see cref="T:System.Threading.CompressedStack" /> to the current thread. </summary> <param name="stack"> The <see cref="T:System.Threading.CompressedStack" /> object to be applied to the current thread. </param> <filterpriority>2</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" /> <IPermission class="System.Security.Permissions.StrongNameIdentityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PublicKeyBlob="00000000000000000400000000000000" /> </PermissionSet> </member> <member name="M:System.Threading.Thread.SetData(System.LocalDataStoreSlot,System.Object)"> <summary> Sets the data in the specified slot on the currently running thread, for that thread's current domain. For better performance, use fields marked with the <see cref="T:System.ThreadStaticAttribute" /> attribute instead. </summary> <param name="slot"> The <see cref="T:System.LocalDataStoreSlot" /> in which to set the value. </param> <param name="data"> The value to be set. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.Sleep(System.Int32)"> <summary> Suspends the current thread for a specified time. </summary> <param name="millisecondsTimeout"> The number of milliseconds for which the thread is blocked. Specify zero (0) to indicate that this thread should be suspended to allow other waiting threads to execute. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to block the thread indefinitely. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The time-out value is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.Sleep(System.TimeSpan)"> <summary> Blocks the current thread for a specified time. </summary> <param name="timeout"> A <see cref="T:System.TimeSpan" /> set to the amount of time for which the thread is blocked. Specify zero to indicate that this thread should be suspended to allow other waiting threads to execute. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to block the thread indefinitely. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The value of <paramref name="timeout" /> is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" /> in milliseconds, or is greater than <see cref="F:System.Int32.MaxValue" /> milliseconds. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.SpinWait(System.Int32)"> <summary> Causes a thread to wait the number of times defined by the <paramref name="iterations" /> parameter. </summary> <param name="iterations"> A 32-bit signed integer that defines how long a thread is to wait. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.Start"> <summary> Causes the operating system to change the state of the current instance to <see cref="F:System.Threading.ThreadState.Running" />. </summary> <exception cref="T:System.Threading.ThreadStateException"> The thread has already been started. </exception> <exception cref="T:System.OutOfMemoryException"> There is not enough memory available to start this thread. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.Start(System.Object)"> <summary> Causes the operating system to change the state of the current instance to <see cref="F:System.Threading.ThreadState.Running" />, and optionally supplies an object containing data to be used by the method the thread executes. </summary> <param name="parameter"> An object that contains data to be used by the method the thread executes. </param> <exception cref="T:System.Threading.ThreadStateException"> The thread has already been started. </exception> <exception cref="T:System.OutOfMemoryException"> There is not enough memory available to start this thread. </exception> <exception cref="T:System.InvalidOperationException"> This thread was created using a <see cref="T:System.Threading.ThreadStart" /> delegate instead of a <see cref="T:System.Threading.ParameterizedThreadStart" /> delegate. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.Suspend"> <summary> Either suspends the thread, or if the thread is already suspended, has no effect. </summary> <exception cref="T:System.Threading.ThreadStateException"> The thread has not been started or is dead. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the appropriate <see cref="T:System.Security.Permissions.SecurityPermission" />. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="M:System.Threading.Thread.System#Runtime#InteropServices#_Thread#GetIDsOfNames(System.Guid@,System.IntPtr,System.UInt32,System.UInt32,System.IntPtr)"> <summary> Maps a set of names to a corresponding set of dispatch identifiers. </summary> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="rgszNames"> Passed-in array of names to be mapped. </param> <param name="cNames"> Count of the names to be mapped. </param> <param name="lcid"> The locale context in which to interpret the names. </param> <param name="rgDispId"> Caller-allocated array which receives the IDs corresponding to the names. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Threading.Thread.System#Runtime#InteropServices#_Thread#GetTypeInfo(System.UInt32,System.UInt32,System.IntPtr)"> <summary> Retrieves the type information for an object, which can then be used to get the type information for an interface. </summary> <param name="iTInfo"> The type information to return. </param> <param name="lcid"> The locale identifier for the type information. </param> <param name="ppTInfo"> Receives a pointer to the requested type information object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Threading.Thread.System#Runtime#InteropServices#_Thread#GetTypeInfoCount(System.UInt32@)"> <summary> Retrieves the number of type information interfaces that an object provides (either 0 or 1). </summary> <param name="pcTInfo"> Points to a location that receives the number of type information interfaces provided by the object. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="M:System.Threading.Thread.System#Runtime#InteropServices#_Thread#Invoke(System.UInt32,System.Guid@,System.UInt32,System.Int16,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"> <summary> Provides access to properties and methods exposed by an object. </summary> <param name="dispIdMember"> Identifies the member. </param> <param name="riid"> Reserved for future use. Must be IID_NULL. </param> <param name="lcid"> The locale context in which to interpret arguments. </param> <param name="wFlags"> Flags describing the context of the call. </param> <param name="pDispParams"> Pointer to a structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the arrays. </param> <param name="pVarResult"> Pointer to the location where the result is to be stored. </param> <param name="pExcepInfo"> Pointer to a structure that contains exception information. </param> <param name="puArgErr"> The index of the first argument that has an error. </param> <exception cref="T:System.NotImplementedException"> Late-bound access using the COM IDispatch interface is not supported. </exception> </member> <member name="P:System.Threading.Thread.ThreadState"> <summary> Gets a value containing the states of the current thread. </summary> <returns> One of the <see cref="T:System.Threading.ThreadState" /> values indicating the state of the current thread. The initial value is Unstarted. </returns> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Thread.TrySetApartmentState(System.Threading.ApartmentState)"> <summary> Sets the apartment state of a thread before it is started. </summary> <returns>true if the apartment state is set; otherwise, false. </returns> <param name="state"> The new apartment state. </param> <exception cref="T:System.ArgumentException"> <paramref name="state" /> is not a valid apartment state. </exception> <exception cref="T:System.Threading.ThreadStateException"> The thread has already been started. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.Byte@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.Double@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.Int16@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.Int32@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.Int64@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.IntPtr@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.Object@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.SByte@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.Single@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.UInt16@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.UInt32@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.UInt64@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileRead(System.UIntPtr@)"> <summary> Reads the value of a field. The value is the latest written by any processor in a computer, regardless of the number of processors or the state of processor cache. </summary> <returns> The latest value written to the field by any processor. </returns> <param name="address"> The field to be read. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.Byte@,System.Byte)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.Double@,System.Double)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.Int16@,System.Int16)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.Int32@,System.Int32)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.Int64@,System.Int64)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.IntPtr@,System.IntPtr)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.Object@,System.Object)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.SByte@,System.SByte)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.Single@,System.Single)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.UInt16@,System.UInt16)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.UInt32@,System.UInt32)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.UInt64@,System.UInt64)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Thread.VolatileWrite(System.UIntPtr@,System.UIntPtr)"> <summary> Writes a value to a field immediately, so that the value is visible to all processors in the computer. </summary> <param name="address"> The field to which the value is to be written. </param> <param name="value"> The value to be written. </param> <filterpriority>1</filterpriority> </member> <member name="T:System.Threading.ThreadAbortException"> <summary> The exception that is thrown when a call is made to the <see cref="M:System.Threading.Thread.Abort(System.Object)" /> method. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="P:System.Threading.ThreadAbortException.ExceptionState"> <summary> Gets an object that contains application-specific information related to the thread abort. </summary> <returns> An object containing application-specific information. </returns> <filterpriority>2</filterpriority> </member> <member name="T:System.Threading.ThreadInterruptedException"> <summary> The exception that is thrown when a <see cref="T:System.Threading.Thread" /> is interrupted while it is in a waiting state. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ThreadInterruptedException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Threading.ThreadInterruptedException" /> class with default properties. </summary> </member> <member name="M:System.Threading.ThreadInterruptedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.ThreadInterruptedException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.Threading.ThreadInterruptedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.ThreadInterruptedException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Threading.ThreadInterruptedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.ThreadInterruptedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Threading.ThreadPool"> <summary> Provides a pool of threads that can be used to post work items, process asynchronous I/O, wait on behalf of other threads, and process timers. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ThreadPool.BindHandle(System.IntPtr)"> <summary> Binds an operating system handle to the <see cref="T:System.Threading.ThreadPool" />. </summary> <returns>true if the handle is bound; otherwise, false. </returns> <param name="osHandle"> An <see cref="T:System.IntPtr" /> that holds the handle. The handle must have been opened for overlapped I/O on the unmanaged side. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ThreadPool.BindHandle(System.Runtime.InteropServices.SafeHandle)"> <summary> Binds an operating system handle to the <see cref="T:System.Threading.ThreadPool" />. </summary> <returns>true if the handle is bound; otherwise, false. </returns> <param name="osHandle"> A <see cref="T:System.Runtime.InteropServices.SafeHandle" /> that holds the operating system handle. The handle must have been opened for overlapped I/O on the unmanaged side. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="osHandle" /> is null. </exception> </member> <member name="M:System.Threading.ThreadPool.GetAvailableThreads(System.Int32@,System.Int32@)"> <summary> Retrieves the difference between the maximum number of thread pool threads returned by the <see cref="M:System.Threading.ThreadPool.GetMaxThreads(System.Int32@,System.Int32@)" /> method, and the number currently active. </summary> <param name="workerThreads"> The number of available worker threads. </param> <param name="completionPortThreads"> The number of available asynchronous I/O threads. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ThreadPool.GetMaxThreads(System.Int32@,System.Int32@)"> <summary> Retrieves the number of requests to the thread pool that can be active concurrently. All requests above that number remain queued until thread pool threads become available. </summary> <param name="workerThreads"> The maximum number of worker threads in the thread pool. </param> <param name="completionPortThreads"> The maximum number of asynchronous I/O threads in the thread pool. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ThreadPool.GetMinThreads(System.Int32@,System.Int32@)"> <summary> Retrieves the number of idle threads the thread pool maintains in anticipation of new requests. </summary> <param name="workerThreads"> The minimum number of idle worker threads currently maintained by the thread pool. </param> <param name="completionPortThreads"> The minimum number of idle asynchronous I/O threads currently maintained by the thread pool. </param> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ThreadPool.QueueUserWorkItem(System.Threading.WaitCallback)"> <summary> Queues a method for execution. The method executes when a thread pool thread becomes available. </summary> <returns>true if the method is successfully queued; <see cref="T:System.OutOfMemoryException" /> is thrown if the work item could not be queued. </returns> <param name="callBack"> A <see cref="T:System.Threading.WaitCallback" /> that represents the method to be executed. </param> <exception cref="T:System.ApplicationException"> An out-of-memory condition was encountered. </exception> <exception cref="T:System.OutOfMemoryException"> The work item could not be queued. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="callBack" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ThreadPool.QueueUserWorkItem(System.Threading.WaitCallback,System.Object)"> <summary> Queues a method for execution, and specifies an object containing data to be used by the method. The method executes when a thread pool thread becomes available. </summary> <returns>true if the method is successfully queued; <see cref="T:System.OutOfMemoryException" /> is thrown if the work item could not be queued. </returns> <param name="callBack"> A <see cref="T:System.Threading.WaitCallback" /> representing the method to execute. </param> <param name="state"> An object containing data to be used by the method. </param> <exception cref="T:System.ApplicationException"> An out-of-memory condition was encountered. </exception> <exception cref="T:System.OutOfMemoryException"> The work item could not be queued. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="callBack" /> is null. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.Int32,System.Boolean)"> <summary> Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a 32-bit signed integer for the time-out in milliseconds. </summary> <returns> The <see cref="T:System.Threading.RegisteredWaitHandle" /> that encapsulates the native handle. </returns> <param name="waitObject"> The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />. </param> <param name="callBack"> The <see cref="T:System.Threading.WaitOrTimerCallback" /> delegate to call when the <paramref name="waitObject" /> parameter is signaled. </param> <param name="state"> The object that is passed to the delegate. </param> <param name="millisecondsTimeOutInterval"> The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses. </param> <param name="executeOnlyOnce">true to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; false to indicate that the timer is reset every time the wait operation completes until the wait is unregistered. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="millisecondsTimeOutInterval" /> parameter is less than -1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.Int64,System.Boolean)"> <summary> Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a 64-bit signed integer for the time-out in milliseconds. </summary> <returns> The <see cref="T:System.Threading.RegisteredWaitHandle" /> that encapsulates the native handle. </returns> <param name="waitObject"> The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />. </param> <param name="callBack"> The <see cref="T:System.Threading.WaitOrTimerCallback" /> delegate to call when the <paramref name="waitObject" /> parameter is signaled. </param> <param name="state"> The object passed to the delegate. </param> <param name="millisecondsTimeOutInterval"> The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses. </param> <param name="executeOnlyOnce">true to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; false to indicate that the timer is reset every time the wait operation completes until the wait is unregistered. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="millisecondsTimeOutInterval" /> parameter is less than -1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.TimeSpan,System.Boolean)"> <summary> Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a <see cref="T:System.TimeSpan" /> value for the time-out. </summary> <returns> The <see cref="T:System.Threading.RegisteredWaitHandle" /> that encapsulates the native handle. </returns> <param name="waitObject"> The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />. </param> <param name="callBack"> The <see cref="T:System.Threading.WaitOrTimerCallback" /> delegate to call when the <paramref name="waitObject" /> parameter is signaled. </param> <param name="state"> The object passed to the delegate. </param> <param name="timeout"> The time-out represented by a <see cref="T:System.TimeSpan" />. If <paramref name="timeout" /> is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="timeout" /> is -1, the function's time-out interval never elapses. </param> <param name="executeOnlyOnce">true to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; false to indicate that the timer is reset every time the wait operation completes until the wait is unregistered. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="timeout" /> parameter is less than -1. </exception> <exception cref="T:System.NotSupportedException"> The <paramref name="timeout" /> parameter is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)"> <summary> Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a 32-bit unsigned integer for the time-out in milliseconds. </summary> <returns> The <see cref="T:System.Threading.RegisteredWaitHandle" /> that can be used to cancel the registered wait operation. </returns> <param name="waitObject"> The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />. </param> <param name="callBack"> The <see cref="T:System.Threading.WaitOrTimerCallback" /> delegate to call when the <paramref name="waitObject" /> parameter is signaled. </param> <param name="state"> The object passed to the delegate. </param> <param name="millisecondsTimeOutInterval"> The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses. </param> <param name="executeOnlyOnce">true to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; false to indicate that the timer is reset every time the wait operation completes until the wait is unregistered. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="millisecondsTimeOutInterval" /> parameter is less than -1. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.ThreadPool.SetMaxThreads(System.Int32,System.Int32)"> <summary> Sets the number of requests to the thread pool that can be active concurrently. All requests above that number remain queued until thread pool threads become available. </summary> <returns>true if the change is successful; otherwise, false. </returns> <param name="workerThreads"> The maximum number of worker threads in the thread pool. </param> <param name="completionPortThreads"> The maximum number of asynchronous I/O threads in the thread pool. </param> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="M:System.Threading.ThreadPool.SetMinThreads(System.Int32,System.Int32)"> <summary> Sets the number of idle threads the thread pool maintains in anticipation of new requests. </summary> <returns>true if the change is successful; otherwise, false. </returns> <param name="workerThreads"> The new minimum number of idle worker threads to be maintained by the thread pool. </param> <param name="completionPortThreads"> The new minimum number of idle asynchronous I/O threads to be maintained by the thread pool. </param> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlThread" /> </PermissionSet> </member> <member name="M:System.Threading.ThreadPool.UnsafeQueueNativeOverlapped(System.Threading.NativeOverlapped*)"> <summary> Queues an overlapped I/O operation for execution. </summary> <returns>true if the operation was successfully queued to an I/O completion port; otherwise, false. </returns> <param name="overlapped"> The <see cref="T:System.Threading.NativeOverlapped" /> structure to queue. </param> </member> <member name="M:System.Threading.ThreadPool.UnsafeQueueUserWorkItem(System.Threading.WaitCallback,System.Object)"> <summary> Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />. </summary> <returns>true if the method succeeds; <see cref="T:System.OutOfMemoryException" /> is thrown if the work item could not be queued. </returns> <param name="callBack"> A <see cref="T:System.Threading.WaitCallback" /> that represents the delegate to invoke when a thread in the thread pool picks up the work item. </param> <param name="state"> The object that is passed to the delegate when serviced from the thread pool. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <exception cref="T:System.ApplicationException"> An out-of-memory condition was encountered. </exception> <exception cref="T:System.OutOfMemoryException"> The work item could not be queued. </exception> <exception cref="T:System.ArgumentNullException"> <paramref name="callBack" /> is null. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Threading.ThreadPool.UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.Int32,System.Boolean)"> <summary> Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, using a 32-bit signed integer for the time-out in milliseconds. </summary> <returns> The <see cref="T:System.Threading.RegisteredWaitHandle" /> object that can be used to cancel the registered wait operation. </returns> <param name="waitObject"> The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />. </param> <param name="callBack"> The delegate to call when the <paramref name="waitObject" /> parameter is signaled. </param> <param name="state"> The object that is passed to the delegate. </param> <param name="millisecondsTimeOutInterval"> The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses. </param> <param name="executeOnlyOnce">true to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; false to indicate that the timer is reset every time the wait operation completes until the wait is unregistered. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="millisecondsTimeOutInterval" /> parameter is less than -1. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Threading.ThreadPool.UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.Int64,System.Boolean)"> <summary> Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a 64-bit signed integer for the time-out in milliseconds. </summary> <returns> The <see cref="T:System.Threading.RegisteredWaitHandle" /> object that can be used to cancel the registered wait operation. </returns> <param name="waitObject"> The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />. </param> <param name="callBack"> The delegate to call when the <paramref name="waitObject" /> parameter is signaled. </param> <param name="state"> The object that is passed to the delegate. </param> <param name="millisecondsTimeOutInterval"> The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses. </param> <param name="executeOnlyOnce">true to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; false to indicate that the timer is reset every time the wait operation completes until the wait is unregistered. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="millisecondsTimeOutInterval" /> parameter is less than -1. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Threading.ThreadPool.UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.TimeSpan,System.Boolean)"> <summary> Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a <see cref="T:System.TimeSpan" /> value for the time-out. </summary> <returns> The <see cref="T:System.Threading.RegisteredWaitHandle" /> object that can be used to cancel the registered wait operation. </returns> <param name="waitObject"> The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />. </param> <param name="callBack"> The delegate to call when the <paramref name="waitObject" /> parameter is signaled. </param> <param name="state"> The object that is passed to the delegate. </param> <param name="timeout"> The time-out represented by a <see cref="T:System.TimeSpan" />. If <paramref name="timeout" /> is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="timeout" /> is -1, the function's time-out interval never elapses. </param> <param name="executeOnlyOnce">true to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; false to indicate that the timer is reset every time the wait operation completes until the wait is unregistered. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="timeout" /> parameter is less than -1. </exception> <exception cref="T:System.NotSupportedException"> The <paramref name="timeout" /> parameter is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="M:System.Threading.ThreadPool.UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)"> <summary> Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a 32-bit unsigned integer for the time-out in milliseconds. </summary> <returns> The <see cref="T:System.Threading.RegisteredWaitHandle" /> object that can be used to cancel the registered wait operation. </returns> <param name="waitObject"> The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />. </param> <param name="callBack"> The delegate to call when the <paramref name="waitObject" /> parameter is signaled. </param> <param name="state"> The object that is passed to the delegate. </param> <param name="millisecondsTimeOutInterval"> The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses. </param> <param name="executeOnlyOnce">true to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; false to indicate that the timer is reset every time the wait operation completes until the wait is unregistered. </param> <exception cref="T:System.Security.SecurityException"> The caller does not have the required permission. </exception> <filterpriority>1</filterpriority> <PermissionSet> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence, ControlPolicy" /> </PermissionSet> </member> <member name="T:System.Threading.ThreadPriority"> <summary> Specifies the scheduling priority of a <see cref="T:System.Threading.Thread" />. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Threading.ThreadPriority.Lowest"> <summary> The <see cref="T:System.Threading.Thread" /> can be scheduled after threads with any other priority. </summary> </member> <member name="F:System.Threading.ThreadPriority.BelowNormal"> <summary> The <see cref="T:System.Threading.Thread" /> can be scheduled after threads with Normal priority and before those with Lowest priority. </summary> </member> <member name="F:System.Threading.ThreadPriority.Normal"> <summary> The <see cref="T:System.Threading.Thread" /> can be scheduled after threads with AboveNormal priority and before those with BelowNormal priority. Threads have Normal priority by default. </summary> </member> <member name="F:System.Threading.ThreadPriority.AboveNormal"> <summary> The <see cref="T:System.Threading.Thread" /> can be scheduled after threads with Highest priority and before those with Normal priority. </summary> </member> <member name="F:System.Threading.ThreadPriority.Highest"> <summary> The <see cref="T:System.Threading.Thread" /> can be scheduled before threads with any other priority. </summary> </member> <member name="T:System.Threading.ThreadStart"> <summary> Represents the method that executes on a <see cref="T:System.Threading.Thread" />. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.Threading.ThreadStartException"> <summary> The exception that is thrown when a failure occurs in a managed thread after the underlying operating system thread has been started, but before the thread is ready to execute user code. </summary> </member> <member name="T:System.Threading.ThreadState"> <summary> Specifies the execution states of a <see cref="T:System.Threading.Thread" />. </summary> <filterpriority>1</filterpriority> </member> <member name="F:System.Threading.ThreadState.Running"> <summary> The thread has been started, it is not blocked, and there is no pending <see cref="T:System.Threading.ThreadAbortException" />. </summary> </member> <member name="F:System.Threading.ThreadState.StopRequested"> <summary> The thread is being requested to stop. This is for internal use only. </summary> </member> <member name="F:System.Threading.ThreadState.SuspendRequested"> <summary> The thread is being requested to suspend. </summary> </member> <member name="F:System.Threading.ThreadState.Background"> <summary> The thread is being executed as a background thread, as opposed to a foreground thread. This state is controlled by setting the <see cref="P:System.Threading.Thread.IsBackground" /> property. </summary> </member> <member name="F:System.Threading.ThreadState.Unstarted"> <summary> The <see cref="M:System.Threading.Thread.Start" /> method has not been invoked on the thread. </summary> </member> <member name="F:System.Threading.ThreadState.Stopped"> <summary> The thread has stopped. </summary> </member> <member name="F:System.Threading.ThreadState.WaitSleepJoin"> <summary> The thread is blocked. This could be the result of calling <see cref="M:System.Threading.Thread.Sleep(System.Int32)" /> or <see cref="M:System.Threading.Thread.Join" />, of requesting a lock — for example, by calling <see cref="M:System.Threading.Monitor.Enter(System.Object)" /> or <see cref="M:System.Threading.Monitor.Wait(System.Object,System.Int32,System.Boolean)" /> — or of waiting on a thread synchronization object such as <see cref="T:System.Threading.ManualResetEvent" />. </summary> </member> <member name="F:System.Threading.ThreadState.Suspended"> <summary> The thread has been suspended. </summary> </member> <member name="F:System.Threading.ThreadState.AbortRequested"> <summary> The <see cref="M:System.Threading.Thread.Abort(System.Object)" /> method has been invoked on the thread, but the thread has not yet received the pending <see cref="T:System.Threading.ThreadAbortException" /> that will attempt to terminate it. </summary> </member> <member name="F:System.Threading.ThreadState.Aborted"> <summary> The thread state includes <see cref="F:System.Threading.ThreadState.AbortRequested" /> and the thread is now dead, but its state has not yet changed to <see cref="F:System.Threading.ThreadState.Stopped" />. </summary> </member> <member name="T:System.Threading.ThreadStateException"> <summary> The exception that is thrown when a <see cref="T:System.Threading.Thread" /> is in an invalid <see cref="P:System.Threading.Thread.ThreadState" /> for the method call. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.ThreadStateException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Threading.ThreadStateException" /> class with default properties. </summary> </member> <member name="M:System.Threading.ThreadStateException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.ThreadStateException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param> </member> <member name="M:System.Threading.ThreadStateException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.ThreadStateException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Threading.ThreadStateException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.ThreadStateException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Threading.Timeout"> <summary> Contains a constant used to specify an infinite amount of time. This class cannot be inherited. </summary> <filterpriority>2</filterpriority> </member> <member name="F:System.Threading.Timeout.Infinite"> <summary> A constant used to specify an infinite waiting period. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.Threading.Timer"> <summary> Provides a mechanism for executing a method at specified intervals. This class cannot be inherited. </summary> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.Timer.#ctor(System.Threading.TimerCallback)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.Timer" /> class with an infinite period and an infinite due time, using the newly created <see cref="T:System.Threading.Timer" /> object as the state object. </summary> <param name="callback"> A <see cref="T:System.Threading.TimerCallback" /> delegate representing a method to be executed. </param> </member> <member name="M:System.Threading.Timer.#ctor(System.Threading.TimerCallback,System.Object,System.Int32,System.Int32)"> <summary> Initializes a new instance of the Timer class, using a 32-bit signed integer to specify the time interval. </summary> <param name="callback"> A <see cref="T:System.Threading.TimerCallback" /> delegate representing a method to be executed. </param> <param name="state"> An object containing information to be used by the callback method, or null. </param> <param name="dueTime"> The amount of time to delay before <paramref name="callback" /> is invoked, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to prevent the timer from starting. Specify zero (0) to start the timer immediately. </param> <param name="period"> The time interval between invocations of <paramref name="callback" />, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to disable periodic signaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="dueTime" /> or <paramref name="period" /> parameter is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="callback" /> parameter is null. </exception> </member> <member name="M:System.Threading.Timer.#ctor(System.Threading.TimerCallback,System.Object,System.Int64,System.Int64)"> <summary> Initializes a new instance of the Timer class, using 64-bit signed integers to measure time intervals. </summary> <param name="callback"> A <see cref="T:System.Threading.TimerCallback" /> delegate representing a method to be executed. </param> <param name="state"> An object containing information to be used by the callback method, or null. </param> <param name="dueTime"> The amount of time to delay before <paramref name="callback" /> is invoked, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to prevent the timer from starting. Specify zero (0) to start the timer immediately. </param> <param name="period"> The time interval between invocations of <paramref name="callback" />, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to disable periodic signaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="dueTime" /> or <paramref name="period" /> parameter is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />. </exception> <exception cref="T:System.NotSupportedException"> The <paramref name="dueTime" /> or <paramref name="period" /> parameter is greater than 4294967294. </exception> </member> <member name="M:System.Threading.Timer.#ctor(System.Threading.TimerCallback,System.Object,System.TimeSpan,System.TimeSpan)"> <summary> Initializes a new instance of the Timer class, using <see cref="T:System.TimeSpan" /> values to measure time intervals. </summary> <param name="callback"> A <see cref="T:System.Threading.TimerCallback" /> delegate representing a method to be executed. </param> <param name="state"> An object containing information to be used by the callback method, or null. </param> <param name="dueTime"> The <see cref="T:System.TimeSpan" /> representing the amount of time to delay before the <paramref name="callback" /> parameter invokes its methods. Specify negative one (-1) milliseconds to prevent the timer from starting. Specify zero (0) to start the timer immediately. </param> <param name="period"> The time interval between invocations of the methods referenced by <paramref name="callback" />. Specify negative one (-1) milliseconds to disable periodic signaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The number of milliseconds in the value of <paramref name="dueTime" /> or <paramref name="period" /> is negative and not equal to <see cref="F:System.Threading.Timeout.Infinite" />, or is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="callback" /> parameter is null. </exception> </member> <member name="M:System.Threading.Timer.#ctor(System.Threading.TimerCallback,System.Object,System.UInt32,System.UInt32)"> <summary> Initializes a new instance of the Timer class, using 32-bit unsigned integers to measure time intervals. </summary> <param name="callback"> A <see cref="T:System.Threading.TimerCallback" /> delegate representing a method to be executed. </param> <param name="state"> An object containing information to be used by the callback method, or null. </param> <param name="dueTime"> The amount of time to delay before <paramref name="callback" /> is invoked, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to prevent the timer from starting. Specify zero (0) to start the timer immediately. </param> <param name="period"> The time interval between invocations of <paramref name="callback" />, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to disable periodic signaling. </param> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="dueTime" /> or <paramref name="period" /> parameter is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />. </exception> <exception cref="T:System.ArgumentNullException"> The <paramref name="callback" /> parameter is null. </exception> </member> <member name="M:System.Threading.Timer.Change(System.Int32,System.Int32)"> <summary> Changes the start time and the interval between method invocations for a timer, using 32-bit signed integers to measure time intervals. </summary> <returns>true if the current instance has not been disposed; otherwise, false. </returns> <param name="dueTime"> The amount of time to delay before the invoking the callback method specified when the <see cref="T:System.Threading.Timer" /> was constructed, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to prevent the timer from restarting. Specify zero (0) to restart the timer immediately. </param> <param name="period"> The time interval between invocations of the callback method specified when the <see cref="T:System.Threading.Timer" /> was constructed, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to disable periodic signaling. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.Threading.Timer" /> has already been disposed. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="dueTime" /> or <paramref name="period" /> parameter is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Timer.Change(System.Int64,System.Int64)"> <summary> Changes the start time and the interval between method invocations for a timer, using 64-bit signed integers to measure time intervals. </summary> <returns>true if the current instance has not been disposed; otherwise, false. </returns> <param name="dueTime"> The amount of time to delay before the invoking the callback method specified when the <see cref="T:System.Threading.Timer" /> was constructed, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to prevent the timer from restarting. Specify zero (0) to restart the timer immediately. </param> <param name="period"> The time interval between invocations of the callback method specified when the <see cref="T:System.Threading.Timer" /> was constructed, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to disable periodic signaling. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.Threading.Timer" /> has already been disposed. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="dueTime" /> or <paramref name="period" /> parameter is less than -1. </exception> <exception cref="T:System.NotSupportedException"> The <paramref name="dueTime" /> or <paramref name="period" /> parameter is greater than 4294967294. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Timer.Change(System.TimeSpan,System.TimeSpan)"> <summary> Changes the start time and the interval between method invocations for a timer, using <see cref="T:System.TimeSpan" /> values to measure time intervals. </summary> <returns>true if the current instance has not been disposed; otherwise, false. </returns> <param name="dueTime"> A <see cref="T:System.TimeSpan" /> representing the amount of time to delay before invoking the callback method specified when the <see cref="T:System.Threading.Timer" /> was constructed. Specify negative one (-1) milliseconds to prevent the timer from restarting. Specify zero (0) to restart the timer immediately. </param> <param name="period"> The time interval between invocations of the callback method specified when the <see cref="T:System.Threading.Timer" /> was constructed. Specify negative one (-1) milliseconds to disable periodic signaling. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.Threading.Timer" /> has already been disposed. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> The <paramref name="dueTime" /> or <paramref name="period" /> parameter, in milliseconds, is less than -1. </exception> <exception cref="T:System.NotSupportedException"> The <paramref name="dueTime" /> or <paramref name="period" /> parameter, in milliseconds, is greater than 4294967294. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Timer.Change(System.UInt32,System.UInt32)"> <summary> Changes the start time and the interval between method invocations for a timer, using 32-bit unsigned integers to measure time intervals. </summary> <returns>true if the current instance has not been disposed; otherwise, false. </returns> <param name="dueTime"> The amount of time to delay before the invoking the callback method specified when the <see cref="T:System.Threading.Timer" /> was constructed, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to prevent the timer from restarting. Specify zero (0) to restart the timer immediately. </param> <param name="period"> The time interval between invocations of the callback method specified when the <see cref="T:System.Threading.Timer" /> was constructed, in milliseconds. Specify <see cref="F:System.Threading.Timeout.Infinite" /> to disable periodic signaling. </param> <exception cref="T:System.ObjectDisposedException"> The <see cref="T:System.Threading.Timer" /> has already been disposed. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Timer.Dispose"> <summary> Releases all resources used by the current instance of <see cref="T:System.Threading.Timer" />. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.Timer.Dispose(System.Threading.WaitHandle)"> <summary> Releases all resources used by the current instance of <see cref="T:System.Threading.Timer" /> and signals when the timer has been disposed of. </summary> <returns>true if the function succeeds; otherwise, false. </returns> <param name="notifyObject"> The <see cref="T:System.Threading.WaitHandle" /> to be signaled when the Timer has been disposed of. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="notifyObject" /> parameter is null. </exception> <filterpriority>2</filterpriority> </member> <member name="T:System.Threading.TimerCallback"> <summary> Represents the method that handles calls from a <see cref="T:System.Threading.Timer" />. </summary> <param name="state"> An object containing application-specific information relevant to the method invoked by this delegate, or null. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.Threading.WaitCallback"> <summary> Represents a callback method to be executed by a thread pool thread. </summary> <param name="state"> An object containing information to be used by the callback method. </param> <filterpriority>2</filterpriority> </member> <member name="T:System.Threading.WaitHandle"> <summary> Encapsulates operating system–specific objects that wait for exclusive access to shared resources. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.WaitHandle.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Threading.WaitHandle" /> class. </summary> </member> <member name="M:System.Threading.WaitHandle.Close"> <summary> When overridden in a derived class, releases all resources held by the current <see cref="T:System.Threading.WaitHandle" />. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.WaitHandle.Dispose(System.Boolean)"> <summary> When overridden in a derived class, releases the unmanaged resources used by the <see cref="T:System.Threading.WaitHandle" />, and optionally releases the managed resources. </summary> <param name="explicitDisposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param> </member> <member name="P:System.Threading.WaitHandle.Handle"> <summary> Gets or sets the native operating system handle. </summary> <returns> An IntPtr representing the native operating system handle. The default is the value of the <see cref="F:System.Threading.WaitHandle.InvalidHandle" /> field. </returns> <filterpriority>2</filterpriority> </member> <member name="F:System.Threading.WaitHandle.InvalidHandle"> <summary> Represents an invalid native operating system handle. This field is read-only. </summary> </member> <member name="P:System.Threading.WaitHandle.SafeWaitHandle"> <summary> Gets or sets the native operating system handle. </summary> <returns> A <see cref="T:Microsoft.Win32.SafeHandles.SafeWaitHandle" /> representing the native operating system handle. </returns> </member> <member name="M:System.Threading.WaitHandle.SignalAndWait(System.Threading.WaitHandle,System.Threading.WaitHandle)"> <summary> Signals one <see cref="T:System.Threading.WaitHandle" /> and waits on another, as an atomic operation. </summary> <returns>true if both the signal and the wait complete successfully; if the wait does not complete, the method does not return. </returns> <param name="toSignal"> The <see cref="T:System.Threading.WaitHandle" /> to signal. </param> <param name="toWaitOn"> The <see cref="T:System.Threading.WaitHandle" /> to wait on. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="toSignal" /> is null. -or- <paramref name="toWaitOn" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The method was called on a thread that has <see cref="T:System.STAThreadAttribute" />. </exception> <exception cref="T:System.PlatformNotSupportedException"> This method is not supported on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="toSignal" /> is a semaphore, and it already has a full count. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.WaitHandle.SignalAndWait(System.Threading.WaitHandle,System.Threading.WaitHandle,System.Int32,System.Boolean)"> <summary> Signals one <see cref="T:System.Threading.WaitHandle" /> and waits on another, as an atomic operation, specifying a time-out interval as a 32-bit signed integer and specifying whether to exit the synchronization domain for the context before entering the wait. </summary> <returns>true if both the signal and the wait completed successfully, or false if the signal completed but the wait timed out. </returns> <param name="toSignal"> The <see cref="T:System.Threading.WaitHandle" /> to signal. </param> <param name="toWaitOn"> The <see cref="T:System.Threading.WaitHandle" /> to wait on. </param> <param name="millisecondsTimeout"> An integer that represents the interval to wait. If the value is <see cref="F:System.Threading.Timeout.Infinite" />, that is, -1, the wait is infinite. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="toSignal" /> is null. -or- <paramref name="toWaitOn" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The method is called on a thread that has <see cref="T:System.STAThreadAttribute" />. </exception> <exception cref="T:System.PlatformNotSupportedException"> This method is not supported on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="toSignal" /> is a semaphore, and it already has a full count. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The <see cref="T:System.Threading.WaitHandle" /> cannot be signaled because it would exceed its maximum count. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.WaitHandle.SignalAndWait(System.Threading.WaitHandle,System.Threading.WaitHandle,System.TimeSpan,System.Boolean)"> <summary> Signals one <see cref="T:System.Threading.WaitHandle" /> and waits on another, as an atomic operation, specifying the time-out interval as a <see cref="T:System.TimeSpan" /> and specifying whether to exit the synchronization domain for the context before entering the wait. </summary> <returns>true if both the signal and the wait completed successfully, or false if the signal completed but the wait timed out. </returns> <param name="toSignal"> The <see cref="T:System.Threading.WaitHandle" /> to signal. </param> <param name="toWaitOn"> The <see cref="T:System.Threading.WaitHandle" /> to wait on. </param> <param name="timeout"> A <see cref="T:System.TimeSpan" /> that represents the interval to wait. If the value is -1, the wait is infinite. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> <paramref name="toSignal" /> is null. -or- <paramref name="toWaitOn" /> is null. </exception> <exception cref="T:System.NotSupportedException"> The method was called on a thread that has <see cref="T:System.STAThreadAttribute" />. </exception> <exception cref="T:System.PlatformNotSupportedException"> This method is not supported on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> <paramref name="toSignal" /> is a semaphore, and it already has a full count. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="timeout" /> evaluates to a negative number of milliseconds other than -1. -or- <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.WaitHandle.System#IDisposable#Dispose"> <summary> Releases all resources used by the <see cref="T:System.Threading.WaitHandle" />. </summary> </member> <member name="M:System.Threading.WaitHandle.WaitAll(System.Threading.WaitHandle[])"> <summary> Waits for all the elements in the specified array to receive a signal. </summary> <returns>true when every element in <paramref name="waitHandles" /> has received a signal; otherwise the method never returns. </returns> <param name="waitHandles"> A WaitHandle array containing the objects for which the current instance will wait. This array cannot contain multiple references to the same object. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="waitHandles" /> parameter is null. -or- One or more of the objects in the <paramref name="waitHandles" /> array are null. -or- <paramref name="waitHandles" /> is an array with no elements and the .NET Framework version is 2.0. </exception> <exception cref="T:System.DuplicateWaitObjectException"> The <paramref name="waitHandles" /> array contains elements that are duplicates. </exception> <exception cref="T:System.NotSupportedException"> The number of objects in <paramref name="waitHandles" /> is greater than the system permits. -or- The <see cref="T:System.STAThreadAttribute" /> attribute is applied to the thread procedure for the current thread, and <paramref name="waitHandles" /> contains more than one element. </exception> <exception cref="T:System.ApplicationException"> <paramref name="waitHandles" /> is an array with no elements and the .NET Framework version is 1.0 or 1.1. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait terminated because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="waitHandles" /> array contains a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.WaitHandle.WaitAll(System.Threading.WaitHandle[],System.Int32,System.Boolean)"> <summary> Waits for all the elements in the specified array to receive a signal, using an <see cref="T:System.Int32" /> value to measure the time interval and specifying whether to exit the synchronization domain before the wait. </summary> <returns>true when every element in <paramref name="waitHandles" /> has received a signal; otherwise false. </returns> <param name="waitHandles"> A WaitHandle array containing the objects for which the current instance will wait. This array cannot contain multiple references to the same object (duplicates). </param> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="waitHandles" /> parameter is null. -or- One or more of the objects in the <paramref name="waitHandles" /> array is null. -or- <paramref name="waitHandles" /> is an array with no elements and the .NET Framework version is 2.0. </exception> <exception cref="T:System.DuplicateWaitObjectException"> The <paramref name="waitHandles" /> array contains elements that are duplicates. </exception> <exception cref="T:System.NotSupportedException"> The number of objects in <paramref name="waitHandles" /> is greater than the system permits. -or- The <see cref="T:System.STAThreadAttribute" /> attribute is applied to the thread procedure for the current thread, and <paramref name="waitHandles" /> contains more than one element. </exception> <exception cref="T:System.ApplicationException"> <paramref name="waitHandles" /> is an array with no elements and the .NET Framework version is 1.0 or 1.1. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="waitHandles" /> array contains a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.WaitHandle.WaitAll(System.Threading.WaitHandle[],System.TimeSpan,System.Boolean)"> <summary> Waits for all the elements in the specified array to receive a signal, using a <see cref="T:System.TimeSpan" /> value to measure the time interval, and specifying whether to exit the synchronization domain before the wait. </summary> <returns>true when every element in <paramref name="waitHandles" /> has received a signal; otherwise false. </returns> <param name="waitHandles"> A WaitHandle array containing the objects for which the current instance will wait. This array cannot contain multiple references to the same object. </param> <param name="timeout"> A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds, to wait indefinitely. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="waitHandles" /> parameter is null. -or- One or more of the objects in the <paramref name="waitHandles" /> array is null. -or- <paramref name="waitHandles" /> is an array with no elements and the .NET Framework version is 2.0. </exception> <exception cref="T:System.DuplicateWaitObjectException"> The <paramref name="waitHandles" /> array contains elements that are duplicates. </exception> <exception cref="T:System.NotSupportedException"> The number of objects in <paramref name="waitHandles" /> is greater than the system permits. -or- The <see cref="T:System.STAThreadAttribute" /> attribute is applied to the thread procedure for the current thread, and <paramref name="waitHandles" /> contains more than one element. </exception> <exception cref="T:System.ApplicationException"> <paramref name="waitHandles" /> is an array with no elements and the .NET Framework version is 1.0 or 1.1. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out. -or- <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait terminated because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="waitHandles" /> array contains a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.WaitHandle.WaitAny(System.Threading.WaitHandle[])"> <summary> Waits for any of the elements in the specified array to receive a signal. </summary> <returns> The array index of the object that satisfied the wait. </returns> <param name="waitHandles"> A WaitHandle array containing the objects for which the current instance will wait. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="waitHandles" /> parameter is null. -or- One or more of the objects in the <paramref name="waitHandles" /> array is null. </exception> <exception cref="T:System.NotSupportedException"> The number of objects in <paramref name="waitHandles" /> is greater than the system permits. </exception> <exception cref="T:System.ApplicationException"> <paramref name="waitHandles" /> is an array with no elements, and the .NET Framework version is 1.0 or 1.1. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.ArgumentException"> <paramref name="waitHandles" /> is an array with no elements, and the .NET Framework version is 2.0. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="waitHandles" /> array contains a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.WaitHandle.WaitAny(System.Threading.WaitHandle[],System.Int32,System.Boolean)"> <summary> Waits for any of the elements in the specified array to receive a signal, using a 32-bit signed integer to measure the time interval, and specifying whether to exit the synchronization domain before the wait. </summary> <returns> The array index of the object that satisfied the wait, or <see cref="F:System.Threading.WaitHandle.WaitTimeout" /> if no object satisfied the wait and a time interval equivalent to <paramref name="millisecondsTimeout" /> has passed. </returns> <param name="waitHandles"> A WaitHandle array containing the objects for which the current instance will wait. </param> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="waitHandles" /> parameter is null. -or- One or more of the objects in the <paramref name="waitHandles" /> array is null. </exception> <exception cref="T:System.NotSupportedException"> The number of objects in <paramref name="waitHandles" /> is greater than the system permits. </exception> <exception cref="T:System.ApplicationException"> <paramref name="waitHandles" /> is an array with no elements, and the .NET Framework version is 1.0 or 1.1. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.ArgumentException"> <paramref name="waitHandles" /> is an array with no elements, and the .NET Framework version is 2.0. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="waitHandles" /> array contains a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.WaitHandle.WaitAny(System.Threading.WaitHandle[],System.TimeSpan,System.Boolean)"> <summary> Waits for any of the elements in the specified array to receive a signal, using a <see cref="T:System.TimeSpan" /> to measure the time interval and specifying whether to exit the synchronization domain before the wait. </summary> <returns> The array index of the object that satisfied the wait, or <see cref="F:System.Threading.WaitHandle.WaitTimeout" /> if no object satisfied the wait and a time interval equivalent to <paramref name="timeout" /> has passed. </returns> <param name="waitHandles"> A WaitHandle array containing the objects for which the current instance will wait. </param> <param name="timeout"> A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="waitHandles" /> parameter is null. -or- One or more of the objects in the <paramref name="waitHandles" /> array is null. </exception> <exception cref="T:System.NotSupportedException"> The number of objects in <paramref name="waitHandles" /> is greater than the system permits. </exception> <exception cref="T:System.ApplicationException"> <paramref name="waitHandles" /> is an array with no elements, and the .NET Framework version is 1.0 or 1.1. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out. -or- <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.ArgumentException"> <paramref name="waitHandles" /> is an array with no elements, and the .NET Framework version is 2.0. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="waitHandles" /> array contains a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> <filterpriority>1</filterpriority> </member> <member name="M:System.Threading.WaitHandle.WaitOne"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.WaitHandle" /> receives a signal. </summary> <returns>true if the current instance receives a signal. If the current instance is never signaled, <see cref="M:System.Threading.WaitHandle.WaitOne(System.Int32,System.Boolean)" /> never returns. </returns> <exception cref="T:System.ObjectDisposedException"> The current instance has already been disposed. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The current instance is a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.WaitHandle.WaitOne(System.Int32,System.Boolean)"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.WaitHandle" /> receives a signal, using 32-bit signed integer to measure the time interval and specifying whether to exit the synchronization domain before the wait. </summary> <returns>true if the current instance receives a signal; otherwise, false. </returns> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> <exception cref="T:System.ObjectDisposedException"> The current instance has already been disposed. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The current instance is a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.WaitHandle.WaitOne(System.TimeSpan,System.Boolean)"> <summary> Blocks the current thread until the current instance receives a signal, using a <see cref="T:System.TimeSpan" /> to measure the time interval and specifying whether to exit the synchronization domain before the wait. </summary> <returns>true if the current instance receives a signal; otherwise, false. </returns> <param name="timeout"> A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> <exception cref="T:System.ObjectDisposedException"> The current instance has already been disposed. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out. -or- <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The current instance is a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> <filterpriority>2</filterpriority> </member> <member name="F:System.Threading.WaitHandle.WaitTimeout"> <summary> Indicates that a <see cref="M:System.Threading.WaitHandle.WaitAny(System.Threading.WaitHandle[],System.Int32,System.Boolean)" /> operation timed out before any of the wait handles were signaled. This field is constant. </summary> <filterpriority>1</filterpriority> </member> <member name="T:System.Threading.WaitHandleCannotBeOpenedException"> <summary> The exception that is thrown when an attempt is made to open a system mutex or semaphore that does not exist. </summary> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.WaitHandleCannotBeOpenedException.#ctor"> <summary> Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with default values. </summary> </member> <member name="M:System.Threading.WaitHandleCannotBeOpenedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with serialized data. </summary> <param name="info"> The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown. </param> <param name="context"> The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination. </param> </member> <member name="M:System.Threading.WaitHandleCannotBeOpenedException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with a specified error message. </summary> <param name="message"> The error message that explains the reason for the exception. </param> </member> <member name="M:System.Threading.WaitHandleCannotBeOpenedException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message"> The error message that explains the reason for the exception. </param> <param name="innerException"> The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param> </member> <member name="T:System.Threading.WaitOrTimerCallback"> <summary> Represents a method to be called when a <see cref="T:System.Threading.WaitHandle" /> is signaled or times out. </summary> <param name="state"> An object containing information to be used by the callback method each time it executes. </param> <param name="timedOut">true if the <see cref="T:System.Threading.WaitHandle" /> timed out; false if it was signaled. </param> <filterpriority>2</filterpriority> </member> <member name="M:System.Threading.WaitHandle.WaitAll(System.Threading.WaitHandle[],System.Int32)"> <summary> Waits for all the elements in the specified array to receive a signal, using an <see cref="T:System.Int32" /> value to measure the time interval. </summary> <returns>true when every element in <paramref name="waitHandles" /> has received a signal; otherwise false. </returns> <param name="waitHandles"> A WaitHandle array containing the objects for which the current instance will wait. This array cannot contain multiple references to the same object (duplicates). </param> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="waitHandles" /> parameter is null. -or- One or more of the objects in the <paramref name="waitHandles" /> array is null. -or- <paramref name="waitHandles" /> is an array with no elements. </exception> <exception cref="T:System.DuplicateWaitObjectException"> The <paramref name="waitHandles" /> array contains elements that are duplicates. </exception> <exception cref="T:System.NotSupportedException"> The number of objects in <paramref name="waitHandles" /> is greater than the system permits. -or- The <see cref="T:System.STAThreadAttribute" /> attribute is applied to the thread procedure for the current thread, and <paramref name="waitHandles" /> contains more than one element. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="waitHandles" /> array contains a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> </member> <member name="M:System.Threading.WaitHandle.WaitAll(System.Threading.WaitHandle[],System.TimeSpan)"> <summary> Waits for all the elements in the specified array to receive a signal, using a <see cref="T:System.TimeSpan" /> value to measure the time interval. </summary> <returns>true when every element in <paramref name="waitHandles" /> has received a signal; otherwise false. </returns> <param name="waitHandles"> A WaitHandle array containing the objects for which the current instance will wait. This array cannot contain multiple references to the same object. </param> <param name="timeout"> A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds, to wait indefinitely. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="waitHandles" /> parameter is null. -or- One or more of the objects in the <paramref name="waitHandles" /> array is null. -or- <paramref name="waitHandles" /> is an array with no elements. </exception> <exception cref="T:System.DuplicateWaitObjectException"> The <paramref name="waitHandles" /> array contains elements that are duplicates. </exception> <exception cref="T:System.NotSupportedException"> The number of objects in <paramref name="waitHandles" /> is greater than the system permits. -or- The <see cref="T:System.STAThreadAttribute" /> attribute is applied to the thread procedure for the current thread, and <paramref name="waitHandles" /> contains more than one element. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out. -or- <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait terminated because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="waitHandles" /> array contains a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> </member> <member name="M:System.Threading.WaitHandle.WaitAny(System.Threading.WaitHandle[],System.Int32)"> <summary> Waits for any of the elements in the specified array to receive a signal, using a 32-bit signed integer to measure the time interval. </summary> <returns> The array index of the object that satisfied the wait, or <see cref="F:System.Threading.WaitHandle.WaitTimeout" /> if no object satisfied the wait and a time interval equivalent to <paramref name="millisecondsTimeout" /> has passed. </returns> <param name="waitHandles"> A WaitHandle array containing the objects for which the current instance will wait. </param> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="waitHandles" /> parameter is null. -or- One or more of the objects in the <paramref name="waitHandles" /> array is null. </exception> <exception cref="T:System.NotSupportedException"> The number of objects in <paramref name="waitHandles" /> is greater than the system permits. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.ArgumentException"> <paramref name="waitHandles" /> is an array with no elements. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="waitHandles" /> array contains a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> </member> <member name="M:System.Threading.WaitHandle.WaitAny(System.Threading.WaitHandle[],System.TimeSpan)"> <summary> Waits for any of the elements in the specified array to receive a signal, using a <see cref="T:System.TimeSpan" /> to measure the time interval. </summary> <returns> The array index of the object that satisfied the wait, or <see cref="F:System.Threading.WaitHandle.WaitTimeout" /> if no object satisfied the wait and a time interval equivalent to <paramref name="timeout" /> has passed. </returns> <param name="waitHandles"> A WaitHandle array containing the objects for which the current instance will wait. </param> <param name="timeout"> A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely. </param> <exception cref="T:System.ArgumentNullException"> The <paramref name="waitHandles" /> parameter is null. -or- One or more of the objects in the <paramref name="waitHandles" /> array is null. </exception> <exception cref="T:System.NotSupportedException"> The number of objects in <paramref name="waitHandles" /> is greater than the system permits. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out. -or- <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.ArgumentException"> <paramref name="waitHandles" /> is an array with no elements. </exception> <exception cref="T:System.InvalidOperationException"> The <paramref name="waitHandles" /> array contains a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> </member> <member name="M:System.Threading.WaitHandle.WaitOne(System.Int32)"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.WaitHandle" /> receives a signal, using 32-bit signed integer to measure the time interval. </summary> <returns>true if the current instance receives a signal; otherwise, false. </returns> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <exception cref="T:System.ObjectDisposedException"> The current instance has already been disposed. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The current instance is a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> </member> <member name="M:System.Threading.WaitHandle.WaitOne(System.TimeSpan)"> <summary> Blocks the current thread until the current instance receives a signal, using a <see cref="T:System.TimeSpan" /> to measure the time interval. </summary> <returns>true if the current instance receives a signal; otherwise, false. </returns> <param name="timeout"> A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely. </param> <exception cref="T:System.ObjectDisposedException"> The current instance has already been disposed. </exception> <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out. -or- <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception> <exception cref="T:System.Threading.AbandonedMutexException"> The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. </exception> <exception cref="T:System.InvalidOperationException"> The current instance is a transparent proxy for a <see cref="T:System.Threading.WaitHandle" /> in another application domain. </exception> </member> <member name="M:System.Threading.AutoResetEvent.Reset"> <summary> Sets the state of the event to nonsignaled, which causes threads to block. </summary> <returns>true if the operation succeeds; otherwise, false. </returns> </member> <member name="M:System.Threading.AutoResetEvent.Set"> <summary> Sets the state of the event to signaled, which allows at most one waiting thread to proceed. </summary> <returns>true if the operation succeeds; otherwise, false. </returns> </member> <member name="M:System.Threading.CompressedStack.Finalize"> <summary> Releases the resources held by the current instance. </summary> </member> <member name="M:System.Threading.ManualResetEvent.Reset"> <summary> Sets the state of the event to nonsignaled, which causes threads to block. </summary> <returns>true if the operation succeeds; otherwise, false. </returns> </member> <member name="M:System.Threading.ManualResetEvent.Set"> <summary> Sets the state of the event to signaled, which allows one or more waiting threads to proceed. </summary> <returns>true if the operation succeeds; otherwise, false. </returns> </member> <member name="M:System.Threading.WaitHandle.Finalize"> <summary> Releases the resources held by the current instance. </summary> </member> <member name="M:System.Threading.EventWaitHandle.Close"> <summary> Releases all resources held by the current instance. </summary> </member> <member name="M:System.Threading.EventWaitHandle.Finalize"> <summary> Releases the resources held by the current instance. </summary> </member> <member name="M:System.Threading.EventWaitHandle.WaitOne"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.EventWaitHandle" /> receives a signal. For complete documentation, see the base class topic, <see cref="M:System.Threading.WaitHandle.WaitOne" />. </summary> <returns>true if the current instance receives a signal. If the current instance is never signaled, <see cref="M:System.Threading.EventWaitHandle.WaitOne" /> never returns. </returns> </member> <member name="M:System.Threading.EventWaitHandle.WaitOne(System.Int32,System.Boolean)"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.EventWaitHandle" /> receives a signal, using a 32-bit signed integer to measure the time interval and specifying whether to exit the synchronization domain before the wait. For complete documentation, see the base class topic, <see cref="M:System.Threading.WaitHandle.WaitOne(System.Int32,System.Boolean)" />. </summary> <returns>true if the current instance receives a signal; otherwise, false. </returns> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> </member> <member name="M:System.Threading.Mutex.Close"> <summary> Releases all resources held by the current instance. </summary> </member> <member name="M:System.Threading.Mutex.WaitOne"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.Mutex" /> receives a signal. For complete documentation, see the base class topic, <see cref="M:System.Threading.WaitHandle.WaitOne" />. </summary> <returns>true if the current instance receives a signal. If the current instance is never signaled, <see cref="M:System.Threading.Mutex.WaitOne" /> never returns. </returns> </member> <member name="M:System.Threading.Mutex.WaitOne(System.Int32,System.Boolean)"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.Mutex" /> receives a signal, using a 32-bit signed integer to specify the time interval to wait and specifying whether to exit the synchronization domain before the wait. For complete documentation, see the base class topic, <see cref="M:System.Threading.WaitHandle.WaitOne(System.Int32,System.Boolean)" />. </summary> <returns>true if the current instance receives a signal; otherwise, false. </returns> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> </member> <member name="M:System.Threading.AutoResetEvent.Close"> <summary> Releases all resources held by the current instance. </summary> </member> <member name="M:System.Threading.AutoResetEvent.WaitOne"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.AutoResetEvent" /> receives a signal. For complete documentation, see <see cref="M:System.Threading.WaitHandle.WaitOne" />. </summary> <returns>true if the current instance receives a signal. If the current instance is never signaled, <see cref="M:System.Threading.AutoResetEvent.WaitOne" /> never returns. </returns> </member> <member name="M:System.Threading.AutoResetEvent.WaitOne(System.Int32,System.Boolean)"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.AutoResetEvent" /> receives a signal, using a 32-bit signed integer to specify the time interval to wait and specifying whether to exit the synchronization domain before the wait. For complete documentation, see <see cref="M:System.Threading.WaitHandle.WaitOne(System.Int32,System.Boolean)" />. </summary> <returns>true if the current instance receives a signal; otherwise, false. </returns> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> </member> <member name="M:System.Threading.ManualResetEvent.Close"> <summary> Releases all resources held by the current instance. </summary> </member> <member name="M:System.Threading.ManualResetEvent.WaitOne"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.ManualResetEvent" /> receives a signal. </summary> <returns>true if the current instance receives a signal. If the current instance is never signaled, <see cref="M:System.Threading.ManualResetEvent.WaitOne" /> never returns. </returns> </member> <member name="M:System.Threading.ManualResetEvent.WaitOne(System.Int32,System.Boolean)"> <summary> Blocks the current thread until the current <see cref="T:System.Threading.ManualResetEvent" /> receives a signal, using a 32-bit signed integer to measure the time interval and specifying whether to exit the synchronization domain before the wait. </summary> <returns>true if the current instance receives a signal; otherwise, false. </returns> <param name="millisecondsTimeout"> The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely. </param> <param name="exitContext">true to exit the synchronization domain for the context before the wait (if in a synchronized context), and reacquire it afterward; otherwise, false. </param> </member> <member name="M:System.Threading.Thread.SetProcessorAffinity(System.Int32[])"> <summary> In the .NET Compact Framework for Xbox 360, sets the processor affinity for a managed thread. Processor affinity determines the processors on which a thread runs. </summary> <param name="cpus"> An array of identifiers that specify the hardware threads on which the managed thread is permitted to run. For Xbox 360, only a single hardware thread can be specified—the cpus array should contain only one element. The hardware thread number must be in the range 0 through 5. XNA Game Studio Express games should not use hardware threads 0 or 2; see Remarks. </param> <exception cref="T:System.InvalidOperationException"> An invalid value was passed to the method. </exception> </member> </members> </doc>