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

ComSourceInterfacesAttribute クラス

属性付きクラスCOM イベント ソースとして公開されるインターフェイスリスト識別します。

名前空間: System.Runtime.InteropServices
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<ComVisibleAttribute(True)> _
<AttributeUsageAttribute(AttributeTargets.Class, Inherited:=True)> _
Public NotInheritable Class
 ComSourceInterfacesAttribute
    Inherits Attribute
Dim instance As ComSourceInterfacesAttribute
[ComVisibleAttribute(true)] 
[AttributeUsageAttribute(AttributeTargets.Class, Inherited=true)]
 
public sealed class ComSourceInterfacesAttribute
 : Attribute
[ComVisibleAttribute(true)] 
[AttributeUsageAttribute(AttributeTargets::Class, Inherited=true)]
 
public ref class ComSourceInterfacesAttribute
 sealed : public Attribute
/** @attribute ComVisibleAttribute(true) */ 
/** @attribute AttributeUsageAttribute(AttributeTargets.Class, Inherited=true)
 */ 
public final class ComSourceInterfacesAttribute
 extends Attribute
ComVisibleAttribute(true) 
AttributeUsageAttribute(AttributeTargets.Class, Inherited=true)
 
public final class ComSourceInterfacesAttribute
 extends Attribute
解説解説
使用例使用例

名前空間イベント シンク インターフェイス渡して ComSourceInterfacesAttribute適用することにより、イベント シンク インターフェイスクラス接続する方法次の例に示します

Imports System.Runtime.InteropServices

