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
| { | |
| "cellConfigs": [ | |
| { "cellId": "12345", "pci": "ABCDE" }, | |
| { "cellId": "67890", "pci": "FGHIJ" }, | |
| { "cellId": "47108", "pci": "0" } | |
| ], | |
| "sendoutDelayMs": 600000 | |
| } |
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
| | Version | .NET Framework | Visual Studio | Important Features | | |
| | ------- | ----------------------- | ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | |
| | C# 1.0 | .NET Framework 1.0/1.1 | Visual Studio .NET 2002 | Basic features | | |
| | C# 2.0 | .NET Framework 2.0 | Visual Studio 2005 | Generics<br/>Partial types<br/>Anonymous methods<br/>It |
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
| public class CustomAuthenticationStateProvider : AuthenticationStateProvider | |
| { | |
| private ISessionStorageService _sessionStorageService; | |
| public MagiroAuthenticationStateProvider(ISessionStorageService sessionStorageService) | |
| { | |
| _sessionStorageService = sessionStorageService; | |
| } | |
| public override async Task<AuthenticationState> GetAuthenticationStateAsync() |
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
| # Filename init.sh used as entrypoint, put it in your .net core root # folder | |
| mkdir -p $HOME/.pki/nssdb | |
| certutil -d sql:$HOME/.pki/nssdb -N --empty-password | |
| pk12util -i Cert/empty-certificate.p12 -d sql:$HOME/.pki/nssdb -W 'YOURPASSWORD' | |
| Xvfb :99 -screen 0 640x480x8 -nolisten tcp & | |
| dotnet Selenium.Docker.Certificate.dll |
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
| public class ChromeDriverWrapper | |
| { | |
| public ChromeDriverWrapper() | |
| { | |
| var options = new ChromeOptions(); | |
| //options.AddArgument("--headless"); | |
| options.AddArgument("--disable-extensions"); | |
| options.AddArgument("--disable-gpu"); | |
| options.AddArgument("--no-sandbox"); |