15 lines
301 B
C#
15 lines
301 B
C#
namespace CPF.Mac.Foundation
|
|
{
|
|
public enum NSNetServicesStatus : long
|
|
{
|
|
UnknownError = -72000L,
|
|
CollisionError = -72001L,
|
|
NotFoundError = -72002L,
|
|
ActivityInProgress = -72003L,
|
|
BadArgumentError = -72004L,
|
|
CancelledError = -72005L,
|
|
InvalidError = -72006L,
|
|
TimeoutError = -72007L
|
|
}
|
|
}
|