diff --git a/src/pw3270-sharp/pw3270-sharp.cs b/src/pw3270-sharp/pw3270-sharp.cs
index fc55098..df7d9f9 100644
--- a/src/pw3270-sharp/pw3270-sharp.cs
+++ b/src/pw3270-sharp/pw3270-sharp.cs
@@ -432,6 +432,24 @@ namespace pw3270 {
}
}
+ ///
+ /// Set the "screen ready" delay
+ ///
+ ///
+ public int SetUnlockDelay(int ms) {
+ return tn3270_set_unlock_delay(hSession, ms);
+ }
+
+ ///
+ /// Set the "screen ready" delay
+ ///
+ ///
+ public int UnlockDelay {
+ set {
+ tn3270_set_unlock_delay(hSession, value);
+ }
+ }
+
///
/// Send "Enter" key
--
libgit2 0.21.2