Show / Hide Table of Contents

Class ReflectionExtensions

A collection of extension methods for working with reflection.

Inheritance
System.Object
ReflectionExtensions
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Liminal.SDK.Extensions
Assembly: Liminal.SDK.dll
Syntax
public static class ReflectionExtensions

Methods

| Improve this Doc View Source

GetLoadedAssembly(AppDomain, String)

Gets the the assembly with the specified name, if it is loaded into the AppDomain.

Declaration
public static Assembly GetLoadedAssembly(this AppDomain appDomain, string name)
Parameters
Type Name Description
System.AppDomain appDomain

The AppDomain to retrieve the Assembly from.

System.String name

The name of the Assembly to retrieve.

Returns
Type Description
System.Reflection.Assembly

The Assembly with the specified name, or null if no assembly with the supplied name is loaded into the AppDomain.

  • Improve this Doc
  • View Source
Back to top Generated by DocFX