LogoutReasonCode.cs 188 B

12345678910
  1. namespace ISCSI
  2. {
  3. public enum LogoutReasonCode : byte
  4. {
  5. CloseTheSession = 0,
  6. CloseTheConnection = 1,
  7. RemoveTheConnectionForRecovery = 2,
  8. }
  9. }