Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSBSignOperationType { sotGeneric = 0, sotAsyncPrepare = 1, sotAsyncComplete = 2 };
[VB.NET]
Enum TSBSignOperationType
sotGeneric = 0
sotAsyncPrepare = 1
sotAsyncComplete = 2
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSBSignOperationTypeRaw;
typedef enum { sotGeneric = 0, sotAsyncPrepare = 1, sotAsyncComplete = 2 } TSBSignOperationType;
[PHP]
class TSBSignOperationType extends TSBBaseEnum {
const sotGeneric = 0;
const sotAsyncPrepare = 1;
const sotAsyncComplete = 2;
}
[Java]
public enum TSBSignOperationType { sotGeneric, sotAsyncPrepare, sotAsyncComplete }
Possible values
Declared in
.NET:
- Namespace: SBMessages
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum