RegistrationErrorInfo.ErrorString プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > RegistrationErrorInfo.ErrorString プロパティの意味・解説 

RegistrationErrorInfo.ErrorString プロパティ

ErrorCode説明取得します

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

Dim instance As RegistrationErrorInfo
Dim value As String

value = instance.ErrorString
public string ErrorString { get;
 }
public:
property String^ ErrorString {
    String^ get ();
}
/** @property */
public String get_ErrorString ()

プロパティ
ErrorCode説明

使用例使用例

RegistrationErrorInfo オブジェクトからエラー文字列取得する方法次のコード例示します

' Check whether the ErrorInfo property of the RegistrationException
 object is null. 
' If there is no extended error information about 
' methods related to multiple COM+ objects ErrorInfo will be null.
If Not (e.ErrorInfo Is Nothing)
 Then
    ' Gets an array of RegistrationErrorInfo objects describing registration
 errors
    Dim registrationErrorInfos As RegistrationErrorInfo()
 = e.ErrorInfo

    ' Iterate through the array of RegistrationErrorInfo objects and
 disply the 
    ' ErrorString for each object.
    Dim registrationErrorInfo As RegistrationErrorInfo
    For Each registrationErrorInfo In
 registrationErrorInfos
        MsgBox(registrationErrorInfo.ErrorString)
    Next registrationErrorInfo
End If
// Check whether the ErrorInfo property of the RegistrationException
 object is null. 
// If there is no extended error information about 
// methods related to multiple COM+ objects ErrorInfo will be null.
if(e.ErrorInfo != null)
{
    // Gets an array of RegistrationErrorInfo objects describing registration
 errors
    RegistrationErrorInfo[] registrationErrorInfos = e.ErrorInfo;
    
    // Iterate through the array of RegistrationErrorInfo objects and
 disply the 
    // ErrorString for each object.

    foreach (RegistrationErrorInfo registrationErrorInfo in
 registrationErrorInfos) 
    {
        Console.WriteLine(registrationErrorInfo.ErrorString);
    }
}
// Check whether the ErrorInfo property of the RegistrationException
 object is null. 
// If there is no extended error information about 
// methods related to multiple COM+ objects ErrorInfo will be null.
if ( e->ErrorInfo != nullptr )
{
   // Gets an array of RegistrationErrorInfo objects describing registration
 errors
   array<RegistrationErrorInfo^>^ registrationErrorInfos = e->ErrorInfo;
   
   // Iterate through the array of RegistrationErrorInfo objects and
 disply the 
   // ErrorString for each object.
   System::Collections::IEnumerator^ myEnum = registrationErrorInfos->GetEnumerator();
   while ( myEnum->MoveNext() )
   {
      RegistrationErrorInfo^ registrationErrorInfo = (RegistrationErrorInfo^)( myEnum->Current
 );
      Console::WriteLine( registrationErrorInfo->ErrorString );
   }
}
// Check whether the ErrorInfo property of the RegistrationException
// object is null. If there is no extended error information about 
// methods related to multiple COM+ objects ErrorInfo will be null.
if (e.get_ErrorInfo() != null) {
    // Gets an array of RegistrationErrorInfo objects describing 
    // registration errors
    RegistrationErrorInfo registrationErrorInfos[] 
        = e.get_ErrorInfo();
    // Iterate through the array of RegistrationErrorInfo 
    // objects and disply the ErrorString for each object.
    for (int iCtr = 0; iCtr < registrationErrorInfos.length;
 iCtr++) {
        RegistrationErrorInfo registrationErrorInfo 
            = registrationErrorInfos[iCtr];
        Console.WriteLine(registrationErrorInfo.get_ErrorString());
    }
}
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
RegistrationErrorInfo クラス
RegistrationErrorInfo メンバ
System.EnterpriseServices 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からRegistrationErrorInfo.ErrorString プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からRegistrationErrorInfo.ErrorString プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からRegistrationErrorInfo.ErrorString プロパティ を検索

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

辞書ショートカット

すべての辞書の索引

RegistrationErrorInfo.ErrorString プロパティのお隣キーワード
検索ランキング

   

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



RegistrationErrorInfo.ErrorString プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2025 GRAS Group, Inc.RSS