ReloadableObjectRegistryUnload Method |
Unloads the specified module by name and adds it to the list of unloaded modules.
Namespace: Lextm.SharpSnmpPro.Mib.RegistryAssembly: SharpSnmpPro.Mib (in SharpSnmpPro.Mib.dll) Version: 2.1.3+8c6e8963be682b1d7fd7055c260d7b3d449dbc11
Syntaxpublic void Unload(
string name
)
Public Sub Unload (
name As String
)
Dim instance As ReloadableObjectRegistry
Dim name As String
instance.Unload(name)
public:
void Unload(
String^ name
)
member Unload :
name : string -> unit
Parameters
- name String
- The name of the module to unload. Cannot be null or empty.
RemarksIf the specified module is found in the list of loaded modules, it is unloaded and
added to the
UnloadedModules collection. If no module with the specified name exists, no
action is taken.
See Also