adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / OID Class / TryParse Method / TryParse(String,ClassID,Guid) Method
String representation of an OID to parse
Returns the class ID
Returns the object ID


In This Topic
    TryParse(String,ClassID,Guid) Method
    In This Topic
    Parses a string OID, returning the corresponding ClassID and object ID.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function TryParse( _
       ByVal oid As String, _
       ByRef classID As ClassID, _
       ByRef objectID As Guid _
    ) As Boolean
    public static bool TryParse( 
       string oid,
       out ClassID classID,
       out Guid objectID
    )
    public:
    static bool TryParse( 
       String^ oid,
       [Out] ClassID classID,
       [Out] Guid objectID
    ) 

    Parameters

    oid
    String representation of an OID to parse
    classID
    Returns the class ID
    objectID
    Returns the object ID
    See Also