NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

InternalBufferOverflowException Constructor (String)

Initializes a new instance of the InternalBufferOverflowException class with the error message to be displayed specified.

[Visual Basic]
Overloads Public Sub New( _
   ByVal message As String _
)
[C#]
public InternalBufferOverflowException(
   string message
);
[C++]
public: InternalBufferOverflowException(
   String* message
);
[JScript]
public function InternalBufferOverflowException(
   message : String
);

Parameters

message
The message to be given for the exception.

Remarks

These constructors are used by the component to signify an error. You should only use them if extending the class or framework. This exception indicates that an internal buffer has overflown and that users should take appropriate steps in their code to ensure that it recovers properly. The cause of the overflow is often having too many changes in a short period of time, causing the internal notification buffer to overflow. To resolve this, increase the InternalBufferSize of the FileSystemWatcher component.

See Also

InternalBufferOverflowException Class | InternalBufferOverflowException Members | System.IO Namespace | InternalBufferOverflowException Constructor Overload List