ArcFM Responder Mobile Developer Guide
Id Property (DomainObject<TId>)






ID may be of type string, int, Guid,custom type, etc. Setter is protected to allow unit tests to set this property via reflection and to allow domain objects more flexibility in setting this for those objects with assigned IDs.
Syntax
'Declaration
 
Public Overridable ReadOnly Property Id As TId
'Usage
 
Dim instance As DomainObject(Of TId)
Dim value As TId
 
value = instance.Id
public virtual TId Id {get;}
public read-only property Id: TId; virtual; 
public function get Id : TId
public: __property virtual TId* get_Id();
public:
virtual property TId^ Id {
   TId^ get();
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

DomainObject<TId> Class
DomainObject<TId> Members

Send Feedback