Interface IConnectionCapabilities
Defines the capabilities of this connection. This is used to safely access supported
features of the connection.
Assembly: OSGeo.MapGuide.MaestroAPI.dll
Syntax
public interface IConnectionCapabilities
Properties
|
Improve this Doc
View Source
IsMultithreaded
Indicates whether the current connection can be used between multiple threads
Declaration
bool IsMultithreaded { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
SupportedCommands
Gets an array of supported commands
Declaration
int[] SupportedCommands { get; }
Property Value
Type |
Description |
System.Int32[] |
|
|
Improve this Doc
View Source
SupportedResourceTypes
Gets the array of supported resource types
Declaration
string[] SupportedResourceTypes { get; }
Property Value
Type |
Description |
System.String[] |
|
|
Improve this Doc
View Source
SupportedServices
Gets an array of supported services
Declaration
int[] SupportedServices { get; }
Property Value
Type |
Description |
System.Int32[] |
|
|
Improve this Doc
View Source
Gets whether this connection supports the concept of resource headers
Declaration
bool SupportsResourceHeaders { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
SupportsResourcePreviews
Indicates whether web-based previewing capabilities are possible with this connection
Declaration
bool SupportsResourcePreviews { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
SupportsResourceReferences
Gets whether this connection supports resource reference tracking
Declaration
bool SupportsResourceReferences { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
SupportsResourceSecurity
Gets whether this connection supports resource security
Declaration
bool SupportsResourceSecurity { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
SupportsWfsPublishing
Gets whether this connection supports publishing resources for WFS
Declaration
bool SupportsWfsPublishing { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
SupportsWmsPublishing
Gets whether this connection supports publishing resources for WMS
Declaration
bool SupportsWmsPublishing { get; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
|
Improve this Doc
View Source
GetMaxSupportedResourceVersion(String)
Gets the highest supported resource version.
Declaration
Version GetMaxSupportedResourceVersion(string resourceType)
Parameters
Type |
Name |
Description |
System.String |
resourceType |
|
Returns
Type |
Description |
System.Version |
|
|
Improve this Doc
View Source
IsSupportedResourceType(String)
Indicates if this current connection supports the specified resource type
Declaration
bool IsSupportedResourceType(string resType)
Parameters
Type |
Name |
Description |
System.String |
resType |
|
Returns
Type |
Description |
System.Boolean |
|