adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DataContext Class / GetDescriptionForObject Method
The OID of the object to look up.
Reserved for future use.


In This Topic
    GetDescriptionForObject Method
    In This Topic
    Gets a description for an object, given its OID
    Syntax
    'Declaration
     
    
    <CanBeNullAttribute()>
    Public Function GetDescriptionForObject( _
       ByVal oid As OID, _
       Optional ByVal targetComputerName As String _
    ) As String
    [CanBeNull()]
    public string GetDescriptionForObject( 
       OID oid,
       string targetComputerName
    )
    [CanBeNull()]
    public:
    String^ GetDescriptionForObject( 
       OID^ oid,
       String^ targetComputerName
    ) 

    Parameters

    oid
    The OID of the object to look up.
    targetComputerName
    Reserved for future use.

    Return Value

    The description (from ObjectBase.GetDescription of the object, or a null reference (Nothing in Visual Basic) if the object does not exist.
    Remarks
    This method allows you to retrieve the description for an object even if the caller does not otherwise have permission to view it.
    See Also