mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 07:59:46 +08:00
17 lines
240 B
C#
17 lines
240 B
C#
![]() |
using CPF.Mac.ObjCRuntime;
|
||
|
using System;
|
||
|
|
||
|
namespace CPF.Mac.Foundation
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum NSDataReadingOptions : ulong
|
||
|
{
|
||
|
Mapped = 0x1,
|
||
|
Uncached = 0x2,
|
||
|
[Since(5, 0)]
|
||
|
Coordinated = 0x4,
|
||
|
[Since(5, 0)]
|
||
|
MappedAlways = 0x8
|
||
|
}
|
||
|
}
|