Appcelerator.ServiceManager.fsw_Created C# (CSharp) Method

fsw_Created() private method

Handles the file created event in the deploy dir so we can load assemblies
private fsw_Created ( object sender, FileSystemEventArgs e ) : void
sender object The object sending the event
e System.IO.FileSystemEventArgs The FileSystemEvenArgs containing the path of the assembly container to load
return void
        void fsw_Created(object sender, FileSystemEventArgs e)
        {
            LoadSingleAssembly(e.FullPath);
        }