ReloadableObjectRegistryLoad Method |
Loads a module by its name and imports it into the current tree structure.
Namespace: Lextm.SharpSnmpPro.Mib.RegistryAssembly: SharpSnmpPro.Mib (in SharpSnmpPro.Mib.dll) Version: 2.1.3+8c6e8963be682b1d7fd7055c260d7b3d449dbc11
Syntaxpublic void Load(
string name
)
Public Sub Load (
name As String
)
Dim instance As ReloadableObjectRegistry
Dim name As String
instance.Load(name)
public:
void Load(
String^ name
)
member Load :
name : string -> unit
Parameters
- name String
- The name of the module to load. Cannot be null or empty.
RemarksIf a module with the specified name exists in the list of unloaded modules, it is
imported into the tree and removed from the list of unloaded modules. If no matching module is found, the
method performs no action.
See Also