次の方法で共有


MessageTooLargeException コンストラクター

定義

オーバーロード

MessageTooLargeException(Int32)

メッセージの最大許容サイズ (バイト単位) の値を使用してこのクラスのインスタンスを作成し、非一時的としてマークします。

MessageTooLargeException(String)

指定したエラー メッセージを含むこのクラスのインスタンスを作成し、非一時的としてマークします。

MessageTooLargeException(ErrorCode, String)

指定した ErrorCodeエラー メッセージを使用してこのクラスのインスタンスを作成し、非一時的としてマークします。

MessageTooLargeException(Int32, String)

メッセージの最大許容サイズ (バイト単位) と追跡 ID の値を使用してこのクラスのインスタンスを作成し、非一時的としてマークします。

MessageTooLargeException(String, Exception)

指定したエラー メッセージと、この例外の原因となった内部例外への参照を含むこのクラスのインスタンスを作成し、非一時的としてマークします。

MessageTooLargeException(Int32)

メッセージの最大許容サイズ (バイト単位) の値を使用してこのクラスのインスタンスを作成し、非一時的としてマークします。

public MessageTooLargeException (int maximumMessageSizeInBytes);
new Microsoft.Azure.Devices.Common.Exceptions.MessageTooLargeException : int -> Microsoft.Azure.Devices.Common.Exceptions.MessageTooLargeException
Public Sub New (maximumMessageSizeInBytes As Integer)

パラメーター

maximumMessageSizeInBytes
Int32

メッセージの最大許容サイズ (バイト単位)。

適用対象

MessageTooLargeException(String)

指定したエラー メッセージを含むこのクラスのインスタンスを作成し、非一時的としてマークします。

public MessageTooLargeException (string message);
new Microsoft.Azure.Devices.Common.Exceptions.MessageTooLargeException : string -> Microsoft.Azure.Devices.Common.Exceptions.MessageTooLargeException
Public Sub New (message As String)

パラメーター

message
String

エラーを説明するメッセージ。

適用対象

MessageTooLargeException(ErrorCode, String)

指定した ErrorCodeエラー メッセージを使用してこのクラスのインスタンスを作成し、非一時的としてマークします。

public MessageTooLargeException (Microsoft.Azure.Devices.Common.Exceptions.ErrorCode code, string message);
new Microsoft.Azure.Devices.Common.Exceptions.MessageTooLargeException : Microsoft.Azure.Devices.Common.Exceptions.ErrorCode * string -> Microsoft.Azure.Devices.Common.Exceptions.MessageTooLargeException
Public Sub New (code As ErrorCode, message As String)

パラメーター

code
ErrorCode

エラーに関連付けられている ErrorCode

message
String

エラーを説明するメッセージ。

適用対象

MessageTooLargeException(Int32, String)

メッセージの最大許容サイズ (バイト単位) と追跡 ID の値を使用してこのクラスのインスタンスを作成し、非一時的としてマークします。

public MessageTooLargeException (int maximumMessageSizeInBytes, string trackingId);
new Microsoft.Azure.Devices.Common.Exceptions.MessageTooLargeException : int * string -> Microsoft.Azure.Devices.Common.Exceptions.MessageTooLargeException
Public Sub New (maximumMessageSizeInBytes As Integer, trackingId As String)

パラメーター

maximumMessageSizeInBytes
Int32

メッセージの最大許容サイズ (バイト単位)。

trackingId
String

サービスは、この特定のエラーに関連付けられている追跡 ID を返しました。

適用対象

MessageTooLargeException(String, Exception)

指定したエラー メッセージと、この例外の原因となった内部例外への参照を含むこのクラスのインスタンスを作成し、非一時的としてマークします。

public MessageTooLargeException (string message, Exception innerException);
new Microsoft.Azure.Devices.Common.Exceptions.MessageTooLargeException : string * Exception -> Microsoft.Azure.Devices.Common.Exceptions.MessageTooLargeException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

エラーを説明するメッセージ。

innerException
Exception

現在の例外の原因となった例外。

適用対象