LCFileUploadOption
Objective-C
NS_OPTIONS(NSUInteger, LCFileUploadOption) {
/// default option. Data or File will be persistent cached after successfully uploading.
/// Note: Remote URL not be cached after successfully uploading.
LCFileUploadOptionCachingData = 0,
/// Data or File will not be persistent cached after successfully uploading.
LCFileUploadOptionIgnoringCachingData = 1 << 0
}
Swift
struct LCFileUploadOption : OptionSet, @unchecked Sendable
Undocumented
-
default option. Data or File will be persistent cached after successfully uploading. Note: Remote URL not be cached after successfully uploading.
Declaration
Objective-C
LCFileUploadOptionCachingData = 0
-
Data or File will not be persistent cached after successfully uploading.
Declaration
Objective-C
LCFileUploadOptionIgnoringCachingData = 1 << 0
Swift
static var ignoringCachingData: LCFileUploadOption { get }