AspNetDevelopmentServer Class
Represents the settings for an instance of the ASP.NET Development Server. More than one instance may occur during a test.
Inheritance Hierarchy
Object
Microsoft.VisualStudio.TestTools.Common.AspNetDevelopmentServer
Namespace: Microsoft.VisualStudio.TestTools.Common
Assembly: Microsoft.VisualStudio.QualityTools.Common (in Microsoft.VisualStudio.QualityTools.Common.dll)
Syntax
'Declaration
<SerializableAttribute> _
Public Class AspNetDevelopmentServer _
Implements IXmlTestStore
[SerializableAttribute]
public class AspNetDevelopmentServer : IXmlTestStore
[SerializableAttribute]
public ref class AspNetDevelopmentServer : IXmlTestStore
[<SerializableAttribute>]
type AspNetDevelopmentServer =
class
interface IXmlTestStore
end
public class AspNetDevelopmentServer implements IXmlTestStore
The AspNetDevelopmentServer type exposes the following members.
Constructors
Name | Description | |
---|---|---|
AspNetDevelopmentServer | Initializes an instance of the AspNetDevelopmentServer class by using the provided name, Web application path, and root name of the Web application. |
Top
Properties
Name | Description | |
---|---|---|
Name | Gets the name of this instance of ASP.NET Development Server. | |
PathToWebApp | Gets the full path of the Web application that is being tested. | |
WebAppRoot | Gets the name of the root for the Web application that is being tested. |
Top
Methods
Name | Description | |
---|---|---|
Equals | Returns a value that indicates whether the current instance of AspNetDevelopmentServer object is equal to the provided instance of the AspNetDevelopmentServer object. (Overrides Object.Equals(Object).) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Returns the hash code of the ID of the AspNetDevelopmentServer instance. (Overrides Object.GetHashCode.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
Load | Loads the class from the provided XML element. | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Save | Saves the ASP.NET Development Environment settings that this class represents. | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Remarks
Use this class to develop tests that you intend to run in the ASP.NET host. This class differs from the following classes, although their names are similar:
AspNetDevelopmentServerAttribute specifies the settings that must be used for ASP.NET Development Server for the test. This class is used primarily for Web service unit tests.
AspNetDevelopmentServerHostAttribute specifies the settings to use when an ASP.NET Development Server is the host server for the test. This class is used for ASP.NET unit tests.
You can use the Save method to persist this object and the Load method to load it from storage.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Reference
Microsoft.VisualStudio.TestTools.Common Namespace
AspNetDevelopmentServerAttribute