Click or drag to resize

IModReferences Interface

Represents references to other mods that this mod depends upon.

Namespace:  UMod
Assembly:  UMod-Interface (in UMod-Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public interface IModReferences

The IModReferences type exposes the following members.

Properties
  NameDescription
Public propertyHasReferences
Returns true if the current mod references one or more mods.
Public propertyReferenceCount
Get the number of mods that the current mod references.
Top
Methods
  NameDescription
Public methodExists
Checks whether the current mod references a mod with the specified name.
Public methodFind
Attempts to find a IModReference with the specified name. A IModReference contains runtime information for the referenced mod.
Public methodFindAll
Attempts to get an array of IModReference representing all referenced mods. A IModReference contains runtime information for the referenced mod.
Public methodFindAllNames
Attempts to get an array of IModNameInfo representing the names of all referenced mods.
Public methodFindPrimary
Attempts to find the primary IModReference for this mod. The primary reference is useually the first referenced mod. A IModReference contains runtime information for the referenced mod.
Top
See Also