Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isContextHandleInvalidated (0.41 sec)

  1. src/main/java/jcifs/internal/witness/WitnessUnregisterMessage.java

         * A successful unregistration typically results in a zeroed context handle.
         *
         * @return true if the context handle has been invalidated
         */
        public boolean isContextHandleInvalidated() {
            if (contextHandle == null) {
                return true;
            }
    
            for (byte b : contextHandle) {
                if (b != 0) {
                    return false;
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top