授权过滤器 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Http; using System.Web.Http.Controllers; u ...
分类:
Web程序 时间:
2020-07-20 10:40:40
阅读次数:
85
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; using WebApplicatio ...
分类:
Web程序 时间:
2020-07-20 10:40:20
阅读次数:
85
简述 这个可选区段用来定义除创建用户选择的应用程序目录外安装自动创建的另外目录结构 [Dirs]区段 Name : 必需的,目录位置 Attribs : 指定目录的其他属性; 这可以包含下面属性的一个或多个 readonly, hidden , system, notcontentindexed. ...
分类:
其他好文 时间:
2020-07-20 10:18:55
阅读次数:
77
sqlplus /nolog connect / as sysdba select * from v$flash_recovery_area_usage show parameter db_recover alter system set db_recovery_file_dest_size=50G ...
分类:
其他好文 时间:
2020-07-20 10:14:11
阅读次数:
88
NSIS 是“Nullsoft 脚本安装系统”(Nullsoft Scriptable Installation System)的缩写,它是一个免费的 Win32 安装、卸载系统,采用了简洁高效的脚本方式。它本来是一个由 Nullsoft 创建并用于作为 Winamp 及其插件发布的系统,但现已被上 ...
分类:
其他好文 时间:
2020-07-19 23:38:39
阅读次数:
86
You appear to be running a SWT application. On macOS you must specify the -XstartOnFirstThread option when running the jar to run SWT correctly: jar - ...
final:最终的 1.可以用来修饰:类、方法、变量 2.具体的: 2.1 final 用来修饰一个类:此类不能被其他类所继承。 * 比如:String类、System类、StringBuffer类 2.2 final 用来修饰方法:表明此方法不可以被重写 * 比如:Object类中getClass ...
分类:
其他好文 时间:
2020-07-19 23:35:05
阅读次数:
67
一、using指令 在文件顶部引用命名空间,如:using System; 二、using别名 为命名空间或类型定义别名,这种做法有个好处就是当同一个cs文件引用了两个不同的命名空间,但是两个命名空间都包括了一个相同名字的类型的时候,就会为此类型命名空间创建别名。 using System; usi ...
服务端 using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Sockets; using System.Text; using System.Thr ...
1,OSI协议、TCP/IP协议以及每层对应的协议 OSI模型,即开放式通信系统互联参考模型(Open System Interconnection) 1,OSI七层协议分别:物理层、数据链路层、网络层、传输层、会话层、表示层、应用层。 2,TCP/IP五层模型的协议:物理层、数据链路层、网络层、传 ...
分类:
其他好文 时间:
2020-07-19 16:11:52
阅读次数:
136