ApplicationIdentity.CodeBase プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
配置マニフェストの場所を URL として取得します。
public:
property System::String ^ CodeBase { System::String ^ get(); };
public string CodeBase { get; }
member this.CodeBase : string
Public ReadOnly Property CodeBase As String
プロパティ値
配置マニフェストの URL
例
次のコード例は、オブジェクトを ApplicationIdentity 使用してマニフェスト ベースのアプリケーションのプロパティの値を CodeBase 取得する方法を示しています。 このコード例は、ActivationContext クラスのために提供されている大規模な例の一部です。
ActivationContext ac = AppDomain.CurrentDomain.ActivationContext;
ApplicationIdentity ai = ac.Identity;
Console.WriteLine("Full name = " + ai.FullName);
Console.WriteLine("Code base = " + ai.CodeBase);
Dim ac As ActivationContext = AppDomain.CurrentDomain.ActivationContext
Dim ai As ApplicationIdentity = ac.Identity
Console.WriteLine("Full name = " + ai.FullName)
Console.WriteLine("Code base = " + ai.CodeBase)
注釈
ActivationContext という名前のアプリケーションのプロパティ値の CodeBase 2 つの例を次に示します。
http://testserver/ActivationContext/ActivationContext.application
file://C:/UserFiles/UserName/SolutionName/ActivationContext/publish/ActivationContext.application
.