Share via


ElectronicJournal.RetrieveMarkerByDateTime Method (POS for .NET v1.14 SDK Documentation)

3/2/2014

Returns a marker implicitly stored on the record medium.

Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)

Syntax

'Declaration
Public MustOverride Function RetrieveMarkerByDateTime ( _
    markerType As MarkerType, _
    dateTime As String, _
    markerNumber As String _
) As String
public abstract string RetrieveMarkerByDateTime (
    MarkerType markerType,
    string dateTime,
    string markerNumber
)
public:
virtual String^ RetrieveMarkerByDateTime (
    MarkerType markerType, 
    String^ dateTime, 
    String^ markerNumber
) abstract
public abstract String RetrieveMarkerByDateTime (
    MarkerType markerType, 
    String dateTime, 
    String markerNumber
)
public abstract function RetrieveMarkerByDateTime (
    markerType : MarkerType, 
    dateTime : String, 
    markerNumber : String
) : String

Parameters

  • markerType
    Specifies the type of the queried current marker.
  • dateTime
    The date/time period the marker is queried for. The format of dateTime is 'YYYYMMDDhhmmss'. If the application cannot specify the hours, minutes, and seconds, then these fields can be omitted.
  • markerNumber
    If more than one marker of the requested type exists during the time period specified by the dateTime parameter, this parameter specifies the number of the marker which will be queried. Numbering for markers begins at 1 and is continuously incremented by one for each marker.

Remarks

Returns a marker implicitly stored on the record medium. The queried marker is specified by the parameters markerType, dateTime, and markerNumber. The format and content of the marker that is returned as a string, is implementation specific. The returned marker can be used as an input parameter for the PrintContent and QueryContent methods.

This method is only supported if CapRetrieveMarkerByDateTime is true.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread-safe. Any instance members are not guaranteed to be thread-safe.

See Also

Reference

ElectronicJournal Class
ElectronicJournal Members
Microsoft.PointOfService Namespace
CapRetrieveMarkersDateTime
PrintContent
QueryContent
RetrieveMarker
RetrieveCurrentMarker
ElectronicJournal.AddMarker Method