Module.ScopeName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
モジュールの名前を表す文字列を取得します。
public:
virtual property System::String ^ ScopeName { System::String ^ get(); };
public:
property System::String ^ ScopeName { System::String ^ get(); };
public virtual string ScopeName { get; }
public string ScopeName { get; }
member this.ScopeName : string
Public Overridable ReadOnly Property ScopeName As String
Public ReadOnly Property ScopeName As String
プロパティ値
モジュール名。
例
この例では、および プロパティのScopeName
FullyQualifiedName
効果をName
示します。
using namespace System;
using namespace System::Reflection;
int main()
{
Module^ mod = Assembly::GetExecutingAssembly()->GetModules()[ 0 ];
Console::WriteLine( "Module Name is {0}", mod->Name );
Console::WriteLine( "Module FullyQualifiedName is {0}", mod->FullyQualifiedName );
Console::WriteLine( "Module ScopeName is {0}", mod->ScopeName );
}
/*
Produces this output:
Module Name is modname.exe
Module FullyQualifiedName is C:\Bin\modname.exe
Module ScopeName is modname.exe
*/
using System.Reflection;
using System;
public class Simple
{
public static void Main ()
{
Module mod = typeof(Simple).Assembly.GetModules()[0];
Console.WriteLine ("Module Name is "
+ mod.Name);
Console.WriteLine ("Module FullyQualifiedName is "
+ mod.FullyQualifiedName);
Console.WriteLine ("Module ScopeName is "
+ mod.ScopeName);
}
}
/*
The example displays output like the folloowing:
Module Name is modname.exe
Module FullyQualifiedName is C:\Bin\modname.exe
Module ScopeName is modname.exe
*/
Imports System.Reflection
Public Class Simple
Public Shared Sub Main()
Dim myMod As [Module] = GetType(Simple).Assembly.GetModules()(0)
Console.WriteLine("Module Name is " + myMod.Name)
Console.WriteLine("Module FullyQualifiedName is " +
myMod.FullyQualifiedName)
Console.WriteLine("Module ScopeName is " +
myMod.ScopeName)
End Sub
End Class
' The example displays output like the following:
' Module Name is modname.exe
' Module FullyQualifiedName is C:\Bin\modname.exe
' Module ScopeName is modname.exe
注釈
プロパティは ScopeName
共通言語ランタイムでは使用されませんが、メタデータ API を使用してモジュールを出力するときに、 プロパティに必要な任意の文字列を格納するために使用できます。 リフレクション自体では、 プロパティを設定 ScopeName
できません。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET