
Object Class
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.
Assembly: mscorlib (in mscorlib.dll)
Languages typically do not require a class to declare inheritance from Object because the inheritance is implicit.
Because all classes in the .NET Framework are derived from Object, every method defined in the Object class is available in all objects in the system. Derived classes can and do override some of these methods, including:
Equals - Supports comparisons between objects.
Finalize - Performs cleanup operations before an object is automatically reclaimed.
GetHashCode - Generates a number corresponding to the value of the object to support the use of a hash table.
ToString - Manufactures a human-readable text string that describes an instance of the class.
Performance Considerations
If you are designing a class, such as a collection, that must handle any type of object, you can create class members that accept instances of the Object class. However, the process of boxing and unboxing a type carries a performance cost. If you know your new class will frequently handle certain value types you can use one of two tactics to minimize the cost of boxing.
One tactic is to create a general method that accepts an Object type, and a set of type-specific method overloads that accept each value type you expect your class to frequently handle. If a type-specific method exists that accepts the calling parameter type, no boxing occurs and the type-specific method is invoked. If there is no method argument that matches the calling parameter type, the parameter is boxed and the general method is invoked.
The other tactic is to design your class and its methods to use generics. The common language runtime creates a closed generic type when you create an instance of your class and specify a generic type argument. The generic method is type-specific and can be invoked without boxing the calling parameter.
Although it is sometimes necessary to develop general purpose classes that accept and return Object types, you can improve performance by also providing a type-specific class to handle a frequently used type. For example, providing a class that is specific to setting and getting Boolean values eliminates the cost of boxing and unboxing Boolean values.
The following example defines a Point type derived from the Object class and overrides many of the virtual methods of the Object class. In addition, the example shows how to call many of the static and instance methods of the Object class.
using System; // The Point class is derived from System.Object. class Point { public int x, y; public Point(int x, int y) { this.x = x; this.y = y; } public override bool Equals(object obj) { // If this and obj do not refer to the same type, then they are not equal. if (obj.GetType() != this.GetType()) return false; // Return true if x and y fields match. Point other = (Point) obj; return (this.x == other.x) && (this.y == other.y); } // Return the XOR of the x and y fields. public override int GetHashCode() { return x ^ y; } // Return the point's value as a string. public override String ToString() { return String.Format("({0}, {1})", x, y); } // Return a copy of this point object by making a simple field copy. public Point Copy() { return (Point) this.MemberwiseClone(); } } public sealed class App { static void Main() { // Construct a Point object. Point p1 = new Point(1,2); // Make another Point object that is a copy of the first. Point p2 = p1.Copy(); // Make another variable that references the first Point object. Point p3 = p1; // The line below displays false because p1 and p2 refer to two different objects. Console.WriteLine(Object.ReferenceEquals(p1, p2)); // The line below displays true because p1 and p2 refer to two different objects that have the same value. Console.WriteLine(Object.Equals(p1, p2)); // The line below displays true because p1 and p3 refer to one object. Console.WriteLine(Object.ReferenceEquals(p1, p3)); // The line below displays: p1's value is: (1, 2) Console.WriteLine("p1's value is: {0}", p1.ToString()); } } // This code example produces the following output: // // False // True // True // p1's value is: (1, 2) //
Accessibility.CAccPropServicesClass
Microsoft.Aspnet.Snapin.AspNetManagementUtility
Microsoft.Build.BuildEngine.BuildItem
Microsoft.Build.BuildEngine.BuildItemGroup
Microsoft.Build.BuildEngine.BuildItemGroupCollection
Microsoft.Build.BuildEngine.BuildProperty
Microsoft.Build.BuildEngine.BuildPropertyGroup
Microsoft.Build.BuildEngine.BuildPropertyGroupCollection
Microsoft.Build.BuildEngine.BuildTask
Microsoft.Build.BuildEngine.ConfigurableForwardingLogger
Microsoft.Build.BuildEngine.ConsoleLogger
Microsoft.Build.BuildEngine.DistributedFileLogger
Microsoft.Build.BuildEngine.Engine
Microsoft.Build.BuildEngine.Import
Microsoft.Build.BuildEngine.ImportCollection
Microsoft.Build.BuildEngine.LoggerDescription
Microsoft.Build.BuildEngine.Project
Microsoft.Build.BuildEngine.Target
Microsoft.Build.BuildEngine.TargetCollection
Microsoft.Build.BuildEngine.Toolset
Microsoft.Build.BuildEngine.ToolsetCollection
Microsoft.Build.BuildEngine.UsingTask
Microsoft.Build.BuildEngine.UsingTaskCollection
Microsoft.Build.BuildEngine.Utilities
Microsoft.Build.Conversion.ProjectFileConverter
Microsoft.Build.Framework.BuildEventContext
Microsoft.Build.Tasks.Deployment.Bootstrapper.BootstrapperBuilder
Microsoft.Build.Tasks.Deployment.Bootstrapper.BuildMessage
Microsoft.Build.Tasks.Deployment.Bootstrapper.BuildResults
Microsoft.Build.Tasks.Deployment.Bootstrapper.BuildSettings
Microsoft.Build.Tasks.Deployment.Bootstrapper.Product
Microsoft.Build.Tasks.Deployment.Bootstrapper.ProductBuilder
Microsoft.Build.Tasks.Deployment.Bootstrapper.ProductBuilderCollection
Microsoft.Build.Tasks.Deployment.Bootstrapper.ProductCollection
Microsoft.Build.Tasks.Deployment.ManifestUtilities.ApplicationIdentity
Microsoft.Build.Tasks.Deployment.ManifestUtilities.AssemblyIdentity
Microsoft.Build.Tasks.Deployment.ManifestUtilities.AssemblyReferenceCollection
Microsoft.Build.Tasks.Deployment.ManifestUtilities.BaseReference
Microsoft.Build.Tasks.Deployment.ManifestUtilities.ComClass
Microsoft.Build.Tasks.Deployment.ManifestUtilities.FileReferenceCollection
Microsoft.Build.Tasks.Deployment.ManifestUtilities.Manifest
Microsoft.Build.Tasks.Deployment.ManifestUtilities.ManifestReader
Microsoft.Build.Tasks.Deployment.ManifestUtilities.ManifestWriter
Microsoft.Build.Tasks.Deployment.ManifestUtilities.OutputMessage
Microsoft.Build.Tasks.Deployment.ManifestUtilities.OutputMessageCollection
Microsoft.Build.Tasks.Deployment.ManifestUtilities.ProxyStub
Microsoft.Build.Tasks.Deployment.ManifestUtilities.SecurityUtilities
Microsoft.Build.Tasks.Deployment.ManifestUtilities.TrustInfo
Microsoft.Build.Tasks.Deployment.ManifestUtilities.TypeLib
Microsoft.Build.Tasks.Deployment.ManifestUtilities.WindowClass
Microsoft.Build.Utilities.CommandLineBuilder
Microsoft.Build.Utilities.Logger
Microsoft.Build.Utilities.ProcessorArchitecture
Microsoft.Build.Utilities.Task
Microsoft.Build.Utilities.ToolLocationHelper
Microsoft.CSharp.Compiler
Microsoft.CSharp.CompilerError
Microsoft.IE.IHostStubClass
Microsoft.IE.Manager
Microsoft.IE.SecureFactory
Microsoft.JScript.AST
Microsoft.JScript.CmdLineOptionParser
Microsoft.JScript.Context
Microsoft.JScript.Convert
Microsoft.JScript.DebugConvert
Microsoft.JScript.DocumentContext
Microsoft.JScript.DynamicFieldInfo
Microsoft.JScript.Empty
Microsoft.JScript.FieldAccessor
Microsoft.JScript.GlobalObject
Microsoft.JScript.Globals
Microsoft.JScript.JSAuthor
Microsoft.JScript.JSParser
Microsoft.JScript.JSScanner
Microsoft.JScript.LateBinding
Microsoft.JScript.MemberInfoList
Microsoft.JScript.MethodInvoker
Microsoft.JScript.Missing
Microsoft.JScript.Namespace
Microsoft.JScript.Runtime
Microsoft.JScript.ScriptObject
Microsoft.JScript.ScriptStream
Microsoft.JScript.SimpleHashtable
Microsoft.JScript.SuperTypeMembersSorter
Microsoft.JScript.TypedArray
Microsoft.JScript.Vsa.ResInfo
Microsoft.JScript.VsaItem
Microsoft.JScript.VsaItems
Microsoft.ManagementConsole.ActionsPaneItem
Microsoft.ManagementConsole.Advanced.Console
Microsoft.ManagementConsole.Advanced.MessageBoxParameters
Microsoft.ManagementConsole.Advanced.PrimaryScopeNode
Microsoft.ManagementConsole.Advanced.WaitCursor
Microsoft.ManagementConsole.Internal.ActionsPaneItemData
Microsoft.ManagementConsole.Internal.ColumnData
Microsoft.ManagementConsole.Internal.Command
Microsoft.ManagementConsole.Internal.CommandResult
Microsoft.ManagementConsole.Internal.GlobalConfiguration
Microsoft.ManagementConsole.Internal.GlobalConfiguration.SnapInHostingOptions
Microsoft.ManagementConsole.Internal.InsertScopeNodesCommandReader
Microsoft.ManagementConsole.Internal.InsertScopeNodesCommandWriter
Microsoft.ManagementConsole.Internal.NodeData
Microsoft.ManagementConsole.Internal.NodeIdData
Microsoft.ManagementConsole.Internal.NodeSubItemData
Microsoft.ManagementConsole.Internal.NodeType
Microsoft.ManagementConsole.Internal.Notification
Microsoft.ManagementConsole.Internal.PasteTargetInfo
Microsoft.ManagementConsole.Internal.PropertyPageInfo
Microsoft.ManagementConsole.Internal.RequestInfo
Microsoft.ManagementConsole.Internal.RequestResponse
Microsoft.ManagementConsole.Internal.SerializableImageListWrapper
Microsoft.ManagementConsole.Internal.SharedDataObjectUpdate
Microsoft.ManagementConsole.Internal.SnapInData
Microsoft.ManagementConsole.Internal.SnapInRegistrationInfo
Microsoft.ManagementConsole.Internal.TraceUtility
Microsoft.ManagementConsole.Internal.ViewDescriptionData
Microsoft.ManagementConsole.Internal.ViewSetData
Microsoft.ManagementConsole.MmcListViewColumn
Microsoft.ManagementConsole.Node
Microsoft.ManagementConsole.NodeId
Microsoft.ManagementConsole.PropertyPage
Microsoft.ManagementConsole.PropertySheet
Microsoft.ManagementConsole.SelectedNodeCollection
Microsoft.ManagementConsole.SelectionData
Microsoft.ManagementConsole.SharedData
Microsoft.ManagementConsole.SharedDataItemBase
Microsoft.ManagementConsole.SnapInBase
Microsoft.ManagementConsole.SnapInImageList
Microsoft.ManagementConsole.Status
Microsoft.ManagementConsole.TraceSources
Microsoft.ManagementConsole.View
Microsoft.ManagementConsole.ViewDescription
Microsoft.ManagementConsole.WritableSharedData
Microsoft.SqlServer.Server.SqlContext
Microsoft.SqlServer.Server.SqlDataRecord
Microsoft.SqlServer.Server.SqlMetaData
Microsoft.SqlServer.Server.SqlPipe
Microsoft.SqlServer.Server.SqlTriggerContext
Microsoft.VisualBasic.ApplicationServices.ApplicationBase
Microsoft.VisualBasic.ApplicationServices.AssemblyInfo
Microsoft.VisualBasic.ApplicationServices.User
Microsoft.VisualBasic.Collection
Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment
Microsoft.VisualBasic.Compatibility.VB6.BindingCollectionEnumerator
Microsoft.VisualBasic.Compatibility.VB6.FixedLengthString
Microsoft.VisualBasic.Compatibility.VB6.ListBoxItem
Microsoft.VisualBasic.Compatibility.VB6.MBinding
Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection
Microsoft.VisualBasic.Compatibility.VB6.Support
Microsoft.VisualBasic.Compatibility.VB6.WebClass
Microsoft.VisualBasic.Compatibility.VB6.WebItem
Microsoft.VisualBasic.CompilerServices.BooleanType
Microsoft.VisualBasic.CompilerServices.ByteType
Microsoft.VisualBasic.CompilerServices.CharArrayType
Microsoft.VisualBasic.CompilerServices.CharType
Microsoft.VisualBasic.CompilerServices.Conversions
Microsoft.VisualBasic.CompilerServices.DateType
Microsoft.VisualBasic.CompilerServices.DecimalType
Microsoft.VisualBasic.CompilerServices.DoubleType
Microsoft.VisualBasic.CompilerServices.ExceptionUtils
Microsoft.VisualBasic.CompilerServices.FlowControl
Microsoft.VisualBasic.CompilerServices.HostServices
Microsoft.VisualBasic.CompilerServices.IntegerType
Microsoft.VisualBasic.CompilerServices.LateBinding
Microsoft.VisualBasic.CompilerServices.LikeOperator
Microsoft.VisualBasic.CompilerServices.LongType
Microsoft.VisualBasic.CompilerServices.NewLateBinding
Microsoft.VisualBasic.CompilerServices.ObjectFlowControl
Microsoft.VisualBasic.CompilerServices.ObjectFlowControl.ForLoopControl
Microsoft.VisualBasic.CompilerServices.ObjectType
Microsoft.VisualBasic.CompilerServices.Operators
Microsoft.VisualBasic.CompilerServices.ProjectData
Microsoft.VisualBasic.CompilerServices.ShortType
Microsoft.VisualBasic.CompilerServices.SingleType
Microsoft.VisualBasic.CompilerServices.StaticLocalInitFlag
Microsoft.VisualBasic.CompilerServices.StringType
Microsoft.VisualBasic.CompilerServices.Utils
Microsoft.VisualBasic.CompilerServices.Versioned
Microsoft.VisualBasic.Constants
Microsoft.VisualBasic.ControlChars
Microsoft.VisualBasic.Conversion
Microsoft.VisualBasic.DateAndTime
Microsoft.VisualBasic.Devices.Audio
Microsoft.VisualBasic.Devices.Clock
Microsoft.VisualBasic.Devices.ComputerInfo
Microsoft.VisualBasic.Devices.Keyboard
Microsoft.VisualBasic.Devices.Mouse
Microsoft.VisualBasic.Devices.Network
Microsoft.VisualBasic.Devices.Ports
Microsoft.VisualBasic.Devices.ServerComputer
Microsoft.VisualBasic.ErrObject
Microsoft.VisualBasic.FileIO.FileSystem
Microsoft.VisualBasic.FileIO.SpecialDirectories
Microsoft.VisualBasic.FileIO.TextFieldParser
Microsoft.VisualBasic.FileSystem
Microsoft.VisualBasic.Financial
Microsoft.VisualBasic.Globals
Microsoft.VisualBasic.Information
Microsoft.VisualBasic.Interaction
Microsoft.VisualBasic.Logging.Log
Microsoft.VisualBasic.MyServices.ClipboardProxy
Microsoft.VisualBasic.MyServices.FileSystemProxy
Microsoft.VisualBasic.MyServices.Internal.ContextValue<T>
Microsoft.VisualBasic.MyServices.RegistryProxy
Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy
Microsoft.VisualBasic.Strings
Microsoft.VisualBasic.VBMath
Microsoft.VisualBasic.Vsa.VsaCompilerError
Microsoft.VisualBasic.Vsa.VsaEngine
Microsoft.VisualBasic.Vsa.VsaItem
Microsoft.VisualBasic.Vsa.VsaItems
Microsoft.VisualBasic.Vsa.VsaItemsEnumerator
Microsoft.VisualC.CodeDomTypeInfo
Microsoft.VisualC.CppCodeGeneratorBase
Microsoft.VisualC.IsConstModifier
Microsoft.VisualC.IsCXXReferenceModifier
Microsoft.VisualC.IsLongModifier
Microsoft.VisualC.IsSignedModifier
Microsoft.VisualC.IsVolatileModifier
Microsoft.VisualC.NeedsCopyConstructorModifier
Microsoft.VisualC.NoSignSpecifiedModifier
Microsoft.VisualC.StlClr.DequeEnumeratorBase<TValue>
Microsoft.VisualC.StlClr.Generic.ConstContainerBidirectionalIterator<TValue>
Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<TValue>
Microsoft.VisualC.StlClr.Generic.ConstReverseBidirectionalIterator<TValue>
Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<TValue>
Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue>
Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue>
Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<TValue>
Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue>
Microsoft.VisualC.StlClr.GenericPair<TValue1, TValue2>
Microsoft.VisualC.StlClr.HashEnumeratorBase<TKey, TValue>
Microsoft.VisualC.StlClr.ListEnumeratorBase<TValue>
Microsoft.VisualC.StlClr.TreeEnumeratorBase<TKey, TValue>
Microsoft.VisualC.StlClr.VectorEnumeratorBase<TValue>
Microsoft.Vsa.BaseVsaEngine
Microsoft.Vsa.BaseVsaSite
Microsoft.Vsa.BaseVsaStartup
Microsoft.Vsa.Vb.CodeDOM.CodeDOMProcessor
Microsoft.Vsa.Vb.CodeDOM.Location
Microsoft.Vsa.VsaLoader
Microsoft.Win32.CommonDialog
Microsoft.Win32.IntranetZoneCredentialPolicy
Microsoft.Win32.Registry
Microsoft.Win32.SystemEvents
Microsoft.Windows.Themes.PlatformCulture
Microsoft.Windows.Themes.ProgressBarBrushConverter
Microsoft.Windows.Themes.ProgressBarHighlightConverter
Microsoft_VsaVb.VsaDTEngineClass
Microsoft_VsaVb.VsaEngineClass
System.ActivationContext
System.Activator
System.AddIn.Hosting.AddInController
System.AddIn.Hosting.AddInEnvironment
System.AddIn.Hosting.AddInProcess
System.AddIn.Hosting.AddInStore
System.AddIn.Hosting.AddInToken
System.AddIn.Pipeline.CollectionAdapters
System.AddIn.Pipeline.ContractAdapter
System.AddIn.Pipeline.ContractHandle
System.AddIn.Pipeline.FrameworkElementAdapters
System.AppDomainSetup
System.ApplicationId
System.ApplicationIdentity
System.Array
System.Attribute
System.BitConverter
System.Buffer
System.CharEnumerator
System.CodeDom.CodeAttributeArgument
System.CodeDom.CodeAttributeDeclaration
System.CodeDom.CodeCatchClause
System.CodeDom.CodeLinePragma
System.CodeDom.CodeNamespaceImportCollection
System.CodeDom.CodeObject
System.CodeDom.Compiler.CodeGenerator
System.CodeDom.Compiler.CodeGeneratorOptions
System.CodeDom.Compiler.CodeParser
System.CodeDom.Compiler.CompilerError
System.CodeDom.Compiler.CompilerInfo
System.CodeDom.Compiler.CompilerParameters
System.CodeDom.Compiler.CompilerResults
System.CodeDom.Compiler.Executor
System.CodeDom.Compiler.TempFileCollection
System.Collections.ArrayList
System.Collections.BitArray
System.Collections.CaseInsensitiveComparer
System.Collections.CaseInsensitiveHashCodeProvider
System.Collections.CollectionBase
System.Collections.Comparer
System.Collections.DictionaryBase
System.Collections.Generic.Comparer<T>
System.Collections.Generic.Dictionary<TKey, TValue>
System.Collections.Generic.Dictionary<TKey, TValue>.KeyCollection
System.Collections.Generic.Dictionary<TKey, TValue>.ValueCollection
System.Collections.Generic.EqualityComparer<T>
System.Collections.Generic.HashSet<T>
System.Collections.Generic.LinkedList<T>
System.Collections.Generic.LinkedListNode<T>
System.Collections.Generic.List<T>
System.Collections.Generic.Queue<T>
System.Collections.Generic.SortedDictionary<TKey, TValue>
System.Collections.Generic.SortedDictionary<TKey, TValue>.KeyCollection
System.Collections.Generic.SortedDictionary<TKey, TValue>.ValueCollection
System.Collections.Generic.SortedList<TKey, TValue>
System.Collections.Generic.Stack<T>
System.Collections.Generic.SynchronizedCollection<T>
System.Collections.Generic.SynchronizedReadOnlyCollection<T>
System.Collections.Hashtable
System.Collections.ObjectModel.Collection<T>
System.Collections.ObjectModel.ReadOnlyCollection<T>
System.Collections.Queue
System.Collections.ReadOnlyCollectionBase
System.Collections.SortedList
System.Collections.Specialized.CollectionsUtil
System.Collections.Specialized.HybridDictionary
System.Collections.Specialized.ListDictionary
System.Collections.Specialized.NameObjectCollectionBase
System.Collections.Specialized.NameObjectCollectionBase.KeysCollection
System.Collections.Specialized.OrderedDictionary
System.Collections.Specialized.StringCollection
System.Collections.Specialized.StringDictionary
System.Collections.Specialized.StringEnumerator
System.Collections.Stack
System.ComponentModel.AsyncOperation
System.ComponentModel.AsyncOperationManager
System.ComponentModel.AttributeCollection
System.ComponentModel.ComponentEditor
System.ComponentModel.Container
System.ComponentModel.ContainerFilterService
System.ComponentModel.CustomTypeDescriptor
System.ComponentModel.Design.CommandID
System.ComponentModel.Design.ComponentDesigner
System.ComponentModel.Design.ComponentDesigner.ShadowPropertyCollection
System.ComponentModel.Design.Data.DataSourceDescriptor
System.ComponentModel.Design.Data.DataSourceGroup
System.ComponentModel.Design.Data.DataSourceProviderService
System.ComponentModel.Design.Data.DesignerDataColumn
System.ComponentModel.Design.Data.DesignerDataConnection
System.ComponentModel.Design.Data.DesignerDataParameter
System.ComponentModel.Design.Data.DesignerDataRelationship
System.ComponentModel.Design.Data.DesignerDataSchemaClass
System.ComponentModel.Design.Data.DesignerDataStoredProcedure
System.ComponentModel.Design.Data.DesignerDataTableBase
System.ComponentModel.Design.DesignerActionItem
System.ComponentModel.Design.DesignerActionList
System.ComponentModel.Design.DesignerActionService
System.ComponentModel.Design.DesignerActionUIService
System.ComponentModel.Design.DesignerCollection
System.ComponentModel.Design.DesignerCommandSet
System.ComponentModel.Design.DesignerOptionService
System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection
System.ComponentModel.Design.DesignerTransaction
System.ComponentModel.Design.DesignSurface
System.ComponentModel.Design.DesignSurfaceCollection
System.ComponentModel.Design.DesignSurfaceManager
System.ComponentModel.Design.DesigntimeLicenseContextSerializer
System.ComponentModel.Design.EventBindingService
System.ComponentModel.Design.InheritanceService
System.ComponentModel.Design.LocalizationExtenderProvider
System.ComponentModel.Design.MenuCommand
System.ComponentModel.Design.MenuCommandService
System.ComponentModel.Design.Serialization.CodeDomLocalizationProvider
System.ComponentModel.Design.Serialization.CodeDomSerializerBase
System.ComponentModel.Design.Serialization.ComponentSerializationService
System.ComponentModel.Design.Serialization.ContextStack
System.ComponentModel.Design.Serialization.DesignerLoader
System.ComponentModel.Design.Serialization.DesignerSerializationManager
System.ComponentModel.Design.Serialization.ExpressionContext
System.ComponentModel.Design.Serialization.InstanceDescriptor
System.ComponentModel.Design.Serialization.MemberRelationshipService
System.ComponentModel.Design.Serialization.ObjectStatementCollection
System.ComponentModel.Design.Serialization.RootContext
System.ComponentModel.Design.Serialization.SerializationStore
System.ComponentModel.Design.Serialization.SerializeAbsoluteContext
System.ComponentModel.Design.Serialization.StatementContext
System.ComponentModel.Design.ServiceContainer
System.ComponentModel.Design.StandardCommands
System.ComponentModel.Design.StandardToolWindows
System.ComponentModel.Design.UndoEngine
System.ComponentModel.Design.UndoEngine.UndoUnit
System.ComponentModel.DesignerProperties
System.ComponentModel.EventDescriptorCollection
System.ComponentModel.EventHandlerList
System.ComponentModel.GroupDescription
System.ComponentModel.InstanceCreationEditor
System.ComponentModel.License
System.ComponentModel.LicenseContext
System.ComponentModel.LicenseManager
System.ComponentModel.LicenseProvider
System.ComponentModel.ListSortDescription
System.ComponentModel.ListSortDescriptionCollection
System.ComponentModel.MarshalByValueComponent
System.ComponentModel.MaskedTextProvider
System.ComponentModel.MemberDescriptor
System.ComponentModel.PropertyDescriptorCollection
System.ComponentModel.SyntaxCheck
System.ComponentModel.TypeConverter
System.ComponentModel.TypeConverter.StandardValuesCollection
System.ComponentModel.TypeDescriptionProvider
System.ComponentModel.TypeDescriptor
System.Configuration.AppSettingsReader
System.Configuration.Configuration
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationElementProperty
System.Configuration.ConfigurationFileMap
System.Configuration.ConfigurationLocation
System.Configuration.ConfigurationLockCollection
System.Configuration.ConfigurationManager
System.Configuration.ConfigurationProperty
System.Configuration.ConfigurationPropertyCollection
System.Configuration.ConfigurationSectionGroup
System.Configuration.ConfigurationSettings
System.Configuration.ConfigurationValidatorBase
System.Configuration.ContextInformation
System.Configuration.DictionarySectionHandler
System.Configuration.ElementInformation
System.Configuration.ExeContext
System.Configuration.IgnoreSectionHandler
System.Configuration.Install.InstallContext
System.Configuration.Install.ManagedInstallerClass
System.Configuration.Internal.DelegatingConfigHost
System.Configuration.NameValueFileSectionHandler
System.Configuration.NameValueSectionHandler
System.Configuration.PropertyInformation
System.Configuration.ProtectedConfiguration
System.Configuration.Provider.ProviderBase
System.Configuration.Provider.ProviderCollection
System.Configuration.SectionInformation
System.Configuration.SettingsBase
System.Configuration.SettingsProperty
System.Configuration.SettingsPropertyCollection
System.Configuration.SettingsPropertyValue
System.Configuration.SettingsPropertyValueCollection
System.Configuration.SingleTagSectionHandler
System.Console
System.Convert
System.Data.Common.DbConnectionStringBuilder
System.Data.Common.DbDataRecord
System.Data.Common.DbDataSourceEnumerator
System.Data.Common.DbEnumerator
System.Data.Common.DbMetaDataCollectionNames
System.Data.Common.DbMetaDataColumnNames
System.Data.Common.DbProviderConfigurationHandler
System.Data.Common.DbProviderFactories
System.Data.Common.DbProviderFactoriesConfigurationHandler
System.Data.Common.DbProviderFactory
System.Data.Common.SchemaTableColumn
System.Data.Common.SchemaTableOptionalColumn
System.Data.Constraint
System.Data.DataRelation
System.Data.DataRow
System.Data.DataRowBuilder
System.Data.DataRowComparer
System.Data.DataRowComparer<TRow>
System.Data.DataRowExtensions
System.Data.DataRowView
System.Data.DataTableExtensions
System.Data.DataViewSetting
System.Data.DataViewSettingCollection
System.Data.Design.MethodSignatureGenerator
System.Data.Design.TypedDataSetGenerator
System.Data.EnumerableRowCollection
System.Data.EnumerableRowCollectionExtensions
System.Data.InternalDataCollectionBase
System.Data.Linq.Binary
System.Data.Linq.ChangeConflictCollection
System.Data.Linq.ChangeSet
System.Data.Linq.CompiledQuery
System.Data.Linq.DataContext
System.Data.Linq.DataLoadOptions
System.Data.Linq.DBConvert
System.Data.Linq.EntitySet<TEntity>
System.Data.Linq.Mapping.MappingSource
System.Data.Linq.Mapping.MetaAccessor
System.Data.Linq.Mapping.MetaAssociation
System.Data.Linq.Mapping.MetaDataMember
System.Data.Linq.Mapping.MetaFunction
System.Data.Linq.Mapping.MetaModel
System.Data.Linq.Mapping.MetaParameter
System.Data.Linq.Mapping.MetaTable
System.Data.Linq.Mapping.MetaType
System.Data.Linq.MemberChangeConflict
System.Data.Linq.ObjectChangeConflict
System.Data.Linq.SqlClient.Implementation.ObjectMaterializer<TDataReader>
System.Data.Linq.SqlClient.SqlHelpers
System.Data.Linq.SqlClient.SqlMethods
System.Data.Linq.SqlClient.SqlProvider
System.Data.Linq.Table<TEntity>
System.Data.Odbc.OdbcError
System.Data.Odbc.OdbcErrorCollection
System.Data.Odbc.OdbcMetaDataCollectionNames
System.Data.Odbc.OdbcMetaDataColumnNames
System.Data.OleDb.OleDbEnumerator
System.Data.OleDb.OleDbError
System.Data.OleDb.OleDbErrorCollection
System.Data.OleDb.OleDbMetaDataCollectionNames
System.Data.OleDb.OleDbMetaDataColumnNames
System.Data.OleDb.OleDbSchemaGuid
System.Data.Sql.SqlNotificationRequest
System.Data.SqlClient.SqlBulkCopy
System.Data.SqlClient.SqlBulkCopyColumnMapping
System.Data.SqlClient.SqlClientMetaDataCollectionNames
System.Data.SqlClient.SQLDebugging
System.Data.SqlClient.SqlDependency
System.Data.SqlClient.SqlError
System.Data.SqlClient.SqlErrorCollection
System.Data.SqlTypes.SqlBytes
System.Data.SqlTypes.SqlChars
System.Data.SqlTypes.SqlXml
System.Data.TypedDataSetGenerator
System.Data.TypedTableBaseExtensions
System.DBNull
System.Delegate
System.Deployment.Application.ApplicationDeployment
System.Deployment.Application.DeploymentServiceCom
System.Deployment.Application.InPlaceHostingManager
System.Deployment.Application.UpdateCheckInfo
System.Deployment.Internal.InternalActivationContextHelper
System.Deployment.Internal.InternalApplicationIdentityHelper
System.Diagnostics.CorrelationManager
System.Diagnostics.CounterCreationData
System.Diagnostics.CounterSampleCalculator
System.Diagnostics.Debug
System.Diagnostics.Debugger
System.Diagnostics.DiagnosticsConfigurationHandler
System.Diagnostics.Eventing.EventProvider
System.Diagnostics.Eventing.Reader.EventBookmark
System.Diagnostics.Eventing.Reader.EventKeyword
System.Diagnostics.Eventing.Reader.EventLevel
System.Diagnostics.Eventing.Reader.EventLogConfiguration
System.Diagnostics.Eventing.Reader.EventLogInformation
System.Diagnostics.Eventing.Reader.EventLogLink
System.Diagnostics.Eventing.Reader.EventLogPropertySelector
System.Diagnostics.Eventing.Reader.EventLogQuery
System.Diagnostics.Eventing.Reader.EventLogReader
System.Diagnostics.Eventing.Reader.EventLogSession
System.Diagnostics.Eventing.Reader.EventLogStatus
System.Diagnostics.Eventing.Reader.EventLogWatcher
System.Diagnostics.Eventing.Reader.EventMetadata
System.Diagnostics.Eventing.Reader.EventOpcode
System.Diagnostics.Eventing.Reader.EventProperty
System.Diagnostics.Eventing.Reader.EventRecord
System.Diagnostics.Eventing.Reader.EventTask
System.Diagnostics.Eventing.Reader.ProviderMetadata
System.Diagnostics.EventInstance
System.Diagnostics.EventLogEntryCollection
System.Diagnostics.EventLogPermissionEntry
System.Diagnostics.EventSourceCreationData
System.Diagnostics.FileVersionInfo
System.Diagnostics.InstanceData
System.Diagnostics.PerformanceCounterCategory
System.Diagnostics.PerformanceCounterManager
System.Diagnostics.PerformanceCounterPermissionEntry
System.Diagnostics.PerformanceData.CounterData
System.Diagnostics.PerformanceData.CounterSet
System.Diagnostics.PerformanceData.CounterSetInstance
System.Diagnostics.PerformanceData.CounterSetInstanceCounterDataSet
System.Diagnostics.PresentationTraceSources
System.Diagnostics.ProcessStartInfo
System.Diagnostics.StackFrame
System.Diagnostics.StackTrace
System.Diagnostics.Stopwatch
System.Diagnostics.Switch
System.Diagnostics.SymbolStore.SymBinder
System.Diagnostics.SymbolStore.SymDocument
System.Diagnostics.SymbolStore.SymDocumentType
System.Diagnostics.SymbolStore.SymDocumentWriter
System.Diagnostics.SymbolStore.SymLanguageType
System.Diagnostics.SymbolStore.SymLanguageVendor
System.Diagnostics.SymbolStore.SymMethod
System.Diagnostics.SymbolStore.SymReader
System.Diagnostics.SymbolStore.SymScope
System.Diagnostics.SymbolStore.SymVariable
System.Diagnostics.SymbolStore.SymWriter
System.Diagnostics.Trace
System.Diagnostics.TraceEventCache
System.Diagnostics.TraceFilter
System.Diagnostics.TraceListenerCollection
System.Diagnostics.TraceSource
System.Diagnostics.UnescapedXmlDiagnosticData
System.DirectoryServices.AccountManagement.AdvancedFilters
System.DirectoryServices.AccountManagement.Principal
System.DirectoryServices.AccountManagement.PrincipalCollection
System.DirectoryServices.AccountManagement.PrincipalContext
System.DirectoryServices.AccountManagement.PrincipalSearcher
System.DirectoryServices.AccountManagement.PrincipalSearchResult<T>
System.DirectoryServices.AccountManagement.PrincipalValueCollection<T>
System.DirectoryServices.ActiveDirectory.ActiveDirectoryInterSiteTransport
System.DirectoryServices.ActiveDirectory.ActiveDirectoryPartition
System.DirectoryServices.ActiveDirectory.ActiveDirectorySchedule
System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass
System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaProperty
System.DirectoryServices.ActiveDirectory.ActiveDirectorySite
System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLink
System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteLinkBridge
System.DirectoryServices.ActiveDirectory.ActiveDirectorySubnet
System.DirectoryServices.ActiveDirectory.AttributeMetadata
System.DirectoryServices.ActiveDirectory.ConfigurationSet
System.DirectoryServices.ActiveDirectory.DirectoryContext
System.DirectoryServices.ActiveDirectory.DirectoryServer
System.DirectoryServices.ActiveDirectory.Forest
System.DirectoryServices.ActiveDirectory.ForestTrustDomainInformation
System.DirectoryServices.ActiveDirectory.ForestTrustRelationshipCollision
System.DirectoryServices.ActiveDirectory.ReplicationConnection
System.DirectoryServices.ActiveDirectory.ReplicationCursor
System.DirectoryServices.ActiveDirectory.ReplicationFailure
System.DirectoryServices.ActiveDirectory.ReplicationNeighbor
System.DirectoryServices.ActiveDirectory.ReplicationOperation
System.DirectoryServices.ActiveDirectory.ReplicationOperationInformation
System.DirectoryServices.ActiveDirectory.SyncFromAllServersErrorInformation
System.DirectoryServices.ActiveDirectory.TopLevelName
System.DirectoryServices.ActiveDirectory.TrustRelationshipInformation
System.DirectoryServices.DirectoryEntries
System.DirectoryServices.DirectoryEntryConfiguration
System.DirectoryServices.DirectoryServicesPermissionEntry
System.DirectoryServices.DirectorySynchronization
System.DirectoryServices.DirectoryVirtualListView
System.DirectoryServices.DirectoryVirtualListViewContext
System.DirectoryServices.PropertyCollection
System.DirectoryServices.Protocols.BerConverter
System.DirectoryServices.Protocols.DirectoryConnection
System.DirectoryServices.Protocols.DirectoryControl
System.DirectoryServices.Protocols.DirectoryIdentifier
System.DirectoryServices.Protocols.DirectoryOperation
System.DirectoryServices.Protocols.DsmlDocument
System.DirectoryServices.Protocols.LdapSessionOptions
System.DirectoryServices.Protocols.ReferralCallback
System.DirectoryServices.Protocols.SearchResultEntry
System.DirectoryServices.Protocols.SearchResultReference
System.DirectoryServices.Protocols.SecurityPackageContextConnectionInformation
System.DirectoryServices.Protocols.SortKey
System.DirectoryServices.SchemaNameCollection
System.DirectoryServices.SearchResult
System.DirectoryServices.SortOption
System.Drawing.Brushes
System.Drawing.BufferedGraphics
System.Drawing.BufferedGraphicsContext
System.Drawing.BufferedGraphicsManager
System.Drawing.ColorTranslator
System.Drawing.Design.PropertyValueUIItem
System.Drawing.Design.ToolboxItem
System.Drawing.Design.ToolboxItemContainer
System.Drawing.Design.ToolboxItemCreator
System.Drawing.Design.ToolboxService
System.Drawing.Design.UITypeEditor
System.Drawing.Drawing2D.Blend
System.Drawing.Drawing2D.ColorBlend
System.Drawing.Drawing2D.PathData
System.Drawing.Drawing2D.RegionData
System.Drawing.ImageAnimator
System.Drawing.Imaging.BitmapData
System.Drawing.Imaging.ColorMap
System.Drawing.Imaging.ColorMatrix
System.Drawing.Imaging.ColorPalette
System.Drawing.Imaging.Encoder
System.Drawing.Imaging.EncoderParameter
System.Drawing.Imaging.EncoderParameters
System.Drawing.Imaging.FrameDimension
System.Drawing.Imaging.ImageAttributes
System.Drawing.Imaging.ImageCodecInfo
System.Drawing.Imaging.ImageFormat
System.Drawing.Imaging.MetafileHeader
System.Drawing.Imaging.MetaHeader
System.Drawing.Imaging.PropertyItem
System.Drawing.Imaging.WmfPlaceableFileHeader
System.Drawing.Pens
System.Drawing.Printing.Margins
System.Drawing.Printing.PageSettings
System.Drawing.Printing.PaperSize
System.Drawing.Printing.PaperSource
System.Drawing.Printing.PreviewPageInfo
System.Drawing.Printing.PrintController
System.Drawing.Printing.PrinterResolution
System.Drawing.Printing.PrinterSettings
System.Drawing.Printing.PrinterSettings.PaperSizeCollection
System.Drawing.Printing.PrinterSettings.PaperSourceCollection
System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection
System.Drawing.Printing.PrinterSettings.StringCollection
System.Drawing.Printing.PrinterUnitConvert
System.Drawing.SystemBrushes
System.Drawing.SystemColors
System.Drawing.SystemFonts
System.Drawing.SystemIcons
System.Drawing.SystemPens
System.Drawing.Text.FontCollection
System.EnterpriseServices.Activity
System.EnterpriseServices.BYOT
System.EnterpriseServices.CompensatingResourceManager.Clerk
System.EnterpriseServices.CompensatingResourceManager.ClerkInfo
System.EnterpriseServices.CompensatingResourceManager.ClerkMonitor
System.EnterpriseServices.CompensatingResourceManager.LogRecord
System.EnterpriseServices.ContextUtil
System.EnterpriseServices.Internal.AppDomainHelper
System.EnterpriseServices.Internal.ClientRemotingConfig
System.EnterpriseServices.Internal.ClrObjectFactory
System.EnterpriseServices.Internal.ComManagedImportUtil
System.EnterpriseServices.Internal.ComSoapPublishError
System.EnterpriseServices.Internal.GenerateMetadata
System.EnterpriseServices.Internal.IISVirtualRoot
System.EnterpriseServices.Internal.Publish
System.EnterpriseServices.Internal.ServerWebConfig
System.EnterpriseServices.Internal.SoapClientImport
System.EnterpriseServices.Internal.SoapServerTlb
System.EnterpriseServices.Internal.SoapServerVRoot
System.EnterpriseServices.Internal.SoapUtility
System.EnterpriseServices.RegistrationConfig
System.EnterpriseServices.RegistrationErrorInfo
System.EnterpriseServices.ResourcePool
System.EnterpriseServices.SecurityCallContext
System.EnterpriseServices.SecurityCallers
System.EnterpriseServices.SecurityIdentity
System.EnterpriseServices.ServiceConfig
System.EnterpriseServices.ServiceDomain
System.EnterpriseServices.SharedProperty
System.EnterpriseServices.SharedPropertyGroup
System.EnterpriseServices.SharedPropertyGroupManager
System.Environment
System.EventArgs
System.Exception
System.GC
System.Globalization.Calendar
System.Globalization.CharUnicodeInfo
System.Globalization.CompareInfo
System.Globalization.CultureAndRegionInfoBuilder
System.Globalization.CultureInfo
System.Globalization.DateTimeFormatInfo
System.Globalization.DaylightTime
System.Globalization.IdnMapping
System.Globalization.NumberFormatInfo
System.Globalization.RegionInfo
System.Globalization.SortKey
System.Globalization.StringInfo
System.Globalization.TextElementEnumerator
System.Globalization.TextInfo
System.IdentityModel.Claims.Claim
System.IdentityModel.Claims.ClaimSet
System.IdentityModel.Claims.ClaimTypes
System.IdentityModel.Claims.Rights
System.IdentityModel.Policy.AuthorizationContext
System.IdentityModel.Policy.EvaluationContext
System.IdentityModel.Selectors.CardSpacePolicyElement
System.IdentityModel.Selectors.CardSpaceSelector
System.IdentityModel.Selectors.SecurityTokenAuthenticator
System.IdentityModel.Selectors.SecurityTokenManager
System.IdentityModel.Selectors.SecurityTokenProvider
System.IdentityModel.Selectors.SecurityTokenRequirement
System.IdentityModel.Selectors.SecurityTokenResolver
System.IdentityModel.Selectors.SecurityTokenSerializer
System.IdentityModel.Selectors.SecurityTokenVersion
System.IdentityModel.Selectors.UserNamePasswordValidator
System.IdentityModel.Selectors.X509CertificateValidator
System.IdentityModel.Tokens.SamlAction
System.IdentityModel.Tokens.SamlAdvice
System.IdentityModel.Tokens.SamlAssertion
System.IdentityModel.Tokens.SamlAttribute
System.IdentityModel.Tokens.SamlAuthenticationClaimResource
System.IdentityModel.Tokens.SamlAuthorityBinding
System.IdentityModel.Tokens.SamlAuthorizationDecisionClaimResource
System.IdentityModel.Tokens.SamlCondition
System.IdentityModel.Tokens.SamlConditions
System.IdentityModel.Tokens.SamlConstants
System.IdentityModel.Tokens.SamlEvidence
System.IdentityModel.Tokens.SamlNameIdentifierClaimResource
System.IdentityModel.Tokens.SamlSerializer
System.IdentityModel.Tokens.SamlStatement
System.IdentityModel.Tokens.SamlSubject
System.IdentityModel.Tokens.SecurityAlgorithms
System.IdentityModel.Tokens.SecurityKey
System.IdentityModel.Tokens.SecurityKeyIdentifier
System.IdentityModel.Tokens.SecurityKeyIdentifierClause
System.IdentityModel.Tokens.SecurityToken
System.IdentityModel.Tokens.SecurityTokenTypes
System.IdentityModel.Tokens.SigningCredentials
System.IO.BinaryReader
System.IO.BinaryWriter
System.IO.Directory
System.IO.DriveInfo
System.IO.File
System.IO.Log.FileRecordSequence
System.IO.Log.FileRegion
System.IO.Log.LogArchiveSnapshot
System.IO.Log.LogExtent
System.IO.Log.LogExtentCollection
System.IO.Log.LogPolicy
System.IO.Log.LogRecord
System.IO.Log.LogRecordSequence
System.IO.Log.LogStore
System.IO.Log.ReservationCollection
System.IO.Packaging.EncryptedPackageEnvelope
System.IO.Packaging.Package
System.IO.Packaging.PackageDigitalSignature
System.IO.Packaging.PackageDigitalSignatureManager
System.IO.Packaging.PackagePart
System.IO.Packaging.PackagePartCollection
System.IO.Packaging.PackageProperties
System.IO.Packaging.PackageRelationship
System.IO.Packaging.PackageRelationshipCollection
System.IO.Packaging.PackageRelationshipSelector
System.IO.Packaging.PackageStore
System.IO.Packaging.PackUriHelper
System.IO.Packaging.PackWebRequestFactory
System.IO.Packaging.RightsManagementInformation
System.IO.Packaging.StorageInfo
System.IO.Packaging.StreamInfo
System.IO.Path
System.Linq.Enumerable
System.Linq.Expressions.ElementInit
System.Linq.Expressions.Expression
System.Linq.Expressions.MemberBinding
System.Linq.Lookup<TKey, TElement>
System.Linq.Queryable
System.LocalDataStoreSlot
System.Management.Instrumentation.BaseEvent
System.Management.Instrumentation.Instance
System.Management.Instrumentation.Instrumentation
System.Management.Instrumentation.InstrumentationManager
System.Management.Instrumentation.ManagedCommonProvider
System.Management.ManagementDateTimeConverter
System.Management.ManagementObjectCollection
System.Management.ManagementObjectCollection.ManagementObjectEnumerator
System.Management.ManagementOperationObserver
System.Management.ManagementOptions
System.Management.ManagementPath
System.Management.ManagementQuery
System.Management.ManagementScope
System.Management.MethodData
System.Management.MethodDataCollection
System.Management.MethodDataCollection.MethodDataEnumerator
System.Management.PropertyData
System.Management.PropertyDataCollection
System.Management.PropertyDataCollection.PropertyDataEnumerator
System.Management.QualifierData
System.Management.QualifierDataCollection
System.Management.QualifierDataCollection.QualifierDataEnumerator
System.MarshalByRefObject
System.Math
System.Media.SystemSound
System.Media.SystemSounds
System.Messaging.AccessControlEntry
System.Messaging.ActiveXMessageFormatter
System.Messaging.BinaryMessageFormatter
System.Messaging.Cursor
System.Messaging.DefaultPropertiesToSend
System.Messaging.MessagePropertyFilter
System.Messaging.MessageQueueCriteria
System.Messaging.MessageQueuePermissionEntry
System.Messaging.MessageQueueTransaction
System.Messaging.SecurityContext
System.Messaging.Trustee
System.Messaging.XmlMessageFormatter
System.Net.AuthenticationManager
System.Net.Authorization
System.Net.Cache.RequestCachePolicy
System.Net.Cookie
System.Net.CookieCollection
System.Net.CookieContainer
System.Net.CredentialCache
System.Net.Dns
System.Net.EndPoint
System.Net.EndpointPermission
System.Net.GlobalProxySelection
System.Net.HttpListener
System.Net.HttpListenerContext
System.Net.HttpListenerPrefixCollection
System.Net.HttpListenerRequest
System.Net.HttpListenerResponse
System.Net.HttpVersion
System.Net.IPAddress
System.Net.IPHostEntry
System.Net.Mail.AttachmentBase
System.Net.Mail.MailAddress
System.Net.Mail.MailMessage
System.Net.Mail.SmtpClient
System.Net.Mime.ContentDisposition
System.Net.Mime.ContentType
System.Net.Mime.DispositionTypeNames
System.Net.Mime.MediaTypeNames
System.Net.Mime.MediaTypeNames.Application
System.Net.Mime.MediaTypeNames.Image
System.Net.Mime.MediaTypeNames.Text
System.Net.NetworkCredential
System.Net.NetworkInformation.GatewayIPAddressInformation
System.Net.NetworkInformation.GatewayIPAddressInformationCollection
System.Net.NetworkInformation.IcmpV4Statistics
System.Net.NetworkInformation.IcmpV6Statistics
System.Net.NetworkInformation.IPAddressCollection
System.Net.NetworkInformation.IPAddressInformation
System.Net.NetworkInformation.IPAddressInformationCollection
System.Net.NetworkInformation.IPGlobalProperties
System.Net.NetworkInformation.IPGlobalStatistics
System.Net.NetworkInformation.IPInterfaceProperties
System.Net.NetworkInformation.IPv4InterfaceProperties
System.Net.NetworkInformation.IPv4InterfaceStatistics
System.Net.NetworkInformation.IPv6InterfaceProperties
System.Net.NetworkInformation.MulticastIPAddressInformationCollection
System.Net.NetworkInformation.NetworkChange
System.Net.NetworkInformation.NetworkInterface
System.Net.NetworkInformation.PhysicalAddress
System.Net.NetworkInformation.PingOptions
System.Net.NetworkInformation.PingReply
System.Net.NetworkInformation.TcpConnectionInformation
System.Net.NetworkInformation.TcpStatistics
System.Net.NetworkInformation.UdpStatistics
System.Net.NetworkInformation.UnicastIPAddressInformationCollection
System.Net.PeerToPeer.Cloud
System.Net.PeerToPeer.Collaboration.ContactManager
System.Net.PeerToPeer.Collaboration.Peer
System.Net.PeerToPeer.Collaboration.PeerApplication
System.Net.PeerToPeer.Collaboration.PeerApplicationLaunchInfo
System.Net.PeerToPeer.Collaboration.PeerCollaboration
System.Net.PeerToPeer.Collaboration.PeerEndPoint
System.Net.PeerToPeer.Collaboration.PeerInvitationResponse
System.Net.PeerToPeer.Collaboration.PeerObject
System.Net.PeerToPeer.Collaboration.PeerPresenceInfo
System.Net.PeerToPeer.PeerName
System.Net.PeerToPeer.PeerNameRecord
System.Net.PeerToPeer.PeerNameRegistration
System.Net.PeerToPeer.PeerNameResolver
System.Net.ServicePoint
System.Net.ServicePointManager
System.Net.SocketAddress
System.Net.Sockets.IPv6MulticastOption
System.Net.Sockets.LingerOption
System.Net.Sockets.MulticastOption
System.Net.Sockets.Socket
System.Net.Sockets.TcpClient
System.Net.Sockets.TcpListener
System.Net.Sockets.UdpClient
System.Net.WebProxy
System.Net.WebRequestMethods
System.Net.WebRequestMethods.File
System.Net.WebRequestMethods.Ftp
System.Net.WebRequestMethods.Http
System.Nullable
System.OperatingSystem
System.Printing.IndexedProperties.PrintProperty
System.Printing.Interop.PrintTicketConverter
System.Printing.PageImageableArea
System.Printing.PageMediaSize
System.Printing.PageResolution
System.Printing.PageScalingFactorRange
System.Printing.PrintCapabilities
System.Printing.PrintDocumentImageableArea
System.Printing.PrintJobSettings
System.Printing.PrintQueueStringProperty
System.Printing.PrintSystemObject
System.Printing.PrintSystemObjects
System.Printing.PrintTicket
System.Random
System.Reflection.Assembly
System.Reflection.AssemblyName
System.Reflection.Binder
System.Reflection.CustomAttributeData
System.Reflection.Emit.CustomAttributeBuilder
System.Reflection.Emit.DynamicILInfo
System.Reflection.Emit.EventBuilder
System.Reflection.Emit.ILGenerator
System.Reflection.Emit.MethodRental
System.Reflection.Emit.OpCodes
System.Reflection.Emit.ParameterBuilder
System.Reflection.Emit.SignatureHelper
System.Reflection.Emit.UnmanagedMarshal
System.Reflection.ExceptionHandlingClause
System.Reflection.LocalVariableInfo
System.Reflection.ManifestResourceInfo
System.Reflection.MemberInfo
System.Reflection.MethodBody
System.Reflection.Missing
System.Reflection.Module
System.Reflection.ParameterInfo
System.Reflection.Pointer
System.Reflection.StrongNameKeyPair
System.Resources.ResourceManager
System.Resources.ResourceReader
System.Resources.ResourceSet
System.Resources.ResourceWriter
System.Resources.ResXDataNode
System.Resources.ResXFileRef
System.Resources.ResXResourceReader
System.Resources.ResXResourceWriter
System.Resources.Tools.StronglyTypedResourceBuilder
System.Runtime.CompilerServices.CallConvCdecl
System.Runtime.CompilerServices.CallConvFastcall
System.Runtime.CompilerServices.CallConvStdcall
System.Runtime.CompilerServices.CallConvThiscall
System.Runtime.CompilerServices.CompilerMarshalOverride
System.Runtime.CompilerServices.ExecutionScope
System.Runtime.CompilerServices.IsBoxed
System.Runtime.CompilerServices.IsByValue
System.Runtime.CompilerServices.IsConst
System.Runtime.CompilerServices.IsCopyConstructed
System.Runtime.CompilerServices.IsExplicitlyDereferenced
System.Runtime.CompilerServices.IsImplicitlyDereferenced
System.Runtime.CompilerServices.IsJitIntrinsic
System.Runtime.CompilerServices.IsLong
System.Runtime.CompilerServices.IsPinned
System.Runtime.CompilerServices.IsSignUnspecifiedByte
System.Runtime.CompilerServices.IsUdtReturn
System.Runtime.CompilerServices.IsVolatile
System.Runtime.CompilerServices.RuntimeHelpers
System.Runtime.CompilerServices.StrongBox<T>
System.Runtime.ConstrainedExecution.CriticalFinalizerObject
System.Runtime.GCSettings
System.Runtime.Hosting.ActivationArguments
System.Runtime.Hosting.ApplicationActivator
System.Runtime.InteropServices.BStrWrapper
System.Runtime.InteropServices.CurrencyWrapper
System.Runtime.InteropServices.CustomMarshalers.EnumerableToDispatchMarshaler
System.Runtime.InteropServices.CustomMarshalers.EnumeratorToEnumVariantMarshaler
System.Runtime.InteropServices.CustomMarshalers.ExpandoToDispatchExMarshaler
System.Runtime.InteropServices.CustomMarshalers.TypeToTypeInfoMarshaler
System.Runtime.InteropServices.DispatchWrapper
System.Runtime.InteropServices.ErrorWrapper
System.Runtime.InteropServices.ExtensibleClassFactory
System.Runtime.InteropServices.HandleCollector
System.Runtime.InteropServices.Marshal
System.Runtime.InteropServices.RegistrationServices
System.Runtime.InteropServices.RuntimeEnvironment
System.Runtime.InteropServices.TypeLibConverter
System.Runtime.InteropServices.UnknownWrapper
System.Runtime.InteropServices.VariantWrapper
System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties
System.Runtime.Remoting.Channels.BinaryClientFormatterSink
System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider
System.Runtime.Remoting.Channels.BinaryServerFormatterSink
System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider
System.Runtime.Remoting.Channels.ChannelDataStore
System.Runtime.Remoting.Channels.ChannelServices
System.Runtime.Remoting.Channels.ClientChannelSinkStack
System.Runtime.Remoting.Channels.CommonTransportKeys
System.Runtime.Remoting.Channels.Http.HttpRemotingHandler
System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory
System.Runtime.Remoting.Channels.Ipc.IpcChannel
System.Runtime.Remoting.Channels.Ipc.IpcClientChannel
System.Runtime.Remoting.Channels.Ipc.IpcServerChannel
System.Runtime.Remoting.Channels.ServerChannelSinkStack
System.Runtime.Remoting.Channels.SinkProviderData
System.Runtime.Remoting.Channels.SoapClientFormatterSink
System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider
System.Runtime.Remoting.Channels.SoapServerFormatterSink
System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider
System.Runtime.Remoting.Channels.Tcp.TcpChannel
System.Runtime.Remoting.Channels.Tcp.TcpClientChannel
System.Runtime.Remoting.Channels.Tcp.TcpServerChannel
System.Runtime.Remoting.Channels.TransportHeaders
System.Runtime.Remoting.Contexts.Context
System.Runtime.Remoting.Contexts.ContextProperty
System.Runtime.Remoting.InternalRemotingServices
System.Runtime.Remoting.Lifetime.LifetimeServices
System.Runtime.Remoting.Messaging.AsyncResult
System.Runtime.Remoting.Messaging.CallContext
System.Runtime.Remoting.Messaging.Header
System.Runtime.Remoting.Messaging.InternalMessageWrapper
System.Runtime.Remoting.Messaging.LogicalCallContext
System.Runtime.Remoting.Messaging.MethodCall
System.Runtime.Remoting.Messaging.MethodResponse
System.Runtime.Remoting.Messaging.RemotingSurrogateSelector
System.Runtime.Remoting.Messaging.ReturnMessage
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDateTime
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDuration
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth
System.Runtime.Remoting.MetadataServices.MetaData
System.Runtime.Remoting.MetadataServices.SdlChannelSink
System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider
System.Runtime.Remoting.MetadataServices.ServiceType
System.Runtime.Remoting.ObjRef
System.Runtime.Remoting.Proxies.RealProxy
System.Runtime.Remoting.RemotingConfiguration
System.Runtime.Remoting.RemotingServices
System.Runtime.Remoting.Services.EnterpriseServicesHelper
System.Runtime.Remoting.Services.TrackingServices
System.Runtime.Remoting.SoapServices
System.Runtime.Remoting.TypeEntry
System.Runtime.Serialization.ExportOptions
System.Runtime.Serialization.ExtensionDataObject
System.Runtime.Serialization.Formatter
System.Runtime.Serialization.FormatterConverter
System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
System.Runtime.Serialization.Formatters.InternalRM
System.Runtime.Serialization.Formatters.InternalST
System.Runtime.Serialization.Formatters.ServerFault
System.Runtime.Serialization.Formatters.Soap.SoapFormatter
System.Runtime.Serialization.Formatters.SoapFault
System.Runtime.Serialization.Formatters.SoapMessage
System.Runtime.Serialization.FormatterServices
System.Runtime.Serialization.ImportOptions
System.Runtime.Serialization.Json.JsonReaderWriterFactory
System.Runtime.Serialization.ObjectIDGenerator
System.Runtime.Serialization.ObjectManager
System.Runtime.Serialization.SerializationBinder
System.Runtime.Serialization.SerializationInfo
System.Runtime.Serialization.SerializationInfoEnumerator
System.Runtime.Serialization.SerializationObjectManager
System.Runtime.Serialization.SurrogateSelector
System.Runtime.Serialization.XmlObjectSerializer
System.Runtime.Serialization.XmlSerializableServices
System.Runtime.Serialization.XsdDataContractExporter
System.Runtime.Serialization.XsdDataContractImporter
System.Runtime.Versioning.VersioningHelper
System.Security.AccessControl.AceEnumerator
System.Security.AccessControl.AuthorizationRule
System.Security.AccessControl.GenericAce
System.Security.AccessControl.GenericAcl
System.Security.AccessControl.GenericSecurityDescriptor
System.Security.AccessControl.ObjectSecurity
System.Security.CodeAccessPermission
System.Security.Cryptography.AsnEncodedData
System.Security.Cryptography.AsnEncodedDataCollection
System.Security.Cryptography.AsnEncodedDataEnumerator
System.Security.Cryptography.AsymmetricAlgorithm
System.Security.Cryptography.AsymmetricKeyExchangeDeformatter
System.Security.Cryptography.AsymmetricKeyExchangeFormatter
System.Security.Cryptography.AsymmetricSignatureDeformatter
System.Security.Cryptography.AsymmetricSignatureFormatter
System.Security.Cryptography.CngAlgorithm
System.Security.Cryptography.CngAlgorithmGroup
System.Security.Cryptography.CngKey
System.Security.Cryptography.CngKeyBlobFormat
System.Security.Cryptography.CngKeyCreationParameters
System.Security.Cryptography.CngProvider
System.Security.Cryptography.CngUIPolicy
System.Security.Cryptography.CryptoAPITransform
System.Security.Cryptography.CryptoConfig
System.Security.Cryptography.CryptographicAttributeObject
System.Security.Cryptography.CryptographicAttributeObjectCollection
System.Security.Cryptography.CryptographicAttributeObjectEnumerator
System.Security.Cryptography.CspKeyContainerInfo
System.Security.Cryptography.CspParameters
System.Security.Cryptography.DeriveBytes
System.Security.Cryptography.ECDiffieHellmanPublicKey
System.Security.Cryptography.FromBase64Transform
System.Security.Cryptography.HashAlgorithm
System.Security.Cryptography.KeySizes
System.Security.Cryptography.ManifestSignatureInformation
System.Security.Cryptography.MaskGenerationMethod
System.Security.Cryptography.Oid
System.Security.Cryptography.OidCollection
System.Security.Cryptography.OidEnumerator
System.Security.Cryptography.Pkcs.AlgorithmIdentifier
System.Security.Cryptography.Pkcs.CmsRecipient
System.Security.Cryptography.Pkcs.CmsRecipientCollection
System.Security.Cryptography.Pkcs.CmsRecipientEnumerator
System.Security.Cryptography.Pkcs.CmsSigner
System.Security.Cryptography.Pkcs.ContentInfo
System.Security.Cryptography.Pkcs.EnvelopedCms
System.Security.Cryptography.Pkcs.PublicKeyInfo
System.Security.Cryptography.Pkcs.RecipientInfo
System.Security.Cryptography.Pkcs.RecipientInfoCollection
System.Security.Cryptography.Pkcs.RecipientInfoEnumerator
System.Security.Cryptography.Pkcs.SignedCms
System.Security.Cryptography.Pkcs.SignerInfo
System.Security.Cryptography.Pkcs.SignerInfoCollection
System.Security.Cryptography.Pkcs.SignerInfoEnumerator
System.Security.Cryptography.Pkcs.SubjectIdentifier
System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey
System.Security.Cryptography.ProtectedData
System.Security.Cryptography.ProtectedMemory
System.Security.Cryptography.RandomNumberGenerator
System.Security.Cryptography.RijndaelManagedTransform
System.Security.Cryptography.SignatureDescription
System.Security.Cryptography.StrongNameSignatureInformation
System.Security.Cryptography.SymmetricAlgorithm
System.Security.Cryptography.ToBase64Transform
System.Security.Cryptography.X509Certificates.AuthenticodeSignatureInformation
System.Security.Cryptography.X509Certificates.PublicKey
System.Security.Cryptography.X509Certificates.TimestampInformation
System.Security.Cryptography.X509Certificates.X509Certificate
System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator
System.Security.Cryptography.X509Certificates.X509Certificate2UI
System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator
System.Security.Cryptography.X509Certificates.X509Chain
System.Security.Cryptography.X509Certificates.X509ChainElement
System.Security.Cryptography.X509Certificates.X509ChainElementCollection
System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator
System.Security.Cryptography.X509Certificates.X509ChainPolicy
System.Security.Cryptography.X509Certificates.X509ExtensionCollection
System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator
System.Security.Cryptography.X509Certificates.X509Store
System.Security.Cryptography.Xml.CipherData
System.Security.Cryptography.Xml.DataObject
System.Security.Cryptography.Xml.EncryptedReference
System.Security.Cryptography.Xml.EncryptedType
System.Security.Cryptography.Xml.EncryptedXml
System.Security.Cryptography.Xml.EncryptionMethod
System.Security.Cryptography.Xml.EncryptionProperty
System.Security.Cryptography.Xml.EncryptionPropertyCollection
System.Security.Cryptography.Xml.KeyInfo
System.Security.Cryptography.Xml.KeyInfoClause
System.Security.Cryptography.Xml.Reference
System.Security.Cryptography.Xml.ReferenceList
System.Security.Cryptography.Xml.Signature
System.Security.Cryptography.Xml.SignedInfo
System.Security.Cryptography.Xml.SignedXml
System.Security.Cryptography.Xml.Transform
System.Security.Cryptography.Xml.TransformChain
System.Security.HostSecurityManager
System.Security.Permissions.KeyContainerPermissionAccessEntry
System.Security.Permissions.KeyContainerPermissionAccessEntryCollection
System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator
System.Security.Permissions.PrincipalPermission
System.Security.Permissions.ResourcePermissionBaseEntry
System.Security.Permissions.StrongNamePublicKeyBlob
System.Security.PermissionSet
System.Security.Policy.AllMembershipCondition
System.Security.Policy.ApplicationDirectory
System.Security.Policy.ApplicationDirectoryMembershipCondition
System.Security.Policy.ApplicationSecurityInfo
System.Security.Policy.ApplicationSecurityManager
System.Security.Policy.ApplicationTrust
System.Security.Policy.ApplicationTrustCollection
System.Security.Policy.ApplicationTrustEnumerator
System.Security.Policy.CodeConnectAccess
System.Security.Policy.CodeGroup
System.Security.Policy.Evidence
System.Security.Policy.GacInstalled
System.Security.Policy.GacMembershipCondition
System.Security.Policy.Hash
System.Security.Policy.HashMembershipCondition
System.Security.Policy.PermissionRequestEvidence
System.Security.Policy.PolicyLevel
System.Security.Policy.PolicyStatement
System.Security.Policy.Publisher
System.Security.Policy.PublisherMembershipCondition
System.Security.Policy.Site
System.Security.Policy.SiteMembershipCondition
System.Security.Policy.StrongName
System.Security.Policy.StrongNameMembershipCondition
System.Security.Policy.TrustManagerContext
System.Security.Policy.Url
System.Security.Policy.UrlMembershipCondition
System.Security.Policy.Zone
System.Security.Policy.ZoneMembershipCondition
System.Security.Principal.GenericIdentity
System.Security.Principal.GenericPrincipal
System.Security.Principal.IdentityReference
System.Security.Principal.IdentityReferenceCollection
System.Security.Principal.WindowsIdentity
System.Security.Principal.WindowsImpersonationContext
System.Security.Principal.WindowsPrincipal
System.Security.RightsManagement.ContentGrant
System.Security.RightsManagement.ContentUser
System.Security.RightsManagement.CryptoProvider
System.Security.RightsManagement.LocalizedNameDescriptionPair
System.Security.RightsManagement.PublishLicense
System.Security.RightsManagement.SecureEnvironment
System.Security.RightsManagement.UnsignedPublishLicense
System.Security.RightsManagement.UseLicense
System.Security.SecurityContext
System.Security.SecurityElement
System.Security.SecurityManager
System.ServiceModel.Activation.HostedTransportConfiguration
System.ServiceModel.Activation.ServiceHostFactoryBase
System.ServiceModel.Activation.VirtualPathExtension
System.ServiceModel.BasicHttpMessageSecurity
System.ServiceModel.BasicHttpSecurity
System.ServiceModel.Channels.AddressHeader
System.ServiceModel.Channels.AddressingVersion
System.ServiceModel.Channels.Binding
System.ServiceModel.Channels.BindingContext
System.ServiceModel.Channels.BindingElement
System.ServiceModel.Channels.BodyWriter
System.ServiceModel.Channels.BufferManager
System.ServiceModel.Channels.ChannelPoolSettings
System.ServiceModel.Channels.CommunicationObject
System.ServiceModel.Channels.CompositeDuplexBindingElementImporter
System.ServiceModel.Channels.ContextBindingElementImporter
System.ServiceModel.Channels.ContextMessageProperty
System.ServiceModel.Channels.FaultConverter
System.ServiceModel.Channels.HttpRequestMessageProperty
System.ServiceModel.Channels.HttpResponseMessageProperty
System.ServiceModel.Channels.LocalClientSecuritySettings
System.ServiceModel.Channels.LocalServiceSecuritySettings
System.ServiceModel.Channels.Message
System.ServiceModel.Channels.MessageBuffer
System.ServiceModel.Channels.MessageEncoder
System.ServiceModel.Channels.MessageEncoderFactory
System.ServiceModel.Channels.MessageEncodingBindingElementImporter
System.ServiceModel.Channels.MessageFault
System.ServiceModel.Channels.MessageHeaderInfo
System.ServiceModel.Channels.MessageHeaders
System.ServiceModel.Channels.MessageProperties
System.ServiceModel.Channels.MessageVersion
System.ServiceModel.Channels.MsmqMessageProperty
System.ServiceModel.Channels.NamedPipeConnectionPoolSettings
System.ServiceModel.Channels.OneWayBindingElementImporter
System.ServiceModel.Channels.PrivacyNoticeBindingElementImporter
System.ServiceModel.Channels.ReliableSessionBindingElementImporter
System.ServiceModel.Channels.RequestContext
System.ServiceModel.Channels.SecurityBindingElementImporter
System.ServiceModel.Channels.StandardBindingImporter
System.ServiceModel.Channels.StreamUpgradeAcceptor
System.ServiceModel.Channels.StreamUpgradeInitiator
System.ServiceModel.Channels.TcpConnectionPoolSettings
System.ServiceModel.Channels.TransactionFlowBindingElementImporter
System.ServiceModel.Channels.TransactionMessageProperty
System.ServiceModel.Channels.TransportBindingElementImporter
System.ServiceModel.Channels.UnderstoodHeaders
System.ServiceModel.Channels.UseManagedPresentationBindingElementImporter
System.ServiceModel.Channels.WebBodyFormatMessageProperty
System.ServiceModel.Channels.WebContentTypeMapper
System.ServiceModel.Channels.XmlSerializerImportOptions
System.ServiceModel.ClientBase<TChannel>
System.ServiceModel.ComIntegration.DllHostInitializer
System.ServiceModel.ComIntegration.PersistStreamTypeWrapper
System.ServiceModel.Configuration.XPathMessageFilterElementComparer
System.ServiceModel.Description.CallbackDebugBehavior
System.ServiceModel.Description.ClientViaBehavior
System.ServiceModel.Description.ContractDescription
System.ServiceModel.Description.DataContractSerializerMessageContractImporter
System.ServiceModel.Description.DataContractSerializerOperationBehavior
System.ServiceModel.Description.FaultDescription
System.ServiceModel.Description.MessageBodyDescription
System.ServiceModel.Description.MessageDescription
System.ServiceModel.Description.MessagePartDescription
System.ServiceModel.Description.MetadataConversionError
System.ServiceModel.Description.MetadataExchangeBindings
System.ServiceModel.Description.MetadataExchangeClient
System.ServiceModel.Description.MetadataExporter
System.ServiceModel.Description.MetadataImporter
System.ServiceModel.Description.MetadataLocation
System.ServiceModel.Description.MetadataReference
System.ServiceModel.Description.MetadataResolver
System.ServiceModel.Description.MetadataSection
System.ServiceModel.Description.MetadataSet
System.ServiceModel.Description.MustUnderstandBehavior
System.ServiceModel.Description.OperationContractGenerationContext
System.ServiceModel.Description.OperationDescription
System.ServiceModel.Description.PersistenceProviderBehavior
System.ServiceModel.Description.PolicyConversionContext
System.ServiceModel.Description.ServiceAuthorizationBehavior
System.ServiceModel.Description.ServiceContractGenerationContext
System.ServiceModel.Description.ServiceContractGenerator
System.ServiceModel.Description.ServiceDebugBehavior
System.ServiceModel.Description.ServiceDescription
System.ServiceModel.Description.ServiceEndpoint
System.ServiceModel.Description.ServiceMetadataBehavior
System.ServiceModel.Description.ServiceMetadataExtension
System.ServiceModel.Description.ServiceSecurityAuditBehavior
System.ServiceModel.Description.ServiceThrottlingBehavior
System.ServiceModel.Description.SynchronousReceiveBehavior
System.ServiceModel.Description.TransactedBatchingBehavior
System.ServiceModel.Description.TypedMessageConverter
System.ServiceModel.Description.WebHttpBehavior
System.ServiceModel.Description.WorkflowRuntimeBehavior
System.ServiceModel.Description.WsdlContractConversionContext
System.ServiceModel.Description.WsdlEndpointConversionContext
System.ServiceModel.Description.XmlSerializerMessageContractImporter
System.ServiceModel.Description.XmlSerializerOperationBehavior
System.ServiceModel.Dispatcher.ClientOperation
System.ServiceModel.Dispatcher.ClientRuntime
System.ServiceModel.Dispatcher.DispatchOperation
System.ServiceModel.Dispatcher.DispatchRuntime
System.ServiceModel.Dispatcher.DurableOperationContext
System.ServiceModel.Dispatcher.EndpointDispatcher
System.ServiceModel.Dispatcher.ExceptionHandler
System.ServiceModel.Dispatcher.FaultContractInfo
System.ServiceModel.Dispatcher.MessageFilter
System.ServiceModel.Dispatcher.MessageFilterTable<TFilterData>
System.ServiceModel.Dispatcher.QueryStringConverter
System.ServiceModel.Dispatcher.ServiceThrottle
System.ServiceModel.Dispatcher.WebHttpDispatchOperationSelector
System.ServiceModel.Dispatcher.XPathMessageFilterTable<TFilterData>
System.ServiceModel.EndpointAddress
System.ServiceModel.EndpointAddress10
System.ServiceModel.EndpointAddressAugust2004
System.ServiceModel.EndpointAddressBuilder
System.ServiceModel.EndpointIdentity
System.ServiceModel.EnvelopeVersion
System.ServiceModel.ExceptionDetail
System.ServiceModel.FaultCode
System.ServiceModel.FaultReason
System.ServiceModel.FaultReasonText
System.ServiceModel.FederatedMessageSecurityOverHttp
System.ServiceModel.HttpTransportSecurity
System.ServiceModel.Install.Configuration.ServiceModelConfiguration
System.ServiceModel.Install.Configuration.ServiceModelConfigurationSection
System.ServiceModel.Install.Configuration.ServiceModelConfigurationSectionGroup
System.ServiceModel.Internal.TransactionBridge
System.ServiceModel.MessageHeader<T>
System.ServiceModel.MessageSecurityOverHttp
System.ServiceModel.MessageSecurityOverMsmq
System.ServiceModel.MessageSecurityOverTcp
System.ServiceModel.MessageSecurityVersion
System.ServiceModel.MsmqIntegration.MsmqIntegrationMessageProperty
System.ServiceModel.MsmqIntegration.MsmqIntegrationSecurity
System.ServiceModel.MsmqIntegration.MsmqMessage<T>
System.ServiceModel.MsmqTransportSecurity
System.ServiceModel.NamedPipeTransportSecurity
System.ServiceModel.NetMsmqSecurity
System.ServiceModel.NetNamedPipeSecurity
System.ServiceModel.NetTcpSecurity
System.ServiceModel.OperationContext
System.ServiceModel.OperationContextScope
System.ServiceModel.PeerMessagePropagationFilter
System.ServiceModel.PeerNode
System.ServiceModel.PeerNodeAddress
System.ServiceModel.PeerResolver
System.ServiceModel.PeerResolvers.CustomPeerResolverService
System.ServiceModel.PeerResolvers.PeerCustomResolverSettings
System.ServiceModel.PeerResolvers.PeerResolverSettings
System.ServiceModel.PeerResolvers.RefreshInfo
System.ServiceModel.PeerResolvers.RefreshResponseInfo
System.ServiceModel.PeerResolvers.RegisterInfo
System.ServiceModel.PeerResolvers.RegisterResponseInfo
System.ServiceModel.PeerResolvers.ResolveInfo
System.ServiceModel.PeerResolvers.ResolveResponseInfo
System.ServiceModel.PeerResolvers.ServiceSettingsResponseInfo
System.ServiceModel.PeerResolvers.UnregisterInfo
System.ServiceModel.PeerResolvers.UpdateInfo
System.ServiceModel.PeerSecuritySettings
System.ServiceModel.PeerTransportSecuritySettings
System.ServiceModel.ReliableSession
System.ServiceModel.Security.BasicSecurityProfileVersion
System.ServiceModel.Security.ChannelProtectionRequirements
System.ServiceModel.Security.HttpDigestClientCredential
System.ServiceModel.Security.IdentityVerifier
System.ServiceModel.Security.InfocardInteractiveChannelInitializer
System.ServiceModel.Security.IssuedTokenClientCredential
System.ServiceModel.Security.IssuedTokenServiceCredential
System.ServiceModel.Security.MessagePartSpecification
System.ServiceModel.Security.PeerCredential
System.ServiceModel.Security.ScopedMessagePartSpecification
System.ServiceModel.Security.SecureConversationServiceCredential
System.ServiceModel.Security.SecurityAlgorithmSuite
System.ServiceModel.Security.SecurityCredentialsManager
System.ServiceModel.Security.SecurityMessageProperty
System.ServiceModel.Security.SecurityStateEncoder
System.ServiceModel.Security.SecurityTokenSpecification
System.ServiceModel.Security.SecurityVersion
System.ServiceModel.Security.Tokens.ClaimTypeRequirement
System.ServiceModel.Security.Tokens.SecurityTokenParameters
System.ServiceModel.Security.Tokens.ServiceModelSecurityTokenTypes
System.ServiceModel.Security.Tokens.SupportingTokenParameters
System.ServiceModel.Security.UserNamePasswordClientCredential
System.ServiceModel.Security.UserNamePasswordServiceCredential
System.ServiceModel.Security.WindowsClientCredential
System.ServiceModel.Security.WindowsServiceCredential
System.ServiceModel.Security.X509CertificateInitiatorClientCredential
System.ServiceModel.Security.X509CertificateInitiatorServiceCredential
System.ServiceModel.Security.X509CertificateRecipientClientCredential
System.ServiceModel.Security.X509CertificateRecipientServiceCredential
System.ServiceModel.Security.X509ClientCertificateAuthentication
System.ServiceModel.Security.X509PeerCertificateAuthentication
System.ServiceModel.Security.X509ServiceCertificateAuthentication
System.ServiceModel.ServiceAuthorizationManager
System.ServiceModel.ServiceHostingEnvironment
System.ServiceModel.ServiceSecurityContext
System.ServiceModel.Syndication.SyndicationCategory
System.ServiceModel.Syndication.SyndicationContent
System.ServiceModel.Syndication.SyndicationElementExtension
System.ServiceModel.Syndication.SyndicationFeed
System.ServiceModel.Syndication.SyndicationFeedFormatter
System.ServiceModel.Syndication.SyndicationItem
System.ServiceModel.Syndication.SyndicationItemFormatter
System.ServiceModel.Syndication.SyndicationLink
System.ServiceModel.Syndication.SyndicationPerson
System.ServiceModel.Syndication.SyndicationVersions
System.ServiceModel.TcpTransportSecurity
System.ServiceModel.TransactionProtocol
System.ServiceModel.Web.IncomingWebRequestContext
System.ServiceModel.Web.IncomingWebResponseContext
System.ServiceModel.Web.OutgoingWebRequestContext
System.ServiceModel.Web.OutgoingWebResponseContext
System.ServiceModel.Web.WebOperationContext
System.ServiceModel.WebHttpSecurity
System.ServiceModel.WSDualHttpSecurity
System.ServiceModel.WSFederationHttpSecurity
System.ServiceModel.WSHttpSecurity
System.ServiceProcess.ServiceControllerPermissionEntry
System.Speech.AudioFormat.SpeechAudioFormatInfo
System.Speech.Recognition.Choices
System.Speech.Recognition.Grammar
System.Speech.Recognition.GrammarBuilder
System.Speech.Recognition.RecognizedAudio
System.Speech.Recognition.RecognizedPhrase
System.Speech.Recognition.RecognizedWordUnit
System.Speech.Recognition.RecognizerInfo
System.Speech.Recognition.ReplacementText
System.Speech.Recognition.SemanticResultKey
System.Speech.Recognition.SemanticResultValue
System.Speech.Recognition.SemanticValue
System.Speech.Recognition.SpeechRecognitionEngine
System.Speech.Recognition.SpeechRecognizer
System.Speech.Recognition.SpeechUI
System.Speech.Recognition.SrgsGrammar.SrgsDocument
System.Speech.Recognition.SrgsGrammar.SrgsGrammarCompiler
System.Speech.Recognition.SrgsGrammar.SrgsRule
System.Speech.Synthesis.InstalledVoice
System.Speech.Synthesis.Prompt
System.Speech.Synthesis.PromptBuilder
System.Speech.Synthesis.PromptStyle
System.Speech.Synthesis.SpeechSynthesizer
System.Speech.Synthesis.TtsEngine.Prosody
System.Speech.Synthesis.TtsEngine.SayAs
System.Speech.Synthesis.TtsEngine.SkipInfo
System.Speech.Synthesis.TtsEngine.TextFragment
System.Speech.Synthesis.TtsEngine.TtsEngineSsml
System.Speech.Synthesis.VoiceInfo
System.String
System.StringComparer
System.Text.Decoder
System.Text.DecoderFallback
System.Text.DecoderFallbackBuffer
System.Text.Encoder
System.Text.EncoderFallback
System.Text.EncoderFallbackBuffer
System.Text.Encoding
System.Text.EncodingInfo
System.Text.RegularExpressions.Capture
System.Text.RegularExpressions.CaptureCollection
System.Text.RegularExpressions.GroupCollection
System.Text.RegularExpressions.MatchCollection
System.Text.RegularExpressions.Regex
System.Text.RegularExpressions.RegexCompilationInfo
System.Text.RegularExpressions.RegexRunner
System.Text.RegularExpressions.RegexRunnerFactory
System.Text.StringBuilder
System.Threading.CompressedStack
System.Threading.ExecutionContext
System.Threading.HostExecutionContext
System.Threading.HostExecutionContextManager
System.Threading.Interlocked
System.Threading.Monitor
System.Threading.Overlapped
System.Threading.ReaderWriterLockSlim
System.Threading.SynchronizationContext
System.Threading.ThreadPool
System.Threading.Timeout
System.TimeZone
System.TimeZoneInfo
System.TimeZoneInfo.AdjustmentRule
System.Transactions.Enlistment
System.Transactions.Transaction
System.Transactions.TransactionInformation
System.Transactions.TransactionInterop
System.Transactions.TransactionManager
System.Transactions.TransactionScope
System.Uri
System.UriBuilder
System.UriParser
System.UriTemplate
System.UriTemplateEquivalenceComparer
System.UriTemplateMatch
System.UriTemplateTable
System.ValueType
System.Version
System.WeakReference
System.Web.ApplicationServices.AuthenticationService
System.Web.ApplicationServices.KnownTypesProvider
System.Web.ApplicationServices.ProfilePropertyMetadata
System.Web.ApplicationServices.ProfileService
System.Web.ApplicationServices.RoleService
System.Web.Caching.Cache
System.Web.Caching.CacheDependency
System.Web.Caching.SqlCacheDependencyAdmin
System.Web.ClientServices.ClientFormsIdentity
System.Web.ClientServices.ClientRolePrincipal
System.Web.ClientServices.ConnectivityStatus
System.Web.ClientServices.Providers.ClientFormsAuthenticationCredentials
System.Web.Compilation.AssemblyBuilder
System.Web.Compilation.BuildDependencySet
System.Web.Compilation.BuildManager
System.Web.Compilation.BuildProvider
System.Web.Compilation.ClientBuildManagerParameter
System.Web.Compilation.CompilerType
System.Web.Compilation.ExpressionBuilder
System.Web.Compilation.ExpressionBuilderContext
System.Web.Compilation.ImplicitResourceKey
System.Web.Compilation.LinePragmaCodeInfo
System.Web.Compilation.ResourceExpressionFields
System.Web.Compilation.ResourceProviderFactory
System.Web.Configuration.BrowserCapabilitiesCodeGenerator
System.Web.Configuration.BrowserCapabilitiesFactoryBase
System.Web.Configuration.HttpCapabilitiesBase
System.Web.Configuration.HttpCapabilitiesSectionHandler
System.Web.Configuration.HttpConfigurationContext
System.Web.Configuration.ProvidersHelper
System.Web.Configuration.RegexWorker
System.Web.Configuration.RemoteWebConfigurationHostServer
System.Web.Configuration.VirtualDirectoryMapping
System.Web.Configuration.WebConfigurationManager
System.Web.Configuration.WebContext
System.Web.DefaultHttpHandler
System.Web.Handlers.AssemblyResourceLoader
System.Web.Handlers.ScriptModule
System.Web.Handlers.ScriptResourceHandler
System.Web.Handlers.TraceHandler
System.Web.Hosting.AppDomainFactory
System.Web.Hosting.ApplicationHost
System.Web.Hosting.ApplicationInfo
System.Web.Hosting.AppManagerAppDomainFactory
System.Web.HttpApplication
System.Web.HttpCachePolicy
System.Web.HttpCacheVaryByHeaders
System.Web.HttpCacheVaryByParams
System.Web.HttpContext
System.Web.HttpCookie
System.Web.HttpPostedFile
System.Web.HttpRequest
System.Web.HttpResponse
System.Web.HttpRuntime
System.Web.HttpServerUtility
System.Web.HttpStaticObjectsCollection
System.Web.HttpUtility
System.Web.HttpWorkerRequest
System.Web.Mail.MailAttachment
System.Web.Mail.MailMessage
System.Web.Mail.SmtpMail
System.Web.Management.MailEventNotificationInfo
System.Web.Management.RegiisUtility
System.Web.Management.RuleFiringRecord
System.Web.Management.SqlServices
System.Web.Management.WebApplicationInformation
System.Web.Management.WebBaseEvent
System.Web.Management.WebEventBufferFlushInfo
System.Web.Management.WebEventCodes
System.Web.Management.WebEventFormatter
System.Web.Management.WebEventManager
System.Web.Management.WebProcessInformation
System.Web.Management.WebProcessStatistics
System.Web.Management.WebRequestInformation
System.Web.Management.WebThreadInformation
System.Web.Mobile.ErrorHandlerModule
System.Web.Mobile.MobileDeviceCapabilitiesSectionHandler
System.Web.Mobile.MobileErrorInfo
System.Web.Mobile.MobileFormsAuthentication
System.Web.ParserError
System.Web.ProcessInfo
System.Web.ProcessModelInfo
System.Web.Profile.ProfileGroupBase
System.Web.Profile.ProfileInfo
System.Web.Profile.ProfileInfoCollection
System.Web.Profile.ProfileManager
System.Web.Profile.ProfileModule
System.Web.Query.Dynamic.DynamicClass
System.Web.Script.Serialization.JavaScriptConverter
System.Web.Script.Serialization.JavaScriptSerializer
System.Web.Script.Serialization.JavaScriptTypeResolver
System.Web.Script.Services.ProxyGenerator
System.Web.Security.AnonymousIdentificationModule
System.Web.Security.DefaultAuthenticationModule
System.Web.Security.FileAuthorizationModule
System.Web.Security.FormsAuthentication
System.Web.Security.FormsAuthenticationModule
System.Web.Security.FormsAuthenticationTicket
System.Web.Security.FormsIdentity
System.Web.Security.Membership
System.Web.Security.MembershipUser
System.Web.Security.MembershipUserCollection
System.Web.Security.PassportAuthenticationModule
System.Web.Security.PassportIdentity
System.Web.Security.RoleManagerModule
System.Web.Security.RolePrincipal
System.Web.Security.Roles
System.Web.Security.UrlAuthorizationModule
System.Web.Security.WindowsAuthenticationModule
System.Web.Services.Description.BasicProfileViolation
System.Web.Services.Description.BasicProfileViolationEnumerator
System.Web.Services.Description.DocumentableItem
System.Web.Services.Description.MimeTextMatch
System.Web.Services.Description.ProtocolImporter
System.Web.Services.Description.ProtocolReflector
System.Web.Services.Description.ServiceDescriptionFormatExtension
System.Web.Services.Description.ServiceDescriptionImporter
System.Web.Services.Description.ServiceDescriptionReflector
System.Web.Services.Description.SoapExtensionImporter
System.Web.Services.Description.SoapExtensionReflector
System.Web.Services.Description.SoapTransportImporter
System.Web.Services.Description.WebReference
System.Web.Services.Description.WebReferenceOptions
System.Web.Services.Description.WebServicesInteroperability
System.Web.Services.Discovery.DiscoveryClientProtocol.DiscoveryClientResultsFile
System.Web.Services.Discovery.DiscoveryClientResult
System.Web.Services.Discovery.DiscoveryDocument
System.Web.Services.Discovery.DiscoveryReference
System.Web.Services.Discovery.DiscoveryRequestHandler
System.Web.Services.Discovery.DiscoverySearchPattern
System.Web.Services.Discovery.DynamicDiscoveryDocument
System.Web.Services.Discovery.ExcludePathInfo
System.Web.Services.Discovery.SoapBinding
System.Web.Services.Protocols.LogicalMethodInfo
System.Web.Services.Protocols.MimeFormatter
System.Web.Services.Protocols.PatternMatcher
System.Web.Services.Protocols.ServerProtocol
System.Web.Services.Protocols.ServerProtocolFactory
System.Web.Services.Protocols.ServerType
System.Web.Services.Protocols.Soap12FaultCodes
System.Web.Services.Protocols.SoapExtension
System.Web.Services.Protocols.SoapFaultSubCode
System.Web.Services.Protocols.SoapHeader
System.Web.Services.Protocols.SoapHeaderHandling
System.Web.Services.Protocols.SoapHeaderMapping
System.Web.Services.Protocols.SoapMessage
System.Web.Services.Protocols.SoapServerMethod
System.Web.Services.Protocols.WebClientAsyncResult
System.Web.Services.Protocols.WebServiceHandlerFactory
System.Web.SessionState.HttpSessionState
System.Web.SessionState.HttpSessionStateContainer
System.Web.SessionState.SessionIDManager
System.Web.SessionState.SessionStateModule
System.Web.SessionState.SessionStateStoreData
System.Web.SessionState.SessionStateUtility
System.Web.SessionState.StateRuntime
System.Web.SiteMap
System.Web.SiteMapNode
System.Web.SiteMapNodeCollection
System.Web.TraceContext
System.Web.TraceContextRecord
System.Web.UI.Adapters.ControlAdapter
System.Web.UI.AttributeCollection
System.Web.UI.AuthenticationServiceManager
System.Web.UI.BaseParser
System.Web.UI.ClientScriptManager
System.Web.UI.CompiledBindableTemplateBuilder
System.Web.UI.CompiledTemplateBuilder
System.Web.UI.Control
System.Web.UI.ControlBuilder
System.Web.UI.ControlCachePolicy
System.Web.UI.ControlCollection
System.Web.UI.ControlSkin
System.Web.UI.CssStyleCollection
System.Web.UI.DataBinder
System.Web.UI.DataBinding
System.Web.UI.DataBindingCollection
System.Web.UI.DataSourceSelectArguments
System.Web.UI.DataSourceView
System.Web.UI.Design.ClientScriptItem
System.Web.UI.Design.ColorBuilder
System.Web.UI.Design.ContentDefinition
System.Web.UI.Design.ControlDesignerState
System.Web.UI.Design.ControlParser
System.Web.UI.Design.ControlPersister
System.Web.UI.Design.DataBindingHandler
System.Web.UI.Design.DataBindingValueUIHandler
System.Web.UI.Design.DataSetFieldSchema
System.Web.UI.Design.DataSetSchema
System.Web.UI.Design.DataSetViewSchema
System.Web.UI.Design.DesignerAutoFormat
System.Web.UI.Design.DesignerAutoFormatCollection
System.Web.UI.Design.DesignerDataSourceView
System.Web.UI.Design.DesignerHierarchicalDataSourceView
System.Web.UI.Design.DesignerObject
System.Web.UI.Design.DesignerRegionCollection
System.Web.UI.Design.DesignTimeData
System.Web.UI.Design.DesignTimeResourceProviderFactory
System.Web.UI.Design.ExpressionEditor
System.Web.UI.Design.ExpressionEditorSheet
System.Web.UI.Design.MobileControls.MobileResource
System.Web.UI.Design.TemplateEditingService
System.Web.UI.Design.TemplateGroup
System.Web.UI.Design.TemplateGroupCollection
System.Web.UI.Design.TypeSchema
System.Web.UI.Design.UrlBuilder
System.Web.UI.Design.ViewEvent
System.Web.UI.Design.ViewRendering
System.Web.UI.Design.WebFormsReferenceManager
System.Web.UI.Design.WebFormsRootDesigner
System.Web.UI.Design.XmlDocumentSchema
System.Web.UI.DesignTimeParseData
System.Web.UI.DesignTimeTemplateParser
System.Web.UI.EventEntry
System.Web.UI.ExpressionBinding
System.Web.UI.ExpressionBindingCollection
System.Web.UI.HierarchicalDataSourceView
System.Web.UI.HtmlControls.HtmlTableCellCollection
System.Web.UI.HtmlControls.HtmlTableRowCollection
System.Web.UI.IndexedString
System.Web.UI.ListSourceHelper
System.Web.UI.LosFormatter
System.Web.UI.MobileControls.Adapters.ControlAdapter
System.Web.UI.MobileControls.Adapters.SR
System.Web.UI.MobileControls.Adapters.WmlMobileTextWriter.WmlFormat
System.Web.UI.MobileControls.Adapters.WmlMobileTextWriter.WmlLayout
System.Web.UI.MobileControls.Adapters.XhtmlAdapters.XhtmlCssHandler
System.Web.UI.MobileControls.ArrayListCollectionBase
System.Web.UI.MobileControls.Constants
System.Web.UI.MobileControls.ControlPager
System.Web.UI.MobileControls.DeviceSpecificChoice
System.Web.UI.MobileControls.DeviceSpecificChoiceTemplateContainer
System.Web.UI.MobileControls.FontInfo
System.Web.UI.MobileControls.ItemPager
System.Web.UI.MobileControls.MobileControlsSectionHandler
System.Web.UI.MobileControls.ObjectListCommand
System.Web.UI.MobileControls.ObjectListField
System.Web.UI.MobileControls.Style
System.Web.UI.MobileControls.TextViewElement
System.Web.UI.ObjectConverter
System.Web.UI.ObjectPersistData
System.Web.UI.ObjectStateFormatter
System.Web.UI.OutputCacheParameters
System.Web.UI.PageAsyncTask
System.Web.UI.PageHandlerFactory
System.Web.UI.PageParserFilter
System.Web.UI.PageStatePersister
System.Web.UI.PageTheme
System.Web.UI.Pair
System.Web.UI.PostBackOptions
System.Web.UI.ProfileServiceManager
System.Web.UI.PropertyConverter
System.Web.UI.PropertyEntry
System.Web.UI.RegisteredArrayDeclaration
System.Web.UI.RegisteredDisposeScript
System.Web.UI.RegisteredExpandoAttribute
System.Web.UI.RegisteredHiddenField
System.Web.UI.RegisteredScript
System.Web.UI.RoleServiceManager
System.Web.UI.ScriptDescriptor
System.Web.UI.ScriptReference
System.Web.UI.ServiceReference
System.Web.UI.SimpleWebHandlerParser
System.Web.UI.StateBag
System.Web.UI.StateItem
System.Web.UI.StateManagedCollection
System.Web.UI.ThemeProvider
System.Web.UI.Triplet
System.Web.UI.UpdatePanelTrigger
System.Web.UI.ValidatorCollection
System.Web.UI.WebControls.AutoGeneratedFieldProperties
System.Web.UI.WebControls.CalendarDay
System.Web.UI.WebControls.DataControlCommands
System.Web.UI.WebControls.DataControlField
System.Web.UI.WebControls.DataGridColumn
System.Web.UI.WebControls.DataGridColumnCollection
System.Web.UI.WebControls.DataGridItemCollection
System.Web.UI.WebControls.DataKey
System.Web.UI.WebControls.DataKeyArray
System.Web.UI.WebControls.DataKeyCollection
System.Web.UI.WebControls.DataListItemCollection
System.Web.UI.WebControls.DataPagerField
System.Web.UI.WebControls.DayRenderEventArgs
System.Web.UI.WebControls.DetailsViewRowCollection
System.Web.UI.WebControls.EmbeddedMailObject
System.Web.UI.WebControls.FontInfo
System.Web.UI.WebControls.GridViewRowCollection
System.Web.UI.WebControls.HotSpot
System.Web.UI.WebControls.ListItem
System.Web.UI.WebControls.ListItemCollection
System.Web.UI.WebControls.ListViewPagedDataSource
System.Web.UI.WebControls.MailDefinition
System.Web.UI.WebControls.MenuItem
System.Web.UI.WebControls.MenuItemBinding
System.Web.UI.WebControls.MenuItemCollection
System.Web.UI.WebControls.MonthChangedEventArgs
System.Web.UI.WebControls.PagedDataSource
System.Web.UI.WebControls.PagerSettings
System.Web.UI.WebControls.Parameter
System.Web.UI.WebControls.RepeaterItemCollection
System.Web.UI.WebControls.RepeatInfo
System.Web.UI.WebControls.RoleGroup
System.Web.UI.WebControls.SelectedDatesCollection
System.Web.UI.WebControls.TableCellCollection
System.Web.UI.WebControls.TableRowCollection
System.Web.UI.WebControls.TreeNode
System.Web.UI.WebControls.TreeNodeBinding
System.Web.UI.WebControls.TreeNodeCollection
System.Web.UI.WebControls.WebParts.CatalogPartChrome
System.Web.UI.WebControls.WebParts.ConnectionPoint
System.Web.UI.WebControls.WebParts.EditorPartChrome
System.Web.UI.WebControls.WebParts.PersonalizationAdministration
System.Web.UI.WebControls.WebParts.PersonalizationDictionary
System.Web.UI.WebControls.WebParts.PersonalizationEntry
System.Web.UI.WebControls.WebParts.PersonalizationState
System.Web.UI.WebControls.WebParts.PersonalizationStateInfo
System.Web.UI.WebControls.WebParts.PersonalizationStateInfoCollection
System.Web.UI.WebControls.WebParts.PersonalizationStateQuery
System.Web.UI.WebControls.WebParts.WebPartChrome
System.Web.UI.WebControls.WebParts.WebPartConnection
System.Web.UI.WebControls.WebParts.WebPartDescription
System.Web.UI.WebControls.WebParts.WebPartDisplayMode
System.Web.UI.WebControls.WebParts.WebPartManagerInternals
System.Web.UI.WebControls.WebParts.WebPartPersonalization
System.Web.UI.WebControls.WebParts.WebPartTracker
System.Web.UI.WebControls.WebParts.WebPartTransformer
System.Web.UI.WebControls.WebParts.WebPartUserCapability
System.Web.UI.WebControls.WebParts.WebPartVerb
System.Web.UI.WebControls.WizardStepCollection
System.Web.UI.XPathBinder
System.Web.Util.Transactions
System.Web.Util.WorkItem
System.Web.VirtualPathUtility
System.Windows.Annotations.Annotation
System.Windows.Annotations.AnnotationHelper
System.Windows.Annotations.AnnotationResource
System.Windows.Annotations.ContentLocatorBase
System.Windows.Annotations.ContentLocatorPart
System.Windows.Annotations.Storage.AnnotationStore
System.Windows.Automation.Automation
System.Windows.Automation.AutomationElement
System.Windows.Automation.AutomationElementCollection
System.Windows.Automation.AutomationElementIdentifiers
System.Windows.Automation.AutomationIdentifier
System.Windows.Automation.AutomationProperties
System.Windows.Automation.BasePattern
System.Windows.Automation.CacheRequest
System.Windows.Automation.ClientSettings
System.Windows.Automation.Condition
System.Windows.Automation.DockPatternIdentifiers
System.Windows.Automation.ExpandCollapsePatternIdentifiers
System.Windows.Automation.GridItemPatternIdentifiers
System.Windows.Automation.GridPatternIdentifiers
System.Windows.Automation.InvokePatternIdentifiers
System.Windows.Automation.MultipleViewPatternIdentifiers
System.Windows.Automation.Peers.GridViewAutomationPeer
System.Windows.Automation.Peers.HostedWindowWrapper
System.Windows.Automation.Provider.AutomationInteropProvider
System.Windows.Automation.RangeValuePatternIdentifiers
System.Windows.Automation.ScrollItemPatternIdentifiers
System.Windows.Automation.ScrollPatternIdentifiers
System.Windows.Automation.SelectionItemPatternIdentifiers
System.Windows.Automation.SelectionPatternIdentifiers
System.Windows.Automation.TableItemPatternIdentifiers
System.Windows.Automation.TablePatternIdentifiers
System.Windows.Automation.Text.TextPatternRange
System.Windows.Automation.TextPatternIdentifiers
System.Windows.Automation.TogglePatternIdentifiers
System.Windows.Automation.TransformPatternIdentifiers
System.Windows.Automation.TreeWalker
System.Windows.Automation.ValuePatternIdentifiers
System.Windows.Automation.WindowPatternIdentifiers
System.Windows.Clipboard
System.Windows.Condition
System.Windows.ContentOperations
System.Windows.Controls.BooleanToVisibilityConverter
System.Windows.Controls.BorderGapMaskConverter
System.Windows.Controls.ColumnDefinitionCollection
System.Windows.Controls.ContextMenuService
System.Windows.Controls.DataTemplateSelector
System.Windows.Controls.GroupStyle
System.Windows.Controls.ItemContainerGenerator
System.Windows.Controls.MenuScrollingVisibilityConverter
System.Windows.Controls.Primitives.LayoutInformation
System.Windows.Controls.PrintDialog
System.Windows.Controls.RowDefinitionCollection
System.Windows.Controls.SpellCheck
System.Windows.Controls.SpellingError
System.Windows.Controls.StyleSelector
System.Windows.Controls.ToolTipService
System.Windows.Controls.UIElementCollection
System.Windows.Controls.Validation
System.Windows.Controls.ValidationError
System.Windows.Controls.ValidationResult
System.Windows.Controls.ValidationRule
System.Windows.Data.BindingOperations
System.Windows.Data.CollectionViewGroup
System.Windows.Data.CompositeCollection
System.Windows.Data.DataSourceProvider
System.Windows.Data.XmlNamespaceMapping
System.Windows.DataFormat
System.Windows.DataFormats
System.Windows.DataObject
System.Windows.DependencyObjectType
System.Windows.DependencyProperty
System.Windows.DependencyPropertyHelper
System.Windows.DependencyPropertyKey
System.Windows.Documents.ContentPosition
System.Windows.Documents.DocumentPage
System.Windows.Documents.DocumentPaginator
System.Windows.Documents.DocumentReferenceCollection
System.Windows.Documents.DocumentStructures.BlockElement
System.Windows.Documents.DocumentStructures.StoryFragment
System.Windows.Documents.DocumentStructures.StoryFragments
System.Windows.Documents.EditingCommands
System.Windows.Documents.LinkTarget
System.Windows.Documents.PageContentCollection
System.Windows.Documents.PresentationUIStyleResources
System.Windows.Documents.Serialization.SerializerDescriptor
System.Windows.Documents.Serialization.SerializerProvider
System.Windows.Documents.Serialization.SerializerWriter
System.Windows.Documents.Serialization.SerializerWriterCollator
System.Windows.Documents.TableCellCollection
System.Windows.Documents.TableColumnCollection
System.Windows.Documents.TableRowCollection
System.Windows.Documents.TableRowGroupCollection
System.Windows.Documents.TextEffectResolver
System.Windows.Documents.TextEffectTarget
System.Windows.Documents.TextElementCollection<TextElementType>
System.Windows.Documents.TextRange
System.Windows.Documents.Typography
System.Windows.Documents.ZoomPercentageConverter
System.Windows.DragDrop
System.Windows.EventManager
System.Windows.EventPrivateKey
System.Windows.EventRoute
System.Windows.Expression
System.Windows.FontStretches
System.Windows.FontStyles
System.Windows.FontWeights
System.Windows.Forms.AmbientProperties
System.Windows.Forms.Application
System.Windows.Forms.ApplicationContext
System.Windows.Forms.AutoCompleteStringCollection
System.Windows.Forms.AxHost.ConnectionPointCookie
System.Windows.Forms.AxHost.State
System.Windows.Forms.Binding
System.Windows.Forms.BindingContext
System.Windows.Forms.BindingManagerBase
System.Windows.Forms.ButtonRenderer
System.Windows.Forms.CheckBoxRenderer
System.Windows.Forms.CheckedListBox.CheckedIndexCollection
System.Windows.Forms.CheckedListBox.CheckedItemCollection
System.Windows.Forms.Clipboard
System.Windows.Forms.ComboBox.ObjectCollection
System.Windows.Forms.ComboBoxRenderer
System.Windows.Forms.ComponentModel.Com2Interop.Com2Variant
System.Windows.Forms.ControlPaint
System.Windows.Forms.CreateParams
System.Windows.Forms.Cursor
System.Windows.Forms.Cursors
System.Windows.Forms.DataFormats
System.Windows.Forms.DataFormats.Format
System.Windows.Forms.DataGrid.HitTestInfo
System.Windows.Forms.DataGridColumnStyle.CompModSwitches
System.Windows.Forms.DataGridView.HitTestInfo
System.Windows.Forms.DataGridViewAdvancedBorderStyle
System.Windows.Forms.DataGridViewCellStyle
System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection
System.Windows.Forms.DataGridViewElement
System.Windows.Forms.DataGridViewRowCollection
System.Windows.Forms.DataObject
System.Windows.Forms.Design.AxImporter
System.Windows.Forms.Design.AxImporter.Options
System.Windows.Forms.Design.AxParameterData
System.Windows.Forms.Design.AxWrapperGen
System.Windows.Forms.Design.Behavior.Adorner
System.Windows.Forms.Design.Behavior.Behavior
System.Windows.Forms.Design.Behavior.BehaviorService
System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollectionEnumerator
System.Windows.Forms.Design.Behavior.Glyph
System.Windows.Forms.Design.Behavior.SnapLine
System.Windows.Forms.Design.DesignerOptions
System.Windows.Forms.Design.EventHandlerService
System.Windows.Forms.Design.MaskDescriptor
System.Windows.Forms.Design.PropertyTab
System.Windows.Forms.FeatureSupport
System.Windows.Forms.FlatButtonAppearance
System.Windows.Forms.GridItem
System.Windows.Forms.GridItemCollection
System.Windows.Forms.GridTablesFactory
System.Windows.Forms.GroupBoxRenderer
System.Windows.Forms.Help
System.Windows.Forms.HtmlDocument
System.Windows.Forms.HtmlElement
System.Windows.Forms.HtmlElementCollection
System.Windows.Forms.HtmlHistory
System.Windows.Forms.HtmlWindow
System.Windows.Forms.HtmlWindowCollection
System.Windows.Forms.ImageList.ImageCollection
System.Windows.Forms.ImageListStreamer
System.Windows.Forms.InputLanguage
System.Windows.Forms.Integration.PropertyMap
System.Windows.Forms.Layout.ArrangedElementCollection
System.Windows.Forms.Layout.LayoutEngine
System.Windows.Forms.LayoutSettings
System.Windows.Forms.LinkLabel.Link
System.Windows.Forms.LinkLabel.LinkCollection
System.Windows.Forms.ListBindingHelper
System.Windows.Forms.ListBox.IntegerCollection
System.Windows.Forms.ListBox.ObjectCollection
System.Windows.Forms.ListBox.SelectedIndexCollection
System.Windows.Forms.ListBox.SelectedObjectCollection
System.Windows.Forms.ListView.CheckedIndexCollection
System.Windows.Forms.ListView.CheckedListViewItemCollection
System.Windows.Forms.ListView.ColumnHeaderCollection
System.Windows.Forms.ListView.ListViewItemCollection
System.Windows.Forms.ListView.SelectedIndexCollection
System.Windows.Forms.ListView.SelectedListViewItemCollection
System.Windows.Forms.ListViewGroup
System.Windows.Forms.ListViewGroupCollection
System.Windows.Forms.ListViewHitTestInfo
System.Windows.Forms.ListViewInsertionMark
System.Windows.Forms.ListViewItem
System.Windows.Forms.ListViewItem.ListViewSubItem
System.Windows.Forms.ListViewItem.ListViewSubItemCollection
System.Windows.Forms.Menu.MenuItemCollection
System.Windows.Forms.MessageBox
System.Windows.Forms.MonthCalendar.HitTestInfo
System.Windows.Forms.NumericUpDownAcceleration
System.Windows.Forms.PowerStatus
System.Windows.Forms.ProfessionalColors
System.Windows.Forms.ProfessionalColorTable
System.Windows.Forms.ProgressBarRenderer
System.Windows.Forms.PropertyGrid.PropertyTabCollection
System.Windows.Forms.PropertyGridInternal.PropertyGridCommands
System.Windows.Forms.RadioButtonRenderer
System.Windows.Forms.Screen
System.Windows.Forms.ScrollableControl.DockPaddingEdges
System.Windows.Forms.ScrollBarRenderer
System.Windows.Forms.ScrollProperties
System.Windows.Forms.SelectionRange
System.Windows.Forms.SendKeys
System.Windows.Forms.StatusBar.StatusBarPanelCollection
System.Windows.Forms.SystemInformation
System.Windows.Forms.TabControl.TabPageCollection
System.Windows.Forms.TableLayoutStyle
System.Windows.Forms.TableLayoutStyleCollection
System.Windows.Forms.TabRenderer
System.Windows.Forms.TextBoxRenderer
System.Windows.Forms.TextRenderer
System.Windows.Forms.ToolBar.ToolBarButtonCollection
System.Windows.Forms.ToolStripManager
System.Windows.Forms.ToolStripRenderer
System.Windows.Forms.TrackBarRenderer
System.Windows.Forms.TreeNodeCollection
System.Windows.Forms.TreeViewHitTestInfo
System.Windows.Forms.VisualStyles.VisualStyleElement
System.Windows.Forms.VisualStyles.VisualStyleElement.Button
System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox
System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox
System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Button.UserButton
System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox
System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderBackground
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupBackground
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupHead
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupBackground
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand
System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupHead
System.Windows.Forms.VisualStyles.VisualStyleElement.Header
System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item
System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft
System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight
System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow
System.Windows.Forms.VisualStyles.VisualStyleElement.ListView
System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Detail
System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.EmptyText
System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Group
System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item
System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.SortedDetail
System.Windows.Forms.VisualStyles.VisualStyleElement.Menu
System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarDropDown
System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarItem
System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Chevron
System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.DropDown
System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item
System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Separator
System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand
System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton
System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.Separator
System.Windows.Forms.VisualStyles.VisualStyleElement.Page
System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down
System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal
System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up
System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal
System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar
System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Bar
System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.BarVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk
System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.ChunkVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar
System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Band
System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron
System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Gripper
System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.GripperVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperHorizontal
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.Spin
System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down
System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal
System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up
System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOff
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MorePrograms
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceList
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceListSeparator
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.Preview
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgList
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgListSeparator
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPane
System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPicture
System.Windows.Forms.VisualStyles.VisualStyleElement.Status
System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Bar
System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Gripper
System.Windows.Forms.VisualStyles.VisualStyleElement.Status.GripperPane
System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Pane
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Body
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Pane
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemBothEdges
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemBothEdges
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge
System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge
System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand
System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButton
System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButtonGroupMenu
System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.GroupCount
System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar
System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundBottom
System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundLeft
System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundRight
System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundTop
System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarBottom
System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarLeft
System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarRight
System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarTop
System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock
System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock.Time
System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox
System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.Caret
System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorHorizontal
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.BalloonTitle
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard
System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.StandardTitle
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Ticks
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TicksVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Track
System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TrackVertical
System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify
System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.AnimateBackground
System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.Background
System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView
System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Branch
System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph
System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item
System.Windows.Forms.VisualStyles.VisualStyleElement.Window
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CaptionSizingTemplate
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Dialog
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottomSizingTemplate
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeftSizingTemplate
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRightSizingTemplate
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaptionSizingTemplate
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottomSizingTemplate
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeftSizingTemplate
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRightSizingTemplate
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll
System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb
System.Windows.Forms.VisualStyles.VisualStyleInformation
System.Windows.Forms.VisualStyles.VisualStyleRenderer
System.Windows.Forms.WebBrowserSiteBase
System.Windows.FrameworkElementFactory
System.Windows.Ink.DrawingAttributeIds
System.Windows.Ink.DrawingAttributes
System.Windows.Ink.GestureRecognitionResult
System.Windows.Ink.IncrementalHitTester
System.Windows.Ink.Stroke
System.Windows.Ink.StylusShape
System.Windows.Input.AccessKeyManager
System.Windows.Input.ApplicationCommands
System.Windows.Input.CommandBinding
System.Windows.Input.CommandBindingCollection
System.Windows.Input.CommandManager
System.Windows.Input.ComponentCommands
System.Windows.Input.Cursor
System.Windows.Input.Cursors
System.Windows.Input.FocusManager
System.Windows.Input.InputBindingCollection
System.Windows.Input.InputGesture
System.Windows.Input.InputGestureCollection
System.Windows.Input.InputScope
System.Windows.Input.InputScopeName
System.Windows.Input.InputScopePhrase
System.Windows.Input.Keyboard
System.Windows.Input.KeyboardNavigation
System.Windows.Input.KeyInterop
System.Windows.Input.MediaCommands
System.Windows.Input.Mouse
System.Windows.Input.NavigationCommands
System.Windows.Input.RoutedCommand
System.Windows.Input.StagingAreaInputItem
System.Windows.Input.Stylus
System.Windows.Input.StylusButton
System.Windows.Input.StylusPlugIns.RawStylusInput
System.Windows.Input.StylusPlugIns.StylusPlugIn
System.Windows.Input.StylusPointDescription
System.Windows.Input.StylusPointProperties
System.Windows.Input.StylusPointProperty
System.Windows.Input.Tablet
System.Windows.Input.TabletDeviceCollection
System.Windows.Input.TraversalRequest
System.Windows.Interop.BrowserInteropHelper
System.Windows.Interop.ComponentDispatcher
System.Windows.Interop.CursorInteropHelper
System.Windows.Interop.Imaging
System.Windows.Interop.WindowInteropHelper
System.Windows.Localization
System.Windows.LogicalTreeHelper
System.Windows.Markup.InternalTypeHelper
System.Windows.Markup.Localizer.BamlLocalizabilityResolver
System.Windows.Markup.Localizer.BamlLocalizableResource
System.Windows.Markup.Localizer.BamlLocalizableResourceKey
System.Windows.Markup.Localizer.BamlLocalizationDictionary
System.Windows.Markup.Localizer.BamlLocalizationDictionaryEnumerator
System.Windows.Markup.Localizer.BamlLocalizer
System.Windows.Markup.Localizer.ElementLocalizability
System.Windows.Markup.MarkupExtension
System.Windows.Markup.NamespaceMapEntry
System.Windows.Markup.ParserContext
System.Windows.Markup.Primitives.MarkupObject
System.Windows.Markup.Primitives.MarkupProperty
System.Windows.Markup.Primitives.MarkupWriter
System.Windows.Markup.ServiceProviders
System.Windows.Markup.ValueSerializer
System.Windows.Markup.XamlInstanceCreator
System.Windows.Markup.XamlReader
System.Windows.Markup.XamlTypeMapper
System.Windows.Markup.XamlWriter
System.Windows.Markup.XmlAttributeProperties
System.Windows.Markup.XmlLanguage
System.Windows.Markup.XmlnsDictionary
System.Windows.Media.Animation.ClockCollection
System.Windows.Media.Brushes
System.Windows.Media.CharacterMetrics
System.Windows.Media.CharacterMetricsDictionary
System.Windows.Media.ColorContext
System.Windows.Media.Colors
System.Windows.Media.DashStyles
System.Windows.Media.FamilyTypeface
System.Windows.Media.FamilyTypefaceCollection
System.Windows.Media.FontEmbeddingManager
System.Windows.Media.FontFamily
System.Windows.Media.FontFamilyMap
System.Windows.Media.FontFamilyMapCollection
System.Windows.Media.Fonts
System.Windows.Media.FormattedText
System.Windows.Media.GlyphRun
System.Windows.Media.GlyphTypeface
System.Windows.Media.HitTestParameters
System.Windows.Media.HitTestResult
System.Windows.Media.Imaging.BitmapCodecInfo
System.Windows.Media.Imaging.BitmapMetadataBlob
System.Windows.Media.Imaging.BitmapPalettes
System.Windows.Media.Imaging.BitmapSizeOptions
System.Windows.Media.LanguageSpecificStringDictionary
System.Windows.Media.Media3D.HitTestParameters3D
System.Windows.Media.Media3D.Visual3DCollection
System.Windows.Media.NumberSubstitution
System.Windows.Media.PixelFormats
System.Windows.Media.RenderCapability
System.Windows.Media.RenderOptions
System.Windows.Media.TextFormatting.CultureSpecificCharacterBufferRange
System.Windows.Media.TextFormatting.IndexedGlyphRun
System.Windows.Media.TextFormatting.TextBounds
System.Windows.Media.TextFormatting.TextCollapsedRange
System.Windows.Media.TextFormatting.TextCollapsingProperties
System.Windows.Media.TextFormatting.TextEmbeddedObjectMetrics
System.Windows.Media.TextFormatting.TextFormatter
System.Windows.Media.TextFormatting.TextLine
System.Windows.Media.TextFormatting.TextLineBreak
System.Windows.Media.TextFormatting.TextMarkerProperties
System.Windows.Media.TextFormatting.TextParagraphProperties
System.Windows.Media.TextFormatting.TextRun
System.Windows.Media.TextFormatting.TextRunBounds
System.Windows.Media.TextFormatting.TextRunCache
System.Windows.Media.TextFormatting.TextRunProperties
System.Windows.Media.TextFormatting.TextRunTypographyProperties
System.Windows.Media.TextFormatting.TextSource
System.Windows.Media.TextFormatting.TextSpan<T>
System.Windows.Media.TextFormatting.TextTabProperties
System.Windows.Media.Typeface
System.Windows.Media.VisualCollection
System.Windows.Media.VisualTreeHelper
System.Windows.MessageBox
System.Windows.NameScope
System.Windows.Navigation.BaseUriHelper
System.Windows.Navigation.CustomContentState
System.Windows.Navigation.JournalEntryListConverter
System.Windows.Navigation.JournalEntryUnifiedViewConverter
System.Windows.Navigation.NavigationService
System.Windows.PropertyMetadata
System.Windows.PropertyPath
System.Windows.ResourceDictionary
System.Windows.Resources.ContentTypes
System.Windows.Resources.StreamResourceInfo
System.Windows.RoutedEvent
System.Windows.SetterBase
System.Windows.SizeChangedInfo
System.Windows.SystemColors
System.Windows.SystemFonts
System.Windows.SystemParameters
System.Windows.TextDecorations
System.Windows.Threading.Dispatcher
System.Windows.Threading.DispatcherHooks
System.Windows.Threading.DispatcherObject
System.Windows.Threading.DispatcherOperation
System.Windows.Threading.DispatcherTimer
System.Windows.TriggerActionCollection
System.Windows.WeakEventManager.ListenerList
System.Windows.WindowCollection
System.Windows.Xps.Packaging.SpotLocation
System.Windows.Xps.Packaging.XpsDigitalSignature
System.Windows.Xps.Packaging.XpsPartBase
System.Windows.Xps.Packaging.XpsSignatureDefinition
System.Windows.Xps.Serialization.BasePackagingPolicy
System.Windows.Xps.Serialization.PackageSerializationManager
System.Windows.Xps.Serialization.XpsResourceStream
System.Windows.Xps.Serialization.XpsSerializerFactory
System.Workflow.Activities.ActiveDirectoryRoleFactory
System.Workflow.Activities.EventQueueName
System.Workflow.Activities.MessageEventSubscription
System.Workflow.Activities.Rules.Rule
System.Workflow.Activities.Rules.RuleAction
System.Workflow.Activities.Rules.RuleActionTrackingEvent
System.Workflow.Activities.Rules.RuleAnalysis
System.Workflow.Activities.Rules.RuleCondition
System.Workflow.Activities.Rules.RuleDefinitions
System.Workflow.Activities.Rules.RuleEngine
System.Workflow.Activities.Rules.RuleExecution
System.Workflow.Activities.Rules.RuleExpressionInfo
System.Workflow.Activities.Rules.RuleExpressionResult
System.Workflow.Activities.Rules.RuleExpressionWalker
System.Workflow.Activities.Rules.RulePathQualifier
System.Workflow.Activities.Rules.RuleSet
System.Workflow.Activities.Rules.RuleValidation
System.Workflow.Activities.StateMachineWorkflowInstance
System.Workflow.Activities.WorkflowRole
System.Workflow.Activities.WorkflowSubscriptionService
System.Workflow.ComponentModel.ActivityExecutionContext
System.Workflow.ComponentModel.ActivityExecutionContextManager
System.Workflow.ComponentModel.Compiler.ActivityCodeGenerator
System.Workflow.ComponentModel.Compiler.AttributeInfo
System.Workflow.ComponentModel.Compiler.AuthorizedType
System.Workflow.ComponentModel.Compiler.BindValidationContext
System.Workflow.ComponentModel.Compiler.CodeGenerationManager
System.Workflow.ComponentModel.Compiler.PropertyValidationContext
System.Workflow.ComponentModel.Compiler.TypeProvider
System.Workflow.ComponentModel.Compiler.ValidationError
System.Workflow.ComponentModel.Compiler.ValidationManager
System.Workflow.ComponentModel.Compiler.Validator
System.Workflow.ComponentModel.Compiler.WorkflowCompiler
System.Workflow.ComponentModel.DependencyObject
System.Workflow.ComponentModel.DependencyProperty
System.Workflow.ComponentModel.Design.ActivityDesigner
System.Workflow.ComponentModel.Design.ActivityDesignerPaint
System.Workflow.ComponentModel.Design.ConnectionPoint
System.Workflow.ComponentModel.Design.Connector
System.Workflow.ComponentModel.Design.DesignerAction
System.Workflow.ComponentModel.Design.DesignerGlyph
System.Workflow.ComponentModel.Design.DesignerTheme
System.Workflow.ComponentModel.Design.DesignerView
System.Workflow.ComponentModel.Design.HitTestInfo
System.Workflow.ComponentModel.Design.SequentialWorkflowHeaderFooter
System.Workflow.ComponentModel.Design.WorkflowDesignerMessageFilter
System.Workflow.ComponentModel.Design.WorkflowTheme
System.Workflow.ComponentModel.PropertyMetadata
System.Workflow.ComponentModel.Serialization.ActivityCodeDomSerializationManager
System.Workflow.ComponentModel.Serialization.MarkupExtension
System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializationManager
System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializer
System.Workflow.ComponentModel.WorkflowChangeAction
System.Workflow.ComponentModel.WorkflowChanges
System.Workflow.Runtime.CorrelationProperty
System.Workflow.Runtime.Hosting.SqlPersistenceWorkflowInstanceDescription
System.Workflow.Runtime.Hosting.WorkflowRuntimeService
System.Workflow.Runtime.Hosting.WorkflowWebHostingModule
System.Workflow.Runtime.TimerEventSubscription
System.Workflow.Runtime.TimerEventSubscriptionCollection
System.Workflow.Runtime.Tracking.ActivityTrackingLocation
System.Workflow.Runtime.Tracking.ActivityTrackPoint
System.Workflow.Runtime.Tracking.SqlTrackingQuery
System.Workflow.Runtime.Tracking.SqlTrackingQueryOptions
System.Workflow.Runtime.Tracking.SqlTrackingWorkflowInstance
System.Workflow.Runtime.Tracking.TrackingChannel
System.Workflow.Runtime.Tracking.TrackingCondition
System.Workflow.Runtime.Tracking.TrackingDataItem
System.Workflow.Runtime.Tracking.TrackingDataItemValue
System.Workflow.Runtime.Tracking.TrackingExtract
System.Workflow.Runtime.Tracking.TrackingParameters
System.Workflow.Runtime.Tracking.TrackingProfile
System.Workflow.Runtime.Tracking.TrackingProfileCache
System.Workflow.Runtime.Tracking.TrackingProfileSerializer
System.Workflow.Runtime.Tracking.TrackingRecord
System.Workflow.Runtime.Tracking.UserTrackingLocation
System.Workflow.Runtime.Tracking.UserTrackPoint
System.Workflow.Runtime.Tracking.WorkflowTrackingLocation
System.Workflow.Runtime.Tracking.WorkflowTrackPoint
System.Workflow.Runtime.WorkflowEnvironment
System.Workflow.Runtime.WorkflowInstance
System.Workflow.Runtime.WorkflowQueue
System.Workflow.Runtime.WorkflowQueueInfo
System.Workflow.Runtime.WorkflowQueuingService
System.Workflow.Runtime.WorkflowRuntime
System.Xml.Linq.Extensions
System.Xml.Linq.XDeclaration
System.Xml.Linq.XName
System.Xml.Linq.XNamespace
System.Xml.Linq.XNodeDocumentOrderComparer
System.Xml.Linq.XNodeEqualityComparer
System.Xml.Linq.XObject
System.Xml.Linq.XStreamingElement
System.Xml.Schema.Extensions
System.Xml.Schema.XmlSchemaCollection
System.Xml.Schema.XmlSchemaCollectionEnumerator
System.Xml.Schema.XmlSchemaCompilationSettings
System.Xml.Schema.XmlSchemaDatatype
System.Xml.Schema.XmlSchemaInference
System.Xml.Schema.XmlSchemaInfo
System.Xml.Schema.XmlSchemaObject
System.Xml.Schema.XmlSchemaObjectEnumerator
System.Xml.Schema.XmlSchemaObjectTable
System.Xml.Schema.XmlSchemaSet
System.Xml.Schema.XmlSchemaValidator
System.Xml.Serialization.Advanced.SchemaImporterExtension
System.Xml.Serialization.CodeExporter
System.Xml.Serialization.CodeIdentifier
System.Xml.Serialization.CodeIdentifiers
System.Xml.Serialization.ImportContext
System.Xml.Serialization.SchemaImporter
System.Xml.Serialization.SoapAttributeOverrides
System.Xml.Serialization.SoapAttributes
System.Xml.Serialization.SoapReflectionImporter
System.Xml.Serialization.SoapSchemaExporter
System.Xml.Serialization.SoapSchemaMember
System.Xml.Serialization.XmlAttributeOverrides
System.Xml.Serialization.XmlAttributes
System.Xml.Serialization.XmlMapping
System.Xml.Serialization.XmlMemberMapping
System.Xml.Serialization.XmlReflectionImporter
System.Xml.Serialization.XmlReflectionMember
System.Xml.Serialization.XmlSchemaEnumerator
System.Xml.Serialization.XmlSchemaExporter
System.Xml.Serialization.XmlSerializationGeneratedCode
System.Xml.Serialization.XmlSerializationReader.CollectionFixup
System.Xml.Serialization.XmlSerializationReader.Fixup
System.Xml.Serialization.XmlSerializer
System.Xml.Serialization.XmlSerializerFactory
System.Xml.Serialization.XmlSerializerImplementation
System.Xml.Serialization.XmlSerializerNamespaces
System.Xml.UniqueId
System.Xml.XmlBinaryReaderSession
System.Xml.XmlBinaryWriterSession
System.Xml.XmlConvert
System.Xml.XmlDictionary
System.Xml.XmlDictionaryReaderQuotas
System.Xml.XmlDictionaryString
System.Xml.XmlImplementation
System.Xml.XmlNamedNodeMap
System.Xml.XmlNamespaceManager
System.Xml.XmlNameTable
System.Xml.XmlNode
System.Xml.XmlNodeList
System.Xml.XmlParserContext
System.Xml.XmlQualifiedName
System.Xml.XmlReader
System.Xml.XmlReaderSettings
System.Xml.XmlResolver
System.Xml.XmlWriter
System.Xml.XmlWriterSettings
System.Xml.XPath.Extensions
System.Xml.XPath.XPathDocument
System.Xml.XPath.XPathExpression
System.Xml.XPath.XPathItem
System.Xml.XPath.XPathNodeIterator
System.Xml.Xsl.Runtime.XmlCollation
System.Xml.Xsl.Runtime.XmlILIndex
System.Xml.Xsl.Runtime.XmlILStorageConverter
System.Xml.Xsl.Runtime.XmlNavigatorFilter
System.Xml.Xsl.Runtime.XmlQueryContext
System.Xml.Xsl.Runtime.XmlQueryRuntime
System.Xml.Xsl.Runtime.XmlQuerySequence<T>
System.Xml.Xsl.Runtime.XsltConvert
System.Xml.Xsl.Runtime.XsltFunctions
System.Xml.Xsl.Runtime.XsltLibrary
System.Xml.Xsl.XslCompiledTransform
System.Xml.Xsl.XsltArgumentList
System.Xml.Xsl.XslTransform
System.Xml.Xsl.XsltSettings
UIAutomationClientsideProviders.UIAutomationClientSideProviders
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.