Udostępnij za pośrednictwem


Pole TestContext.AspNetDevelopmentServerPrefix

Reprezentuje prefiks dla aplikacji ASP.NET Development Server.

Przestrzeń nazw:  Microsoft.VisualStudio.TestTools.UnitTesting
Zestaw:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (w Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Składnia

'Deklaracja
Public Const AspNetDevelopmentServerPrefix As String
public const string AspNetDevelopmentServerPrefix
public:
literal String^ AspNetDevelopmentServerPrefix
static val mutable AspNetDevelopmentServerPrefix: string
public const var AspNetDevelopmentServerPrefix : String

Uwagi

Wartość ta stała jest "AspNetDevelopmentServer".

W większości przypadków nie będzie używany ten ciąg bezpośrednio, ponieważ można użyć TryUrlRedirection metody do kierowania wywołań usług sieci Web do poprawny adres URL.

Jeśli chcesz uzyskać prefiks adresu URL dla aplikacji ASP.NET Development Server instancji, który jest uruchamiany z określające AspNetDevelopmentServerAttribute na swoje badania, to należy użyć tego ciągu.Użyj tego ciągu wraz z nazwą określoną w AspNetDevelopmentServerAttribute.Zobacz poniższy urywek kodu, aby uzyskać więcej informacji.

Przykłady

[TestMethod]
[AspNetDevelopmentServerAttribute("MyServer", @"c:\websites\website1", "/website1")]
public void Test()
{
    Uri uriPrefix = TestContext.Properties[TestContext.AspNetDevelopmentServerPrefix + "MyServer"];
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

TestContext Klasa

Przestrzeń nazw Microsoft.VisualStudio.TestTools.UnitTesting

Inne zasoby

Using the TestContext Class