ApplicationHost.IsGlobalApplication Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
IsGlobalApplication(IHostedApplication) |
Determine whether the application is a global application. |
IsGlobalApplication(Guid) |
Determine whether the application is a global application. |
IsGlobalApplication(IHostedApplication)
Determine whether the application is a global application.
public:
virtual bool IsGlobalApplication(Microsoft::Uii::Csr::IHostedApplication ^ app);
public virtual bool IsGlobalApplication (Microsoft.Uii.Csr.IHostedApplication app);
abstract member IsGlobalApplication : Microsoft.Uii.Csr.IHostedApplication -> bool
override this.IsGlobalApplication : Microsoft.Uii.Csr.IHostedApplication -> bool
Public Overridable Function IsGlobalApplication (app As IHostedApplication) As Boolean
Parameters
Specifies the application record from the web service.
Returns
True
if the application is global, otherwise false
.
Applies to
IsGlobalApplication(Guid)
Determine whether the application is a global application.
public:
virtual bool IsGlobalApplication(Guid applicationID);
public virtual bool IsGlobalApplication (Guid applicationID);
abstract member IsGlobalApplication : Guid -> bool
override this.IsGlobalApplication : Guid -> bool
Public Overridable Function IsGlobalApplication (applicationID As Guid) As Boolean
Parameters
- applicationID
- Guid
Specifies the ID of the applcation to check.
Returns
True
if the application is global, otherwise false
.
Remarks
This really should be part of IHostedApplication but changing it now would break some existing applications.