Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getConnectedShare (0.06 sec)

  1. src/main/java/jcifs/smb/SmbTreeHandleImpl.java

            return this.treeConnection.getTreeType();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbTreeHandle#getConnectedShare()
         */
        @Override
        public String getConnectedShare() {
            return this.treeConnection.getConnectedShare();
        }
    
        /**
         *
         * {@inheritDoc}
         *
         * @see jcifs.SmbTreeHandle#isSameTree(jcifs.SmbTreeHandle)
         */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

            }
        }
    
        /**
         *
         * Only call this method while holding a tree handle
         *
         * @return the share we are connected to
         */
        public String getConnectedShare() {
            try (SmbTreeImpl t = getTree()) {
                return t.getShare();
            }
        }
    
        /**
         *
         * Only call this method while holding a tree handle
         *
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (1)
Back to top