Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ NotifyInternalBufferOverflowEvent()

void System.IO.FileSystemWatcher.NotifyInternalBufferOverflowEvent ( )
inlineprivate

Definition at line 482 of file FileSystemWatcher.cs.

483 {
484 if (_onErrorHandler != null)
485 {
486 OnError(new ErrorEventArgs(new InternalBufferOverflowException(System.SR.Format(System.SR.FSW_BufferOverflow, _directory))));
487 }
488 }
void OnError(ErrorEventArgs e)
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string FSW_BufferOverflow
Definition SR.cs:18
Definition SR.cs:7

References System.IO.FileSystemWatcher._directory, System.IO.FileSystemWatcher._onErrorHandler, System.SR.Format(), System.SR.FSW_BufferOverflow, and System.IO.FileSystemWatcher.OnError().

Referenced by System.IO.FileSystemWatcher.ReadDirectoryChangesCallback().