Subscriber portal
Gets the current application domain name.
public string ApplicationDomain { get; }
Gets the application domain name.
The following code example shows how to obtain the application domain name.
public string GetApplicationDomain() { // Get the name of the application domain. return (string.Format( "Application domain: {0}", ApplicationInformation.ApplicationDomain)); }
WebApplicationInformation ClassSystem.Web.Management Namespace