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

📄 paymentauthextensionattribute.cs

📁 《ASP.NET 2.0 XML 高级编程(第3版)》 《ASP.NET 2.0 XML 高级编程(第3版)》
💻 CS
字号:
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Services.Protocols;

[AttributeUsage(AttributeTargets.Method)]
public class PaymentAuthExtensionAttribute : SoapExtensionAttribute
{
	int _priority = 1;

	public override int Priority
	{
		get { return _priority; }
		set { _priority = value; }
	}

	public override Type ExtensionType
	{
		get { return typeof(PaymentAuthExtension); }
	}
}

⌨️ 快捷键说明

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