paymentauthextensionattribute.cs
来自「《ASP.NET 2.0 XML 高级编程(第3版)》 《ASP.NET 2.」· CS 代码 · 共 23 行
CS
23 行
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 + =
减小字号Ctrl + -
显示快捷键?