Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

> From [RFC 7235 sec 2.1](https://tools.ietf.org/html/rfc7235#section-2.1) #43

Open
rebtail opened this issue Nov 26, 2024 · 0 comments

Comments

@rebtail
Copy link

rebtail commented Nov 26, 2024

"using System;
using System.Diagnostics;
using System.ComponentModel;

namespace MyProcessSample
{
class MyProcess
{
void BindToRunningProcesses()
{
// Get the current process.
Process currentProcess = Process.GetCurrentProcess();

        // Get all processes running on the local computer.
        Process[] localAll = Process.GetProcesses();

        // Get all instances of Notepad running on the local computer.
        // This will return an empty array if notepad isn't running.
        Process[] localByName = Process.GetProcessesByName("notepad");

        // Get a process on the local computer, using the process id.
        // This will throw an exception if there is no such process.
        Process localById = Process.GetProcessById(1234);

        // Get processes running on a remote computer. Note that this
        // and all the following calls will timeout and throw an exception
       > ```3

20110908_001h

But accroding to doc:

The token68 syntax allows the 66 unreserved URI characters
   ([RFC3986]), plus a few others, so that it can hold a base64,
   base64url (URL and filename safe alphabet), base32, or base16 (hex)
   encoding, with or without padding, but excluding whitespace
   ([RFC4648]).

It can hold a base64 string, and a base64 string may have = padding.

Originally posted by @asiazhang in ktorio/ktor#1076 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant