ESRI.ArcGIS.Mobile
MobileServiceLayer Class
Members  See Also  Send Feedback
ESRI.ArcGIS.Mobile.MobileServices Namespace : MobileServiceLayer Class

Defines layers stored in the MobileService. Represents the abstract base class from which all implementations of MobileServiceLayer derive.

Object Model






Syntax

Visual Basic (Declaration) 
<ObsoleteAttribute()>
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public MustInherit Class MobileServiceLayer 
   Inherits MobileCacheLayer
   Implements ILayer 
C# 
[ObsoleteAttribute()]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public abstract class MobileServiceLayer : MobileCacheLayer, ILayer  

Remarks

This class represents a layer stored in the local MobileService. FeatureLayer, AnnotationLayer, and RasterLayer are three types of supported layers and as such inherit from this class.

Please note that MobileServiceLayer represents contents as defined in server, and thus doesn't allow modification of some layer properties such as minimum/maximum scale, transparency, envelope, etc. To reset these properties for map rendering purpose, see Maplayer.

This is an abstract base class and cannot be instantiated. To create a custom layer object, use the Layer class.

The following properties provide information associated with editing capabilities for a MobileServiceLayer: Editable, EditingVersionName and Workspace.

To get access to the information for the MobileService where MobileServiceLayer is stored, use MobileService property.

Inheritance Hierarchy

System.Object
   ESRI.ArcGIS.Mobile.Layer
      ESRI.ArcGIS.Mobile.MobileServices.MobileCacheLayer
         ESRI.ArcGIS.Mobile.MobileServices.MobileServiceLayer
            ESRI.ArcGIS.Mobile.MobileServices.FeatureLayer
            ESRI.ArcGIS.Mobile.MobileServices.RasterLayer

Requirements

Namespace: ESRI.ArcGIS.Mobile.MobileServices

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

Assembly: ESRI.ArcGIS.Mobile (in ESRI.ArcGIS.Mobile.dll)

See Also