InternalBufferOverflowExceptionとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > InternalBufferOverflowExceptionの意味・解説 

InternalBufferOverflowException クラス

内部バッファオーバーフローした場合スローされる例外

名前空間: System.IO
アセンブリ: System (system.dll 内)
構文構文

<SerializableAttribute> _
Public Class InternalBufferOverflowException
    Inherits SystemException
Dim instance As InternalBufferOverflowException
[SerializableAttribute] 
public class InternalBufferOverflowException
 : SystemException
[SerializableAttribute] 
public ref class InternalBufferOverflowException
 : public SystemException
/** @attribute SerializableAttribute() */ 
public class InternalBufferOverflowException
 extends SystemException
SerializableAttribute 
public class InternalBufferOverflowException
 extends SystemException
解説解説
使用例使用例

FileSystemWatcher を作成しディスク ドライブ上でファイル変更 (作成削除、名前変更変更) を監視する例を次に示します。この例では、エラー通知正しく受け取方法示されています。

Imports System.IO

Module Module1
    Sub Main()
        ' Create a FileSystemWatcher to monitor all files on drive C.
        Dim fsw As New FileSystemWatcher("C:\")

        ' Watch for changes in LastAccess and LastWrite times, and
        ' the renaming of files or directories. 
        fsw.NotifyFilter = (NotifyFilters.LastAccess Or NotifyFilters.LastWrite
 _ 
            Or NotifyFilters.FileName Or NotifyFilters.DirectoryName)

        ' Register a handler that gets called when a 
        ' file is created, changed, or deleted.
        AddHandler fsw.Changed, New FileSystemEventHandler(AddressOf
 OnChanged)

        ' The commented line of code below is a shorthand of the above
 line.
        ' AddHandler fsw.Changed, AddressOf OnChanged

        ' NOTE: The shorthand version is used in the remainder of this
 code.
        ' FileSystemEventHandler
        AddHandler fsw.Created, AddressOf OnChanged
 
        ' FileSystemEventHandler
        AddHandler fsw.Deleted, AddressOf OnChanged

        ' Register a handler that gets called when a file is renamed.
        ' RenamedEventHandler
        AddHandler fsw.Renamed, AddressOf OnRenamed

        ' Register a handler that gets called if the 
        ' FileSystemWatcher needs to report an error.
        ' ErrorEventHandler
        AddHandler fsw.Error, AddressOf OnError

        ' Begin watching.
        fsw.EnableRaisingEvents = True

        ' Wait for the user to quit the program.
        Console.WriteLine("Press 'Enter' to quit the sample.")
        Console.ReadLine()
    End Sub

    ' This method is called when a file is created, changed, or deleted.
    Private Sub OnChanged(ByVal
 source As Object, ByVal
 e As FileSystemEventArgs)

        ' Show that a file has been created, changed, or deleted.
        Dim wct As WatcherChangeTypes = e.ChangeType
        Console.WriteLine("File {0} {1}", e.FullPath,
 wct.ToString())
    End Sub

    ' This method is called when a file is renamed.
    Private Sub OnRenamed(ByVal
 source As Object, ByVal
 e As RenamedEventArgs)

        ' Show that a file has been renamed.
        Dim wct As WatcherChangeTypes = e.ChangeType
        Console.WriteLine("File {0} {2} to {1}", e.OldFullPath,
 e.FullPath, wct.ToString())
    End Sub

    ' This method is called when the FileSystemWatcher detects an error.
    Private Sub OnError(ByVal
 source As Object, ByVal
 e As ErrorEventArgs)

        ' Show that an error has been detected.
        Console.WriteLine("The FileSystemWatcher has detected
 an error")

        ' Give more information if the error is due to an internal buffer
 overflow.
        If TypeOf e.GetException Is
 InternalBufferOverflowException Then
            ' This can happen if Windows is reporting many file system
 events quickly 
            ' and internal buffer of the  FileSystemWatcher is not large
 enough to handle this
            ' rate of events. The InternalBufferOverflowException error
 informs the application
            ' that some of the file system events are being lost.
            Console.WriteLine( _
                "The file system watcher experienced an internal
 buffer overflow: " _
                + e.GetException.Message)
        End If
    End Sub
End Module
継承階層継承階層
System.Object
   System.Exception
     System.SystemException
      System.IO.InternalBufferOverflowException
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
InternalBufferOverflowException メンバ
System.IO 名前空間
FileSystemEventArgs クラス
FileSystemEventHandler デリゲート
FileSystemWatcher クラス
FileSystemWatcher.IncludeSubdirectories プロパティ
FileSystemWatcher.InternalBufferSize プロパティ
FileSystemWatcher.NotifyFilter プロパティ
NotifyFilters
RenamedEventArgs
RenamedEventHandler
WaitForChangedResult
WatcherChangeTypes

InternalBufferOverflowException コンストラクタ ()

InternalBufferOverflowException クラス新し既定インスタンス初期化します。

名前空間: System.IO
アセンブリ: System (system.dll 内)
構文構文

Dim instance As New InternalBufferOverflowException
public InternalBufferOverflowException ()
public:
InternalBufferOverflowException ()
public InternalBufferOverflowException ()
public function InternalBufferOverflowException
 ()
解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
InternalBufferOverflowException クラス
InternalBufferOverflowException メンバ
System.IO 名前空間
FileSystemWatcher クラス
FileSystemWatcher.IncludeSubdirectories プロパティ
FileSystemWatcher.NotifyFilter プロパティ
FileSystemWatcher.InternalBufferSize プロパティ

InternalBufferOverflowException コンストラクタ (SerializationInfo, StreamingContext)

名前空間: System.IO
アセンブリ: System (system.dll 内)
構文構文

Protected Sub New ( _
    info As SerializationInfo, _
    context As StreamingContext _
)
Dim info As SerializationInfo
Dim context As StreamingContext

Dim instance As New InternalBufferOverflowException(info,
 context)
protected InternalBufferOverflowException (
    SerializationInfo info,
    StreamingContext context
)
protected:
InternalBufferOverflowException (
    SerializationInfo^ info, 
    StreamingContext context
)
protected InternalBufferOverflowException (
    SerializationInfo info, 
    StreamingContext context
)
protected function InternalBufferOverflowException
 (
    info : SerializationInfo, 
    context : StreamingContext
)

パラメータ

info
context
プラットフォームプラットフォーム
バージョン情報バージョン情報

.NET Framework

サポート対象 : 2.01.11.0
参照参照

関連項目

InternalBufferOverflowException クラス
InternalBufferOverflowException メンバ
System.IO 名前空間

InternalBufferOverflowException コンストラクタ (String)

表示するエラー メッセージ指定して、InternalBufferOverflowException クラス新しインスタンス初期化します。

名前空間: System.IO
アセンブリ: System (system.dll 内)
構文構文

Dim message As String

Dim instance As New InternalBufferOverflowException(message)
public InternalBufferOverflowException (
    string message
)
public:
InternalBufferOverflowException (
    String^ message
)
public InternalBufferOverflowException (
    String message
)
public function InternalBufferOverflowException
 (
    message : String
)

パラメータ

message

例外表示されるメッセージ

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
InternalBufferOverflowException クラス
InternalBufferOverflowException メンバ
System.IO 名前空間
FileSystemWatcher クラス
FileSystemWatcher.InternalBufferSize プロパティ

InternalBufferOverflowException コンストラクタ (String, Exception)

表示するメッセージ生成される内部例外指定して、InternalBufferOverflowException クラス新しインスタンス初期化します。

名前空間: System.IO
アセンブリ: System (system.dll 内)
構文構文

Dim message As String
Dim inner As Exception

Dim instance As New InternalBufferOverflowException(message,
 inner)
public InternalBufferOverflowException (
    string message,
    Exception inner
)
public:
InternalBufferOverflowException (
    String^ message, 
    Exception^ inner
)
public InternalBufferOverflowException (
    String message, 
    Exception inner
)
public function InternalBufferOverflowException
 (
    message : String, 
    inner : Exception
)

パラメータ

message

例外表示されるメッセージ

inner

内部例外

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
InternalBufferOverflowException クラス
InternalBufferOverflowException メンバ
System.IO 名前空間
FileSystemWatcher クラス
FileSystemWatcher.InternalBufferSize プロパティ

InternalBufferOverflowException コンストラクタ

InternalBufferOverflowException クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

名前 説明
InternalBufferOverflowException () InternalBufferOverflowException クラス新し既定インスタンス初期化します。
InternalBufferOverflowException (String) 表示するエラー メッセージ指定してInternalBufferOverflowException クラス新しインスタンス初期化します。
InternalBufferOverflowException (SerializationInfo, StreamingContext)  
InternalBufferOverflowException (String, Exception) 表示するメッセージ生成される内部例外指定してInternalBufferOverflowException クラス新しインスタンス初期化します。
参照参照

関連項目

InternalBufferOverflowException クラス
InternalBufferOverflowException メンバ
System.IO 名前空間
FileSystemWatcher クラス
FileSystemWatcher.IncludeSubdirectories プロパティ
FileSystemWatcher.NotifyFilter プロパティ
FileSystemWatcher.InternalBufferSize プロパティ

InternalBufferOverflowException プロパティ


パブリック プロパティパブリック プロパティ

プロテクト プロパティプロテクト プロパティ
  名前 説明
プロテクト プロパティ HResult  特定の例外割り当てられているコード化数値である HRESULT を取得または設定します。 ( Exception から継承されます。)
参照参照

関連項目

InternalBufferOverflowException クラス
System.IO 名前空間
FileSystemEventArgs クラス
FileSystemEventHandler デリゲート
FileSystemWatcher クラス
FileSystemWatcher.IncludeSubdirectories プロパティ
FileSystemWatcher.InternalBufferSize プロパティ
FileSystemWatcher.NotifyFilter プロパティ
NotifyFilters
RenamedEventArgs
RenamedEventHandler
WaitForChangedResult
WatcherChangeTypes

InternalBufferOverflowException メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

InternalBufferOverflowException クラス
System.IO 名前空間
FileSystemEventArgs クラス
FileSystemEventHandler デリゲート
FileSystemWatcher クラス
FileSystemWatcher.IncludeSubdirectories プロパティ
FileSystemWatcher.InternalBufferSize プロパティ
FileSystemWatcher.NotifyFilter プロパティ
NotifyFilters
RenamedEventArgs
RenamedEventHandler
WaitForChangedResult
WatcherChangeTypes

InternalBufferOverflowException メンバ

内部バッファオーバーフローした場合スローされる例外

InternalBufferOverflowException データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
( プロテクト コンストラクタ参照)
  名前 説明
パブリック メソッド InternalBufferOverflowException オーバーロードされます。 InternalBufferOverflowException クラス新しインスタンス初期化します。
プロテクト コンストラクタプロテクト コンストラクタ
  名前 説明
プロテクト メソッド InternalBufferOverflowException オーバーロードされますInternalBufferOverflowException クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
プロテクト プロパティプロテクト プロパティ
  名前 説明
プロテクト プロパティ HResult  特定の例外割り当てられているコード化数値である HRESULT を取得または設定します。(Exception から継承されます。)
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

InternalBufferOverflowException クラス
System.IO 名前空間
FileSystemEventArgs クラス
FileSystemEventHandler デリゲート
FileSystemWatcher クラス
FileSystemWatcher.IncludeSubdirectories プロパティ
FileSystemWatcher.InternalBufferSize プロパティ
FileSystemWatcher.NotifyFilter プロパティ
NotifyFilters
RenamedEventArgs
RenamedEventHandler
WaitForChangedResult
WatcherChangeTypes



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「InternalBufferOverflowException」の関連用語

InternalBufferOverflowExceptionのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



InternalBufferOverflowExceptionのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS