Campo TestContext.AspNetDevelopmentServerPrefix

Representa o prefixo ASP.NET Development Server.

Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (em Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Sintaxe

'Declaração
Public Const AspNetDevelopmentServerPrefix As String
public const string AspNetDevelopmentServerPrefix
public:
literal String^ AspNetDevelopmentServerPrefix
static val mutable AspNetDevelopmentServerPrefix: string
public const var AspNetDevelopmentServerPrefix : String

Comentários

O valor dessa constante é "aspnetdevelopmentserver".

Na maioria dos casos, você não usará essa seqüência de caracteres diretamente porque você pode usar o TryUrlRedirection método para direcionar chamadas de serviço da Web para o URL correto.

Se você deseja obter o prefixo de URL para o ASP.Instância de NET Development Server é iniciada como resultado de especificar o AspNetDevelopmentServerAttribute em seu teste, em seguida, você deve usar essa seqüência de caracteres. Usar esta seqüência junto com o nome que você especificou na AspNetDevelopmentServerAttribute. Consulte o seguinte trecho de código para obter mais informações.

Exemplos

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

Segurança do .NET Framework

Consulte também

Referência

TestContext Classe

Namespace Microsoft.VisualStudio.TestTools.UnitTesting

Outros recursos

Using the TestContext Class