CodeFunction2.IsShared プロパティ
項目が静的に定義されているかどうか (項目がこのオブジェクト型のすべてのインスタンスで共通か、またはこのオブジェクト専用か) を取得または設定します。
名前空間: EnvDTE80
アセンブリ: EnvDTE80 (EnvDTE80.dll 内)
構文
'宣言
Property IsShared As Boolean
bool IsShared { get; set; }
property bool IsShared {
bool get ();
void set (bool value);
}
abstract IsShared : bool with get, set
function get IsShared () : boolean
function set IsShared (value : boolean)
プロパティ値
型 : Boolean
メソッドが共有されている場合は true、それ以外の場合は false となるブール値。
解説
IsShared メソッドがクラスまたはクラスのインスタンスに関連付けられているかどうかを設定またはを返します。 言語に依存するエラーを生成する可能性がありますにこれを設定する注意してください。 IsShared 結果が変更されるコードが正常にコンパイルというはありませんが正常に返されます。
注意
クラス、構造体、関数、属性、デリゲートなどのコード モデル要素の値は、特定の種類の編集を行った後、非確定的になることがあります。つまり、これらの値が常に同じであることを前提にすることはできません。詳細については、コード モデル要素の値で変更できるセクションを参照してください。 コード モデルを使用したコードの調査 (Visual Basic)です。
例
Sub IsSharedExample(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)
If fun.IsShared Then
MsgBox(fun.Name & " is an instance method.")
Else
MsgBox(fun.Name & " is not an instance method.")
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
public void IsSharedExample(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);
if (fun.IsShared)
MessageBox.Show(fun.Name + " is an instance method.");
else
MessageBox.Show(fun.Name + " is not an instance method.");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
その他の技術情報
方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する