DataStoreProtocolType

@objc
public enum DataStoreProtocolType : Int

Constants that provide information regarding protocol type of data store manager.

  • ftp

    The protocol type FTP.

    Declaration

    Swift

    case ftp
  • The protocol type FTPAccount.

    Declaration

    Swift

    case ftpAccount
  • The protocol type HTTP.

    Declaration

    Swift

    case http
  • irc

    The protocol type IRC.

    Declaration

    Swift

    case irc
  • The protocol type NNTP.

    Declaration

    Swift

    case nntp
  • The protocol type POP3.

    Declaration

    Swift

    case pop3
  • The protocol type SMTP.

    Declaration

    Swift

    case smtp
  • The protocol type SOCKS.

    Declaration

    Swift

    case socks
  • The protocol type IMAP.

    Declaration

    Swift

    case imap
  • The protocol type LDAP.

    Declaration

    Swift

    case ldap
  • The protocol type AppleTalk.

    Declaration

    Swift

    case appleTalk
  • afp

    The protocol type AFP.

    Declaration

    Swift

    case afp
  • The protocol type Telnet.

    Declaration

    Swift

    case telnet
  • ssh

    The protocol type SSH.

    Declaration

    Swift

    case ssh
  • The protocol type FTPS.

    Declaration

    Swift

    case ftps
  • The protocol type HTTPS.

    Declaration

    Swift

    case https
  • The protocol type HTTPProxy.

    Declaration

    Swift

    case httpProxy
  • The protocol type HTTPSProxy.

    Declaration

    Swift

    case httpsProxy
  • The protocol type FTPProxy.

    Declaration

    Swift

    case ftpProxy
  • smb

    The protocol type SMB.

    Declaration

    Swift

    case smb
  • The protocol type RTSP.

    Declaration

    Swift

    case rtsp
  • The protocol type RTSPProxy.

    Declaration

    Swift

    case rtspProxy
  • The protocol type DAAP.

    Declaration

    Swift

    case daap
  • The protocol type EPPC.

    Declaration

    Swift

    case eppc
  • ipp

    The protocol type IPP.

    Declaration

    Swift

    case ipp
  • The protocol type NNTPS.

    Declaration

    Swift

    case nntps
  • The protocol type LDAPS.

    Declaration

    Swift

    case ldaps
  • The protocol type TelnetS.

    Declaration

    Swift

    case telnetS
  • The protocol type IMAPS.

    Declaration

    Swift

    case imaps
  • The protocol type IRCS.

    Declaration

    Swift

    case ircs
  • The protocol type POP3S.

    Declaration

    Swift

    case pop3S
  • Creates a new instance with the specified raw value.

    If there is no value of the type that corresponds with the specified string value, this initializer returns nil.

    Declaration

    Swift

    public init?(rawValue: String)

    Parameters

    rawValue

    The raw value to use for the new instance.

  • The corresponding value of the raw type.

    Declaration

    Swift

    public var rawValue: String { get }
  • A textual representation of this instance.

    Declaration

    Swift

    public var description: String { get }
  • A textual representation of this instance, suitable for debugging.

    Declaration

    Swift

    public var debugDescription: String { get }