AspNetDevelopmentServerAttribute クラス

更新 : 2007 年 11 月

テスト用の ASP.NET 開発サーバーに使用する必要がある設定を指定します。これは、主に Web サービスの単体テストに使用されます。

名前空間 :  Microsoft.VisualStudio.TestTools.UnitTesting.Web
アセンブリ :  Microsoft.VisualStudio.QualityTools.UnitTestFramework (Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 内)

構文

'宣言
<AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple := True)> _
Public NotInheritable Class AspNetDevelopmentServerAttribute _
    Inherits Attribute
'使用
Dim instance As AspNetDevelopmentServerAttribute
[AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple = true)]
public sealed class AspNetDevelopmentServerAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Method, AllowMultiple = true)]
public ref class AspNetDevelopmentServerAttribute sealed : public Attribute
public final class AspNetDevelopmentServerAttribute extends Attribute

解説

AspNetDevelopmentServerAttribute を指定してテストを実行すると、ASP.NET 開発サーバーのインスタンスが起動します。次に、TryUrlRedirection を使用すると、Web 参照で定義されている内容ではなく、このサーバーを指すように Web サービス オブジェクトをリダイレクトできます。サーバーを指すことによって、Web サービス テストの実行時に既知の URL にある ASP.NET 開発サーバー サイトを起動できます。

この属性はメソッドに適用されます。メソッドには、この属性の複数のインスタンスを適用できます。

属性の使用方法の詳細については、「属性を使用したメタデータの拡張」を参照してください。

継承階層

System.Object
  System.Attribute
    Microsoft.VisualStudio.TestTools.UnitTesting.Web.AspNetDevelopmentServerAttribute

スレッド セーフ

この型のすべてのパブリック static (Visual Basic では Shared) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

参照

参照

AspNetDevelopmentServerAttribute メンバ

Microsoft.VisualStudio.TestTools.UnitTesting.Web 名前空間

その他の技術情報

ASP.NET 単体テストの概要

方法 : ASP.NET 単体テストを作成する