AppDomainExtensionsGetAllLoadedTypes Method
Gets all the loaded types in the source AppDomain.
Namespace: DevCase.Extensions.AppDomainExtensionsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static IEnumerable<Type> GetAllLoadedTypes(
this AppDomain domain
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function GetAllLoadedTypes (
domain As AppDomain
) As IEnumerable(Of Type)
Dim domain As AppDomain
Dim returnValue As IEnumerable(Of Type)
returnValue = domain.GetAllLoadedTypes()
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static IEnumerable<Type^>^ GetAllLoadedTypes(
AppDomain^ domain
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member GetAllLoadedTypes :
domain : AppDomain -> IEnumerable<Type>
No code example is currently available or this language may not be supported.
- domain AppDomain
-
The source AppDomain.
IEnumerableType
Returns all the loaded types in the source
AppDomain.
In Visual Basic and C#, you can call this method as an instance method on any object of type
AppDomain. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).