<ComSourceInterfacesAttribute("ButtonEventsLib.ButtonEvents,
 ButtonEventsLib")> _
public Class Baz
    'Insert code here.
End Class
using System.Runtime.InteropServices;

[ComSourceInterfacesAttribute("ButtonEventsLib.ButtonEvents, ButtonEventsLib")]
public class Baz 
{
   //Insert code here.
}
using namespace System::Runtime::InteropServices;

[ComSourceInterfacesAttribute("ButtonEventsLib.ButtonEvents, ButtonEventsLib")]
public ref class Baz{};

import System.Runtime.InteropServices.*;

/** @attribute ComSourceInterfacesAttribute("ButtonEventsLib.ButtonEvents,"
 
    + " ButtonEventsLib")
 */
public class Baz
{
    //Insert code here.
} //Baz
import System.Runtime.InteropServices;

ComSourceInterfacesAttribute("ButtonEventsLib.ButtonEvents, ButtonEventsLib")
 public class Baz 
{
   //Insert code here.
}
継承階層継承階層
System.Object
   System.Attribute
    System.Runtime.InteropServices.ComSourceInterfacesAttribute
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ComSourceInterfacesAttribute メンバ
System.Runtime.InteropServices 名前空間

ComSourceInterfacesAttribute コンストラクタ (Type, Type, Type, Type)

ソース インターフェイスとして使用する型指定して、ComSourceInterfacesAttribute クラス新しインスタンス初期化します。

名前空間: System.Runtime.InteropServices
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Sub New ( _
    sourceInterface1 As Type, _
    sourceInterface2 As Type, _
    sourceInterface3 As Type, _
    sourceInterface4 As Type _
)
Dim sourceInterface1 As Type
Dim sourceInterface2 As Type
Dim sourceInterface3 As Type
Dim sourceInterface4 As Type

Dim instance As New ComSourceInterfacesAttribute(sourceInterface1,
 sourceInterface2, sourceInterface3, sourceInterface4)
public ComSourceInterfacesAttribute (
    Type sourceInterface1,
    Type sourceInterface2,
    Type sourceInterface3,
    Type sourceInterface4
)
public:
ComSourceInterfacesAttribute (
    Type^ sourceInterface1, 
    Type^ sourceInterface2, 
    Type^ sourceInterface3, 
    Type^ sourceInterface4
)
public ComSourceInterfacesAttribute (
    Type sourceInterface1, 
    Type sourceInterface2, 
    Type sourceInterface3, 
    Type sourceInterface4
)
public function ComSourceInterfacesAttribute
 (
    sourceInterface1 : Type, 
    sourceInterface2 : Type, 
    sourceInterface3 : Type, 
    sourceInterface4 : Type
)

パラメータ

sourceInterface1

既定ソース インターフェイスType

sourceInterface2

ソース インターフェイスType

sourceInterface3

ソース インターフェイスType

sourceInterface4

ソース インターフェイスType

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ComSourceInterfacesAttribute クラス
ComSourceInterfacesAttribute メンバ
System.Runtime.InteropServices 名前空間

ComSourceInterfacesAttribute コンストラクタ (String)

イベント ソース インターフェイスの名前を指定して、ComSourceInterfacesAttribute クラス新しインスタンス初期化します。

名前空間: System.Runtime.InteropServices
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Sub New ( _
    sourceInterfaces As String _
)
Dim sourceInterfaces As String

Dim instance As New ComSourceInterfacesAttribute(sourceInterfaces)
public ComSourceInterfacesAttribute (
    string sourceInterfaces
)
public:
ComSourceInterfacesAttribute (
    String^ sourceInterfaces
)
public ComSourceInterfacesAttribute (
    String sourceInterfaces
)
public function ComSourceInterfacesAttribute
 (
    sourceInterfaces : String
)

パラメータ

sourceInterfaces

イベント ソース インターフェイスの完全修飾名の null 区切りリスト

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ComSourceInterfacesAttribute クラス
ComSourceInterfacesAttribute メンバ
System.Runtime.InteropServices 名前空間

ComSourceInterfacesAttribute コンストラクタ (Type)

ソース インターフェイスとして使用する型指定して、ComSourceInterfacesAttribute クラス新しインスタンス初期化します。

名前空間: System.Runtime.InteropServices
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Sub New ( _
    sourceInterface As Type _
)
Dim sourceInterface As Type

Dim instance As New ComSourceInterfacesAttribute(sourceInterface)
public ComSourceInterfacesAttribute (
    Type sourceInterface
)
public:
ComSourceInterfacesAttribute (
    Type^ sourceInterface
)
public ComSourceInterfacesAttribute (
    Type sourceInterface
)
public function ComSourceInterfacesAttribute
 (
    sourceInterface : Type
)

パラメータ

sourceInterface

ソース インターフェイスType

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ComSourceInterfacesAttribute クラス
ComSourceInterfacesAttribute メンバ
System.Runtime.InteropServices 名前空間

ComSourceInterfacesAttribute コンストラクタ (Type, Type, Type)

ソース インターフェイスとして使用する型指定してComSourceInterfacesAttribute クラス新しインスタンス初期化します。

名前空間: System.Runtime.InteropServices
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Sub New ( _
    sourceInterface1 As Type, _
    sourceInterface2 As Type, _
    sourceInterface3 As Type _
)
Dim sourceInterface1 As Type
Dim sourceInterface2 As Type
Dim sourceInterface3 As Type

Dim instance As New ComSourceInterfacesAttribute(sourceInterface1,
 sourceInterface2, sourceInterface3)
public ComSourceInterfacesAttribute (
    Type sourceInterface1,
    Type sourceInterface2,
    Type sourceInterface3
)
public:
ComSourceInterfacesAttribute (
    Type^ sourceInterface1, 
    Type^ sourceInterface2, 
    Type^ sourceInterface3
)
public ComSourceInterfacesAttribute (
    Type sourceInterface1, 
    Type sourceInterface2, 
    Type sourceInterface3
)
public function ComSourceInterfacesAttribute
 (
    sourceInterface1 : Type, 
    sourceInterface2 : Type, 
    sourceInterface3 : Type
)

パラメータ

sourceInterface1

既定ソース インターフェイスType

sourceInterface2

ソース インターフェイスType

sourceInterface3

ソース インターフェイスType

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ComSourceInterfacesAttribute クラス
ComSourceInterfacesAttribute メンバ
System.Runtime.InteropServices 名前空間

ComSourceInterfacesAttribute コンストラクタ (Type, Type)

ソース インターフェイスとして使用する型指定して、ComSourceInterfacesAttribute クラス新しインスタンス初期化します。

名前空間: System.Runtime.InteropServices
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Sub New ( _
    sourceInterface1 As Type, _
    sourceInterface2 As Type _
)
Dim sourceInterface1 As Type
Dim sourceInterface2 As Type

Dim instance As New ComSourceInterfacesAttribute(sourceInterface1,
 sourceInterface2)
public ComSourceInterfacesAttribute (
    Type sourceInterface1,
    Type sourceInterface2
)
public:
ComSourceInterfacesAttribute (
    Type^ sourceInterface1, 
    Type^ sourceInterface2
)
public ComSourceInterfacesAttribute (
    Type sourceInterface1, 
    Type sourceInterface2
)
public function ComSourceInterfacesAttribute
 (
    sourceInterface1 : Type, 
    sourceInterface2 : Type
)

パラメータ

sourceInterface1

既定ソース インターフェイスType

sourceInterface2

ソース インターフェイスType

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ComSourceInterfacesAttribute クラス
ComSourceInterfacesAttribute メンバ
System.Runtime.InteropServices 名前空間

ComSourceInterfacesAttribute コンストラクタ

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

参照参照

関連項目

ComSourceInterfacesAttribute クラス
ComSourceInterfacesAttribute メンバ
System.Runtime.InteropServices 名前空間

ComSourceInterfacesAttribute プロパティ


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

参照参照

関連項目

ComSourceInterfacesAttribute クラス
System.Runtime.InteropServices 名前空間

ComSourceInterfacesAttribute メソッド


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

  名前 説明
パブリック メソッド Equals  オーバーロードされます。 ( Attribute から継承されます。)
パブリック メソッド GetCustomAttribute  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用され指定した型のカスタム属性取得します。 ( Attribute から継承されます。)
パブリック メソッド GetCustomAttributes  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されカスタム属性配列取得します。 ( Attribute から継承されます。)
パブリック メソッド GetHashCode  このインスタンスハッシュ コード返します。 ( Attribute から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド IsDefaultAttribute  派生クラス内でオーバーライドされたときに、このインスタンスの値が派生クラス既定値かどうか示します。 ( Attribute から継承されます。)
パブリック メソッド IsDefined  オーバーロードされます指定した型のカスタム属性が、アセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されているかどうか判断します。 ( Attribute から継承されます。)
パブリック メソッド Match  派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンス等しかどうかを示す値を返します。 ( Attribute から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
参照参照

関連項目

ComSourceInterfacesAttribute クラス
System.Runtime.InteropServices 名前空間

ComSourceInterfacesAttribute メンバ

属性付きクラスCOM イベント ソースとして公開されるインターフェイスリスト識別します。

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


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド ComSourceInterfacesAttribute オーバーロードされます。 ComSourceInterfacesAttribute クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
  名前 説明
パブリック メソッド Equals  オーバーロードされます。 ( Attribute から継承されます。)
パブリック メソッド GetCustomAttribute  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用され指定した型のカスタム属性取得します。 (Attribute から継承されます。)
パブリック メソッド GetCustomAttributes  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されカスタム属性配列取得します。 (Attribute から継承されます。)
パブリック メソッド GetHashCode  このインスタンスハッシュ コード返します。 (Attribute から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド IsDefaultAttribute  派生クラス内でオーバーライドされたときに、このインスタンスの値が派生クラス既定値かどうか示します。 (Attribute から継承されます。)
パブリック メソッド IsDefined  オーバーロードされます指定した型のカスタム属性が、アセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されているかどうか判断します。 (Attribute から継承されます。)
パブリック メソッド Match  派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンス等しかどうかを示す値を返します。 (Attribute から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
参照参照

関連項目

ComSourceInterfacesAttribute クラス
System.Runtime.InteropServices 名前空間



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

辞書ショートカット

すべての辞書の索引

「ComSourceInterfacesAttribute」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS