1
0
mirror of https://github.com/XFox111/SimpleOTP.git synced 2026-04-22 08:00:45 +03:00

Created OTPCodeUpdatedEventHandler (markdown)

2021-06-01 16:18:02 +03:00
parent 81c327198f
commit a17aa05f00
+15
@@ -0,0 +1,15 @@
Namespace: `SimpleOTP`
Assembly: `SimpleOTP.dll`
Represents method that will be called when new OTP code is generated.
```csharp
public delegate void OTPCodeUpdatedEventHandler(OTPCode code);
```
### Parameters
`code` [OTPCode](https://github.com/XFox111/SimpleOTP/wiki/OTPCode)
New OTP code instance.
### Remarks
For implementation examples please refer to [OTPFactory](https://github.com/XFox111/SimpleOTP/wiki/OTPFactory)