This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace Microsoft.ClearScript.V8 | |
| { | |
| public void Main() | |
| { | |
| string scriptContent = "<script>var name = 'some code';</script>"; | |
| using var engine = new V8ScriptEngine(); | |
| engine.Execute(scriptContent); | |
| var name = engine.Script.name; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Web; | |
| using System.IO; | |
| using System.Text; | |
| using System.Data; | |
| using NPOI; | |
| using NPOI.HPSF; | |
| using NPOI.HSSF; | |
| using NPOI.HSSF.UserModel; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Newtonsoft.Json; | |
| using Newtonsoft.Json.Linq; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| public enum JwtHashAlgorithm | |
| { | |
| RS256, |