How can I access my trackpad in C#?

I'm pretty bored this weekend. I've decided to build a morse code application where I can use my trackpad to tap morse code in and have my app sound it out. I told you I was bored! :D Is there some defacto way to access a trackpad in C#? I mean using pressure graphs. Thanks! I am not familiar 100% with the idea of the trackpad, but I am assuming that the machine you are working

我如何在C#中访问我的触控板?

这周末我很无聊。 我决定建立一个莫尔斯电码应用程序,我可以使用我的触控板来挖掘莫尔斯电码,并让我的应用程序发出声音。 我告诉过你我很无聊! :d 有没有一些事实上的方式来访问C#中的触控板? 我的意思是使用压力图。 谢谢! 我对触控板的想法并不熟悉,但我假设你正在使用的机器是一台笔记本电脑,而你所指的是另一种称为“鼠标垫”的东西。 至少在窗口中可以做几件事情。 当你用手指点击时,你实际上将“点击

ASP.NET Core Web API Authentication

I'm struggling with how to set up authentication in my web service. The service is build with the ASP.NET Core web api. All my clients (WPF applications) should use the same credentials to call the web service operations. After some research, I came up with basic authentication - sending a username and password in the header of the HTTP request. But after hours of research, it seems to

ASP.NET核心Web API身份验证

我正在努力如何在我的Web服务中设置身份验证。 该服务是使用ASP.NET Core web api构建的。 我所有的客户端(WPF应用程序)都应该使用相同的凭据来调用Web服务操作。 经过一番研究,我想出了基本认证 - 在HTTP请求的头部发送用户名和密码。 但经过数小时的研究,在我看来,基本身份验证并不是ASP.NET Core中的方法。 我发现的大部分资源都是使用OAuth或其他中间件实现身份验证。 但是对于我的场景来说这似乎过大了,并且

Owin Bearer Token With Windows Authentication

Guys! I'm looking for a solution for this problem for a couple weeks. I have to develop a ASP.Net WebAPI solution that uses the Windows Authentication mode and generates a bearer token through Identity/Owin middleware. The idea of this solution is to communicate with an AngularJS application and authenticate like the most WebAPI does with Identity. When I try to make an example of the

拥有Windows身份验证的Owin持票人令牌

伙计们! 我正在为这个问题寻找解决方案几个星期。 我必须开发一个使用Windows身份验证模式的ASP.Net WebAPI解决方案,并通过Identity / Owin中间件生成不记名令牌。 这个解决方案的想法是与AngularJS应用程序进行通信并进行身份验证,就像大多数WebAPI使用Identity一样。 当我尝试创建FormBased身份验证的示例时,但使用Windows身份验证模式时,WebAPI可以识别控制器中的凭据,但不能识别承载令牌生成器中的凭据。 有

Simple JWT authentication in ASP.NET Core 1.0 Web API

I'm looking for the simplest way to setup a Web API server that uses JWTs for authentication in ASP.NET Core (aka ASP.NET 5). This project (blog post / github) does exactly what I'm looking for but it uses ASP.NET 4. I just want to be able to: setup a login route that can create a JWT token and return it in the header. I'm integrating this with an existing RESTful service that w

ASP.NET Core 1.0 Web API中的简单JWT身份验证

我正在寻找最简单的方法来设置一个Web API服务器,它使用JWT在ASP.NET Core(又名ASP.NET 5)中进行身份验证。 这个项目(博客文章/ github)正是我正在寻找的,但它使用ASP.NET 4。 我只是想能够: 设置一个登录路线,可以创建一个JWT令牌并将其返回到标题中。 我将这与现有的RESTful服务集成,它会告诉我用户名和密码是否有效。 在我看到的这个ASP.NET 4项目中,可以通过以下路线完成https://github.com/stewartm83/Jwt

Token Based Authentication in ASP.NET Core (refreshed)

I'm working with ASP.NET Core application. I'm trying to implement Token Based Authentication but can not figure out how to use new Security System. My scenario: A client requests a token. My server should authorize the user and return access_token which will be used by the client in following requests. Here are two great articles about implementing exactly what I need: Token Base

ASP.NET Core中基于令牌的身份验证(刷新)

我正在使用ASP.NET Core应用程序。 我试图实现基于令牌的身份验证,但无法弄清楚如何使用新的安全系统。 我的场景:客户端请求令牌。 我的服务器应授权用户并返回客户端在以下请求中使用的access_token。 这里有两篇关于实现我需要的精彩文章: 使用ASP.NET Web API 2,Owin和Identity的基于令牌的身份验证 使用JSON Web令牌 问题是 - 对我来说,如何在ASP.NET Core中做同样的事情并不明显。 我的问题是:如何配置

bearer token authentication with web api 1

I'm working on implementing token based authentication in ASP.NET WebAPI. Is it possible to implement bearer token authentication in WebAPI 1.2? update: The problem is all the examples i see is based on WebAPI 2 and OWIN. WebAPI 2 came up with a dedicated authenticate attribute, but i am looking for WebAPI 1.2 it only having authorize attribute. We need to override the onAuthorize meth

使用web api进行不记名令牌认证1

我正在ASP.NET WebAPI中实现基于令牌的身份验证。 是否可以在WebAPI 1.2中实施不记名令牌认证? 更新: 问题是我看到的所有例子都基于WebAPI 2和OWIN。 WebAPI 2提出了一个专用的身份验证属性,但我正在寻找WebAPI 1.2,它只具有授权属性。 我们需要重写onAuthorize方法并实现令牌验证逻辑。 但我不知道如何实施持票人令牌并设置该令牌的到期时间。 更多关于如果令牌过期如何生成新的令牌。 我需要在哪里存储生成的令

Simple proof that GUID is not unique

I'd like to prove that a GUID is not unique in a simple test program. I expected the following code to run for hours, but it's not working. How can I make it work? BigInteger begin = new BigInteger((long)0); BigInteger end = new BigInteger("340282366920938463463374607431768211456",10); //2^128 for(begin; begin<end; begin++) Console.WriteLine(System.Guid.NewGuid().ToString()); I&

简单证明GUID不是唯一的

我想证明一个简单的测试程序中GUID不是唯一的。 我期望下面的代码运行几个小时,但它不工作。 我怎样才能使它工作? BigInteger begin = new BigInteger((long)0); BigInteger end = new BigInteger("340282366920938463463374607431768211456",10); //2^128 for(begin; begin<end; begin++) Console.WriteLine(System.Guid.NewGuid().ToString()); 我正在使用C#。 凯,我提供了一个程序,将使用线程来做你想做的事

Securing Client Password on Client Machine

When using the ChannelFactory class or a Generated Proxy to access a WCF Service is it possible to secure the client password on the client machine? Note: I am not talking about securing the password while it is going over the wire. Rather I am asking if it is possible to secure the password on the client's machine so that someone could not use a tool to expose the password while the user

在客户端计算机上保护客户端密码

当使用ChannelFactory类或生成的代理访问WCF服务时,是否可以在客户端计算机上保护客户端密码? 注意:我不是在通过电话线来保护密码。 而是问我是否有可能在客户端机器上保护密码,以便在用户通过客户端应用程序登录时有人不能使用工具来公开密码。 我相信这是一个不可能实现的目标。 无论我如何从用户获取和保护密码 - 在ChannelFactory或Proxy对象上设置ClientCredentials时,密码都会暴露。 例如,在ChannelFactory

VSTO Outlook ItemSend with C#

I'm trying to add a string in the end of an Outlook email's body with VSTO private void ThisAddIn_Startup(object sender, System.EventArgs e) { this.Application.ItemSend += new Microsoft.Office.Interop.Outlook.ApplicationEvents_11_ItemSendEventHandler(Application_ItemSend); } void Application_ItemSend(object Item, ref bool Cancel) { if (Item is Outlook.Mai

VSTO Outlook ItemSend与C#

我试图在VSTO的Outlook电子邮件正文的末尾添加一个字符串 private void ThisAddIn_Startup(object sender, System.EventArgs e) { this.Application.ItemSend += new Microsoft.Office.Interop.Outlook.ApplicationEvents_11_ItemSendEventHandler(Application_ItemSend); } void Application_ItemSend(object Item, ref bool Cancel) { if (Item is Outlook.MailItem) {

How to determine whether a web application is currently running

I have a ASP.NET web application running under IIS 6, and another process that is responsible to monitor and report status. I'd like to sample the web application by the monitoring process in order to check its status by accessing a dedicated handler on the web application, BUT i don't want to "wake up" the web application in case it is not running. Is there an option to det

如何确定Web应用程序当前是否正在运行

我有一个在IIS 6下运行的ASP.NET Web应用程序,另一个负责监视和报告状态的进程。 我希望通过监视进程来对Web应用程序进行示例,以便通过访问Web应用程序上的专用处理程序来检查其状态,但是如果它未运行,我不想“唤醒”Web应用程序。 是否有一个选项来确定特定的Web应用程序当前是否在运行? 如果有这样的选项,我将能够首先检查应用程序是否正在运行,然后才能访问处理程序以检查其状态。 谢谢。 今年早些时候我必须为