摘要:
进入 系统管理 找到 进入凭据管理 新增一个全局凭据,新增一个用户名密码凭据 用户名填入一个任意值,密码填入 github 的 personal access token 设置 personal access token 相关链接:https://blog.csdn.net/Eddie_8023/a 阅读全文
摘要:
在Java中有一段代码: ASP.NET 中的实现代码为: 来自:https://stackoverflow.com/questions/26353710/how-to-achieve-base64-url-safe-encoding-in-c 阅读全文
摘要:
因为安全需要,又没有申请HTTPS证书 只对密码进行了非对称加密 同时服务端验证了是否有证书 本文参考了: MSDN 13年6月的期刊(启用和自定义 ASP.NET Web API 服务的安全性 ):https://msdn.microsoft.com/zh-cn/magazine/dn201748 阅读全文
摘要:
public class stateobject{ public socket worksocket = null; public const int Buffer_Size=2048; public byte[] buffer= new byte[Buffer_size]; public stringbuilder sb = new stringbuilder();} 阅读全文
摘要:
public class stateobject{ public socket worksocket = null; public const int Buffer_Size=2048; public byte[] buffer= new byte[Buffer_size]; public stringbuilder sb = new stringbuilder();} 阅读全文
摘要:
base.OnAfterInstall(e.SavedState); ManagementObject wmiService = null; ManagementBaseObject InParam = null; try { wmiService = new ManagementObject(string.Format("Win32_Service.Name='{0}'", Constants.ServiceName)); InParam = wmiService.GetMethodParameters("Change"); InPar 阅读全文
摘要:
private void serviceInstaller1_AfterInstall(object sender, InstallEventArgs e) { ManagementBaseObject inPar = null; ManagementClass mc = new ManagementClass("Win32_Service"); foreach (ManagementObject mo in mc.GetInstances()) { if (mo["Name"].ToString() == "服务名") { inPa 阅读全文
摘要:
/************************************************************* 文档作者:dxj* 创建时间:2010.3.7* 文档说明:* 本文件是点缓冲区边界生成算法的C#实现。* ************************************************************/using System;using System.Collections.Generic;using System.Text;using DXJ.Teresa.GIS.GeoObject;namespace DXJ.Teresa.GIS.B. 阅读全文
摘要:
/************************************************************************ 文档作者:dxj * 创建时间:2010.3.7 20:17* 文档说明:* 本文件是线缓冲区边界生成算法的C#实现。**********************************************************************/using System;using System.Collections.Generic;using System.Text;using DXJ.Teresa.GIS.GeoObject;. 阅读全文
摘要:
/// <summary> /// 常用的通用数学函数 /// </summary> public static class MathTool { /// <summary> /// 获取由两个点所形成的向量的象限角度 /// </summary> /// <param name="preCoord">第一个点的坐标</param> /// <param name="nextCoord">第二个点的坐标</param> /// <returns>& 阅读全文