CodeFunction.Overloads プロパティ
この項目の、オーバーロードされているメソッドのコレクションを取得します。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
ReadOnly Property Overloads As CodeElements
CodeElements Overloads { get; }
property CodeElements^ Overloads {
CodeElements^ get ();
}
abstract Overloads : CodeElements with get
function get Overloads () : CodeElements
プロパティ値
型 : EnvDTE.CodeElements
CodeElements コレクション。
解説
Overloads は、指定したコード関数と一緒に (同じクラス定義構文で) 定義されている同じ名前のすべてのメソッドのコレクションを返します。 IsOverloaded が False の場合、このコレクションに含まれるのは指定したコード関数だけです。
注意
特定の種類の編集を行った後に、クラス、構造体、関数、属性、デリゲートなどのコード モデル要素の値を決定できないことがあります。つまり、これらの要素の値は、信頼できる値ではなく、常に同じ値になるとは限りません。詳細については、「コード モデルを使用したコードの調査 (Visual Basic)」で、コード モデル要素値を変更する方法についての説明を参照してください。
例
Sub OverloadsExample(ByVal dte As DTE2)
' Before running this example, open a code document from a project
' and place the insertion point inside a function.
Try
' Retrieve the CodeFunction at the insertion point.
Dim sel As TextSelection = _
CType(dte.ActiveDocument.Selection, TextSelection)
Dim fun As CodeFunction = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementFunction), CodeFunction)
Dim ovrloads As String
If fun.IsOverloaded Then
' Display all the overloads.
Dim ovrload As CodeFunction
For Each ovrload In fun.Overloads
ovrloads &= ovrload.Prototype( _
vsCMPrototype.vsCMPrototypeParamNames Or _
vsCMPrototype.vsCMPrototypeParamTypes Or _
vsCMPrototype.vsCMPrototypeType) & vbCrLf
Next
MsgBox(fun.Name & " has the following overloads:" & _
vbCrLf & vbCrLf & ovrloads)
Else
MsgBox(fun.Name & " isn't overloaded.")
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
public void OverloadsExample(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a function.
try
{
// Retrieve the CodeFunction at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeFunction fun =
(CodeFunction)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementFunction);
string ovrloads = "";
if (fun.IsOverloaded)
{
// Display all the overloads.
foreach (CodeFunction ovrload in fun.Overloads)
{
ovrloads += ovrload.get_Prototype(
(int)(vsCMPrototype.vsCMPrototypeParamNames |
vsCMPrototype.vsCMPrototypeParamTypes |
vsCMPrototype.vsCMPrototypeType)) + "\n";
}
MessageBox.Show(fun.Name +
" has the following overloads:\n\n" + ovrloads);
}
else
{
MessageBox.Show(fun.Name + " isn't overloaded.");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
その他の技術情報
方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する