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

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

DependentPlatformMissingException クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

ClickOnce 配置アクティブ化するときにプラットフォーム依存関係が見つからなかったため、配置実行できないこと示します

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

<SerializableAttribute> _
Public Class DependentPlatformMissingException
    Inherits DeploymentException
Dim instance As DependentPlatformMissingException
[SerializableAttribute] 
public class DependentPlatformMissingException
 : DeploymentException
[SerializableAttribute] 
public ref class DependentPlatformMissingException
 : public DeploymentException
/** @attribute SerializableAttribute() */ 
public class DependentPlatformMissingException
 extends DeploymentException
SerializableAttribute 
public class DependentPlatformMissingException
 extends DeploymentException
解説解説
継承階層継承階層
System.Object
   System.Exception
     System.SystemException
       System.Deployment.Application.DeploymentException
        System.Deployment.Application.DependentPlatformMissingException
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DependentPlatformMissingException メンバ
System.Deployment.Application 名前空間

DependentPlatformMissingException コンストラクタ ()

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

DependentPlatformMissingException クラス新しインスタンス初期化します。

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

Dim instance As New DependentPlatformMissingException
public DependentPlatformMissingException ()
public:
DependentPlatformMissingException ()
public DependentPlatformMissingException ()
public function DependentPlatformMissingException
 ()
プラットフォームプラットフォーム
バージョン情報バージョン情報

.NET Framework

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

関連項目

DependentPlatformMissingException クラス
DependentPlatformMissingException メンバ
System.Deployment.Application 名前空間

DependentPlatformMissingException コンストラクタ (String)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

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

Dim message As String

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

パラメータ

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

.NET Framework

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

関連項目

DependentPlatformMissingException クラス
DependentPlatformMissingException メンバ
System.Deployment.Application 名前空間

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

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

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

Protected Sub New ( _
    serializationInfo As SerializationInfo, _
    streamingContext As StreamingContext _
)
Dim serializationInfo As SerializationInfo
Dim streamingContext As StreamingContext

Dim instance As New DependentPlatformMissingException(serializationInfo,
 streamingContext)
protected DependentPlatformMissingException (
    SerializationInfo serializationInfo,
    StreamingContext streamingContext
)
protected:
DependentPlatformMissingException (
    SerializationInfo^ serializationInfo, 
    StreamingContext streamingContext
)
protected DependentPlatformMissingException (
    SerializationInfo serializationInfo, 
    StreamingContext streamingContext
)
protected function DependentPlatformMissingException
 (
    serializationInfo : SerializationInfo, 
    streamingContext : StreamingContext
)

パラメータ

serializationInfo
streamingContext
プラットフォームプラットフォーム
バージョン情報バージョン情報

.NET Framework

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

関連項目

DependentPlatformMissingException クラス
DependentPlatformMissingException メンバ
System.Deployment.Application 名前空間

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

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

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

Public Sub New ( _
    message As String, _
    innerException As Exception _
)
Dim message As String
Dim innerException As Exception

Dim instance As New DependentPlatformMissingException(message,
 innerException)
public DependentPlatformMissingException (
    string message,
    Exception innerException
)
public:
DependentPlatformMissingException (
    String^ message, 
    Exception^ innerException
)
public DependentPlatformMissingException (
    String message, 
    Exception innerException
)
public function DependentPlatformMissingException
 (
    message : String, 
    innerException : Exception
)

パラメータ

message
innerException
プラットフォームプラットフォーム
バージョン情報バージョン情報

.NET Framework

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

関連項目

DependentPlatformMissingException クラス
DependentPlatformMissingException メンバ
System.Deployment.Application 名前空間

DependentPlatformMissingException コンストラクタ (String, Uri)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

例外新しインスタンス作成します

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

Public Sub New ( _
    message As String, _
    supportUrl As Uri _
)
Dim message As String
Dim supportUrl As Uri

Dim instance As New DependentPlatformMissingException(message,
 supportUrl)
public DependentPlatformMissingException (
    string message,
    Uri supportUrl
)
public:
DependentPlatformMissingException (
    String^ message, 
    Uri^ supportUrl
)
public DependentPlatformMissingException (
    String message, 
    Uri supportUrl
)
public function DependentPlatformMissingException
 (
    message : String, 
    supportUrl : Uri
)

パラメータ

message

例外メッセージ

supportUrl

製品サポート情報アクセスするための URL

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DependentPlatformMissingException クラス
DependentPlatformMissingException メンバ
System.Deployment.Application 名前空間

DependentPlatformMissingException コンストラクタ


オーバーロードの一覧オーバーロードの一覧

名前 説明
DependentPlatformMissingException ()  
DependentPlatformMissingException (String)  
DependentPlatformMissingException (SerializationInfo, StreamingContext)  
DependentPlatformMissingException (String, Exception)  
DependentPlatformMissingException (String, Uri) 例外新しインスタンス作成します
参照参照

関連項目

DependentPlatformMissingException クラス
DependentPlatformMissingException メンバ
System.Deployment.Application 名前空間

DependentPlatformMissingException プロパティ


DependentPlatformMissingException メソッド


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

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

関連項目

DependentPlatformMissingException クラス
System.Deployment.Application 名前空間

DependentPlatformMissingException メンバ

ClickOnce 配置アクティブ化するときにプラットフォーム依存関係が見つからなかったため、配置実行できないこと示します

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


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

関連項目

DependentPlatformMissingException クラス
System.Deployment.Application 名前空間



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

辞書ショートカット

すべての辞書の索引

「DependentPlatformMissingException」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS