System Namespace
.NET Framework Class Library
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.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax


Visual Basic (Declaration)
<SerializableAttribute> _
<ComVisibleAttribute(True)> _
<ClassInterfaceAttribute(ClassInterfaceType.AutoDual)> _
Public Class Object
Visual Basic (Usage)
Dim instance As Object
C#
[SerializableAttribute]
[ComVisibleAttribute(true)]
[ClassInterfaceAttribute(ClassInterfaceType.AutoDual)]
public class Object
Visual C++
[SerializableAttribute]
[ComVisibleAttribute(true)]
[ClassInterfaceAttribute(ClassInterfaceType::AutoDual)]
public ref class Object
JScript
public class Object

Remarks


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.

Examples


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.

Visual Basic
Imports System

' The Point class is derived from System.Object.

Class Point
    Public x, y As Integer

    Public Sub New(ByVal x As Integer, ByVal y As Integer) 
        Me.x = x
        Me.y = y
    End Sub 'New

    Public Overrides Function Equals(ByVal obj As Object) As Boolean 
        ' If Me and obj do not refer to the same type, then they are not equal.
        Dim objType As Type = obj.GetType()
        Dim meType  As Type = Me.GetType()
        If Not objType.Equals(meType) Then
            Return False
        End If 
        ' Return true if  x and y fields match.
        Dim other As Point = CType(obj, Point)
        Return Me.x = other.x AndAlso Me.y = other.y
    End Function 'Equals

    ' Return the XOR of the x and y fields.
    Public Overrides Function GetHashCode() As Integer 
        Return x ^ y
    End Function 'GetHashCode

    ' Return the point's value as a string.
    Public Overrides Function ToString() As String 
        Return String.Format("({0}, {1})", x, y)
    End Function 'ToString

    ' Return a copy of this point object by making a simple field copy.
    Public Function Copy() As Point 
        Return CType(Me.MemberwiseClone(), Point)
    End Function 'Copy
End Class 'Point 

NotInheritable Public Class App

    Shared Sub Main() 
        ' Construct a Point object.
        Dim p1 As New Point(1, 2)

        ' Make another Point object that is a copy of the first.
        Dim p2 As Point = p1.Copy()

        ' Make another variable that references the first Point object.
        Dim p3 As Point = 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())

    End Sub 'Main 
End Class 'App

' This code example produces the following output:
'
' False
' True
' True
' p1's value is: (1, 2)
'

C#
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)
//

Visual C++
using namespace System;

// The Point class is derived from System.Object.
ref class Point
{
public:
    int x;
public:
    int y;

public:
    Point(int x, int y)
    {
        this->x = x;
        this->y = y;
    }

public:
    virtual bool Equals(Object^ obj) override
    {
        // 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:
    virtual int GetHashCode() override 
    {
        return x ^ y;
    }

    // Return the point's value as a string.
public:
    virtual String^ ToString() override 
    {
        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();
    }
};

int main()
{
    // Construct a Point object.
    Point^ p1 = gcnew 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 produces the following output.
//
// False
// True
// True
// p1's value is: (1, 2)

Inheritance Hierarchy


System..::.Object
  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<(Of <(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<(Of <(TValue>)>)
  Microsoft.VisualC.StlClr.Generic..::.ConstContainerBidirectionalIterator<(Of <(TValue>)>)
  Microsoft.VisualC.StlClr.Generic..::.ConstContainerRandomAccessIterator<(Of <(TValue>)>)
  Microsoft.VisualC.StlClr.Generic..::.ConstReverseBidirectionalIterator<(Of <(TValue>)>)
  Microsoft.VisualC.StlClr.Generic..::.ConstReverseRandomAccessIterator<(Of <(TValue>)>)
  Microsoft.VisualC.StlClr.Generic..::.ContainerBidirectionalIterator<(Of <(TValue>)>)
  Microsoft.VisualC.StlClr.Generic..::.ContainerRandomAccessIterator<(Of <(TValue>)>)
  Microsoft.VisualC.StlClr.Generic..::.ReverseBidirectionalIterator<(Of <(TValue>)>)
  Microsoft.VisualC.StlClr.Generic..::.ReverseRandomAccessIterator<(Of <(TValue>)>)
  Microsoft.VisualC.StlClr..::.GenericPair<(Of <(TValue1, TValue2>)>)
  Microsoft.VisualC.StlClr..::.HashEnumeratorBase<(Of <(TKey, TValue>)>)
  Microsoft.VisualC.StlClr..::.ListEnumeratorBase<(Of <(TValue>)>)
  Microsoft.VisualC.StlClr..::.TreeEnumeratorBase<(Of <(TKey, TValue>)>)
  Microsoft.VisualC.StlClr..::.VectorEnumeratorBase<(Of <(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<(Of <(T>)>)
  System.Collections.Generic..::.Dictionary<(Of <(TKey, TValue>)>)
  System.Collections.Generic..::.Dictionary<(Of <(TKey, TValue>)>)..::.KeyCollection
  System.Collections.Generic..::.Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection
  System.Collections.Generic..::.EqualityComparer<(Of <(T>)>)
  System.Collections.Generic..::.HashSet<(Of <(T>)>)
  System.Collections.Generic..::.LinkedList<(Of <(T>)>)
  System.Collections.Generic..::.LinkedListNode<(Of <(T>)>)
  System.Collections.Generic..::.List<(Of <(T>)>)
  System.Collections.Generic..::.Queue<(Of <(T>)>)
  System.Collections.Generic..::.SortedDictionary<(Of <(TKey, TValue>)>)
  System.Collections.Generic..::.SortedDictionary<(Of <(TKey, TValue>)>)..::.KeyCollection
  System.Collections.Generic..::.SortedDictionary<(Of <(TKey, TValue>)>)..::.ValueCollection
  System.Collections.Generic..::.SortedList<(Of <(TKey, TValue>)>)
  System.Collections.Generic..::.Stack<(Of <(T>)>)
  System.Collections.Generic..::.SynchronizedCollection<(Of <(T>)>)
  System.Collections.Generic..::.SynchronizedReadOnlyCollection<(Of <(T>)>)
  System.Collections..::.Hashtable
  System.Collections.ObjectModel..::.Collection<(Of <(T>)>)
  System.Collections.ObjectModel..::.ReadOnlyCollection<(Of <(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<(Of <(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<(Of <(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<(Of <(TDataReader>)>)
  System.Data.Linq.SqlClient..::.SqlHelpers
  System.Data.Linq.SqlClient..::.SqlMethods
  System.Data.Linq.SqlClient..::.SqlProvider
  System.Data.Linq..::.Table<(Of <(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<(Of <(T>)>)
  System.DirectoryServices.AccountManagement..::.PrincipalValueCollection<(Of <(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<(Of <(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<(Of <(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<(Of <(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<(Of <(TFilterData>)>)
  System.ServiceModel.Dispatcher..::.QueryStringConverter
  System.ServiceModel.Dispatcher..::.ServiceThrottle
  System.ServiceModel.Dispatcher..::.WebHttpDispatchOperationSelector
  System.ServiceModel.Dispatcher..::.XPathMessageFilterTable<(Of <(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<(Of <(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<(Of <(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