Methods of Class UnoUrl


UnoUrl
explicit UnoUrl(
const rtl::OUString & rUrl );

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO NO NO

Summary
Construct a UNO URL from a string representation.

Parameters
rUrl
        The string representation of a UNO URL.

        

UnoUrl
UnoUrl(
const UnoUrl & rOther );

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO NO NO


~UnoUrl
~UnoUrl();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO NO NO


operator=
UnoUrl & operator=(
const UnoUrl & rOther );

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO NO NO


getConnection
const UnoUrlDescriptor & getConnection();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO NO NO

Summary
Return the connection descriptor component of the URL.

Return
        A reference to the connection descriptor.  The reference is valid for
        the lifetime of this URL object.
     

getProtocol
const UnoUrlDescriptor & getProtocol();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO NO NO

Summary
Return the protocol descriptor component of the URL.

Return
        A reference to the protocol descriptor.  The reference is valid for the
        lifetime of this URL object.
     

getObjectName
const rtl::OUString & getObjectName();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO NO NO

Summary
Return the object-name component of the URL.

Return
        A reference to the (case sensitive) object-name.  The reference is valid
        for the lifetime of this URL object.
     

Top of Page