Difference between revisions of "Ns unregister proc"

From AOLserver Wiki
Jump to navigation Jump to search
(new doc for command)
 
 
(One intermediate revision by the same user not shown)
Line 16: Line 16:
  
 
: This command unregisters any Tcl or C functions previously registered for this method/URL combination and with the same inheritance setting.  That is, if the ''-noinherit'' flag is specified with '''ns_unregister_proc''', the function previously registered with the ''-noinherit'' flag using '''ns_register_proc''' (or the NS_OP_NOINHERIT flag in Ns_RegisterRequest) will be unregistered.  If ''-noinherit'' is omitted, the function previously registered without the ''-noinherit'' flag (or the NS_OP_NOINHERIT flag) will be unregistered.
 
: This command unregisters any Tcl or C functions previously registered for this method/URL combination and with the same inheritance setting.  That is, if the ''-noinherit'' flag is specified with '''ns_unregister_proc''', the function previously registered with the ''-noinherit'' flag using '''ns_register_proc''' (or the NS_OP_NOINHERIT flag in Ns_RegisterRequest) will be unregistered.  If ''-noinherit'' is omitted, the function previously registered without the ''-noinherit'' flag (or the NS_OP_NOINHERIT flag) will be unregistered.
 +
 +
: This command will unregister not only registered procedures but also registered adp files, cgi scripts, etc.
  
 
'''SEE ALSO'''
 
'''SEE ALSO'''
  
: [[ns_register_proc]]
+
: [[ns_register_proc]], [[ns_register_adp]], [[ns_register_cgi]], [[ns_register_fastpath]]
  
 
[[Category:Core Tcl API]]
 
[[Category:Core Tcl API]]

Latest revision as of 00:51, 4 October 2009

Man page: http://aolserver.com/man/4.0/tcl/ns_proc.html



NAME

ns_unregister_proc - Unregisters a procedure for a method/URL combination

SYNOPSIS

ns_unregister_proc ?-noinherit? method URL

DESCRIPTION

ns_unregister_proc unregisters the procname to handle the specified method/URL combination.
This command unregisters any Tcl or C functions previously registered for this method/URL combination and with the same inheritance setting. That is, if the -noinherit flag is specified with ns_unregister_proc, the function previously registered with the -noinherit flag using ns_register_proc (or the NS_OP_NOINHERIT flag in Ns_RegisterRequest) will be unregistered. If -noinherit is omitted, the function previously registered without the -noinherit flag (or the NS_OP_NOINHERIT flag) will be unregistered.
This command will unregister not only registered procedures but also registered adp files, cgi scripts, etc.

SEE ALSO

ns_register_proc, ns_register_adp, ns_register_cgi, ns_register_fastpath