OnTime Extension SDK Documentation
OnTime.Extensions.SDK Namespace / DataAccess Class / GetOrder Method
The unique identifier of the Order as a Guid.



In This Topic
    GetOrder Method
    In This Topic
    Retrieves a single Order object assigned to a given identifier.
    Syntax
    'Declaration
     
    
    Public Function GetOrder( _
       ByVal orderID As Guid _
    ) As Order
    'Usage
     
    
    Dim instance As DataAccess
    Dim orderID As Guid
    Dim value As Order
     
    value = instance.GetOrder(orderID)
    public Order GetOrder( 
       Guid orderID
    )
    public:
    Order^ GetOrder( 
       Guid orderID
    ) 

    Parameters

    orderID
    The unique identifier of the Order as a Guid.

    Return Value

    A comprehensive Order object.
    Requirements

    Target Platforms: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11, Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2012, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019, Windows Server 2022

    See Also