上一页 1 ··· 56 57 58 59 60 61 62 63 64 ··· 86 下一页
摘要: wcf传递类和结构 一、使用 [Serializable] 特性 序列化 服务端 IService1.cs [ServiceContract] public interface IService1 { [OperationContract] Animal GetData(Animal value); 阅读全文
posted @ 2018-11-27 16:17 富坚老贼 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 一、契约重载 契约也可以生成重载, 像C#一样的重载方式服务端启动时会发生异常 [ServiceContract] public interface IService1 { [OperationContract] string GetData(int value); [OperationContra 阅读全文
posted @ 2018-11-27 15:34 富坚老贼 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 查看文件类型 blob tree commit tag git cat-file -t 013612 013612 是文件夹名+文件组成的前6位数 查看文件内容 git cat-file -p 013612 查看文件大小 git cat-file -s 013612 object对象哈希值的计算 文 阅读全文
posted @ 2018-11-27 15:24 富坚老贼 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 一、visual studion引用生成代理 引入服务端发布元数据的地址(并不是服务的地址) 用服务端是控制台程序 例子1 服务端的配置 <system.serviceModel> <services> <service name="WcfServiceLibrary6.Service1" beha 阅读全文
posted @ 2018-11-22 13:56 富坚老贼 阅读(215) 评论(0) 推荐(0) 编辑
摘要: wcf 托管方式有很多种,常见的托管方式,iis,was,控制台,winfrom等。 先创建一个wcf服务 IService1.cs using System.ServiceModel; namespace WcfServiceLibrary6 { [ServiceContract] public 阅读全文
posted @ 2018-11-12 10:46 富坚老贼 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 一、Type类 二、Assembly类 带参数 找到私有方法 静态方法 泛型方法 泛型类 泛型类与泛型方法 三、MethodInfo类 四、MemberInfo类 阅读全文
posted @ 2018-11-08 13:56 富坚老贼 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1. 不能执行语句,需要在mysql里设置,windows下是edit–>preferences–>SQL Editor 把右边的最后一行,“safe update”对用的那一行的选框按钮去掉。再重启一下软件 2 远程连接数据库 (1) (2) (3) (4) (5) 如果显示错误信息:host . 阅读全文
posted @ 2018-09-14 09:48 富坚老贼 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 将分支推送到远程存储库时遇到错误: rejected Updates were rejected because the remote contains work that you do not have locally 在仓库目录下执行 git pull origin master --allow 阅读全文
posted @ 2018-09-06 10:46 富坚老贼 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 1.nuget 所搜MySql.Data 2.appsettings.json 3. Startup.cs 添加一行 4. 新建model类 UsersModel.cs 5. 新建context类 UserContext 6. Controller 添加 Action 阅读全文
posted @ 2018-09-01 11:39 富坚老贼 阅读(136) 评论(0) 推荐(0) 编辑
摘要: HttpResponse 类用来封装来自 ASP.NET 操作的 HTTP 响应信息 https://msdn.microsoft.com/zh-cn/library/system.web.httpresponse(v=vs.110).aspx 1.Write (String) 给前端发送响应信息 阅读全文
posted @ 2018-08-21 14:20 富坚老贼 阅读(587) 评论(0) 推荐(0) 编辑
上一页 1 ··· 56 57 58 59 60 61 62 63 64 ··· 86 下一页