⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 obexstatuscode.cs

📁 蓝牙传输控件,用于蓝牙文件上传和下载。芯片只要选用crs
💻 CS
字号:
using System;

namespace bluetoothX
{
	[Flags()]
	public enum ObexStatusCode : byte
	{
		Final = 0x80,
		Continue = 0x10,
		OK = 0x20,
		Created = 0x21,
		Accepted = 0x22,
		NonAuthorativeInformation = 0x23,
		NoContent = 0x24,
		ResetContent = 0x25,
		PartialContent = 0x26,
		MultipleChoices = 0x30,
		MovedPermanently = 0x31,
		MovedTemporarily = 0x32,
		SeeOther = 0x33,
		NotModified = 0x34,
		UseProxy = 0x35,
		BadRequest = 0x40,
		Unauthorized = 0x41,
		PaymentRequired = 0x42,
		Forbidden = 0x43,
		NotFound = 0x44,
		MethodNotAllowed = 0x45,
		NotAcceptable = 0x46,
		ProxyAuthenticationRequired = 0x47,
		RequestTimeout = 0x48,
		Conflict = 0x49,
		Gone = 0x4A,
		LengthRequired = 0x4B,
		PreconditionFailed = 0x4C,
		RequestedEntityTooLarge = 0x4D,
		RequestedUrlTooLarge = 0x4E,
		UnsupportedMediaType = 0x4F,
		InternalServerError = 0x50,
		NotImplemented = 0x51,
		BadGateway = 0x52,
		ServiceUnavailable = 0x53,
		GatewayTimeout = 0x54,
		HttpVersionNotSupported = 0x55,
		DatabaseFull = 0x60,
		DatabaseLocked = 0x61,
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -