Click or drag to resize

AssemblyScanner Class

Represents a utility for scanning for types and members with specific attributes in loaded assemblies.
Inheritance Hierarchy
SystemObject
  SampSharp.Entities.UtilitiesAssemblyScanner

Namespace:  SampSharp.Entities.Utilities
Assembly:  SampSharp.Entities (in SampSharp.Entities.dll) Version: 0.0.0-localbuild+05637d43e9f34d872e453289d4e240c843e43b09
Syntax
C#
public sealed class AssemblyScanner

The AssemblyScanner type exposes the following members.

Constructors
  NameDescription
Public methodAssemblyScanner
Initializes a new instance of the AssemblyScanner class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodHasAttributeT
Includes only members which have an attribute T.
Public methodHasClassAttributeT
Includes only members of classes which have an attribute T.
Public methodImplementsT
Includes only members of classes which implement T in the scan.
Public methodIncludeAbstract
Includes members of abstract classes in the scan.
Public methodIncludeAllAssemblies
Includes the entry assembly and all referenced assemblies in the scan..
Public methodIncludeAssembly
Includes the specified assembly in the scan.
Public methodIncludeEntryAssembly
Includes the entry assembly in the scan.
Public methodIncludeNonPublicMembers
Includes non-public members in the scan.
Public methodIncludeReferencedAssemblies
Includes the referenced assemblies of the previously included assemblies in the scan.
Public methodIncludeStatic
Includes static members in the scan.
Public methodScanFields
Runs the scan for fields.
Public methodScanFieldsTAttribute
Runs the scan for fields and provides the attribute TAttribute in the results.
Public methodScanMethods
Runs the scan for methods.
Public methodScanMethodsTAttribute
Runs the scan for methods and provides the attribute TAttribute in the results.
Public methodScanTypes
Runs the scan for methods.
Public methodScanTypesTAttribute
Runs the scan for methods and provides the attribute TAttribute in the results.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also