UtilFile.reindex Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Lets you create, read, update, and delete X++ code and metadata.
public:
virtual void reindex();
public virtual void reindex ();
abstract member reindex : unit -> unit
override this.reindex : unit -> unit
Public Overridable Sub reindex ()
Remarks
Make sure that the user has access to the development security key (SysDevelopment) before you call this API.
The following example calls the UtilFile.reindex method. It checks whether the user has the required security key before you perform a modification.
server static public void Main(Args _args)
{
UtilFile u;
u = new UtilFile("util");
if (u)
{
u.reindex();
}
}