FacePhi SelphID SDK DotNet API
Loading...
Searching...
No Matches
SelphIDDocumentResultNet.h
1#pragma once
2
3#include "SelphIDDocumentResult.h"
4
5using namespace System;
6using namespace System::Collections::Generic;
7
8namespace FPhiSelphIDNet {
12public
14 private:
15 FPhiSelphID::SelphIDDocumentResult *_selphIDDocumentResult;
16
17 internal : SelphIDDocumentResult(const FPhiSelphID::SelphIDDocumentResult &selphIDDocumentResult);
18 const FPhiSelphID::SelphIDDocumentResult *GetInternalSelphIDDocumentResult();
19
20 public:
25
30
35
41 String ^ GetDocumentValue(String ^ key);
42
48 void SetDocumentKeyValue(String ^ key, String ^ value);
49
54 List<String ^> ^ ListDocumentKeys();
55
61 array<Byte> ^ GetImage(String ^ key);
62
68 void SetKeyImage(String ^ key, array<Byte> ^ image);
69
74 List<String ^> ^ ListImageKeys();
75
81 String ^ GetExtraDataValue(String ^ key);
82
88 void SetExtraDataKeyValue(String ^ key, String ^ value);
89
94 List<String ^> ^ ListExtraDataKeys();
95
99 property bool ValidTimeStamp {
100 bool get();
101 void set(bool value);
102 }
103
107 property int TrackingStatus {
108 int get();
109 void set(int status);
110 }
111
115 property String ^ TrackingMessage {
116 String ^ get();
117 void set(String ^ message);
118 }
119};
120} // namespace FPhiSelphIDNet
SelphIDDocumentResult.
Definition SelphIDDocumentResultNet.h:13
void SetExtraDataKeyValue(String ^ key, String ^ value)
Sets the ExtraData key value pair.
List< String ^> ^ ListExtraDataKeys()
Gets the ExtraData key list.
~SelphIDDocumentResult()
SelphIDDocumentResult destructor.
String ^ GetExtraDataValue(String ^ key)
Gets the ExtraData value for the key provided.
List< String ^> ^ ListDocumentKeys()
Gets the document key list.
String^ TrackingMessage
Gets the tracking request message.
Definition SelphIDDocumentResultNet.h:115
void SetDocumentKeyValue(String ^ key, String ^ value)
Sets the document key value pair.
List< String ^> ^ ListImageKeys()
Gets the image key list.
int TrackingStatus
Gets or sets the tracking request HTTP result.
Definition SelphIDDocumentResultNet.h:107
array< Byte > ^ GetImage(String ^ key)
Gets the image for the key provided.
bool ValidTimeStamp
Gets or sets if the time stamp is valid.
Definition SelphIDDocumentResultNet.h:99
String ^ GetDocumentValue(String ^ key)
Gets the document value for the key provided.
SelphIDDocumentResult()
Creates a new instance of SelphIDDocumentResult.
void SetKeyImage(String ^ key, array< Byte > ^ image)
Sets the key image value pair.