mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 23:13:33 +08:00
15 lines
282 B
C#
15 lines
282 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.Foundation
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum NSUrlBookmarkCreationOptions : ulong
|
||
|
{
|
||
|
PreferFileIDResolution = 0x100,
|
||
|
MinimalBookmark = 0x200,
|
||
|
SuitableForBookmarkFile = 0x400,
|
||
|
WithSecurityScope = 0x800,
|
||
|
SecurityScopeAllowOnlyReadAccess = 0x1000
|
||
|
}
|
||
|
}
|