DataStoreAuthenticationType

@objc
public enum DataStoreAuthenticationType : Int

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

  • The authentication type NTLM.

    Declaration

    Swift

    case ntlm
  • msn

    The authentication type MSN.

    Declaration

    Swift

    case msn
  • dpa

    The authentication type DPA.

    Declaration

    Swift

    case dpa
  • rpa

    The authentication type RPA.

    Declaration

    Swift

    case rpa
  • The authentication type HTTPBasic.

    Declaration

    Swift

    case httpBasic
  • The authentication type HTTPDigest.

    Declaration

    Swift

    case httpDigest
  • The authentication type HTMLForm.

    Declaration

    Swift

    case htmlForm
  • The authentication type Default.

    Declaration

    Swift

    case `default`
  • 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 }